# Conflicts: # .gitignore # Dockerfile # agent/onboarding.py # apps/desktop/electron/main.ts # apps/desktop/electron/pool-stop.ts # apps/desktop/src/components/model-picker.test.tsx # apps/desktop/src/store/updates.ts # apps/desktop/vite.config.ts # datagen-config-examples/run_browser_tasks.sh # docs/rca-ssl-cacert-post-git-pull.md # gateway/run.py # hermes_cli/backup.py # hermes_cli/credential_lifecycle.py # hermes_cli/dashboard_procs.py # hermes_cli/doctor_state.py # hermes_cli/env_loader.py # hermes_cli/gateway_windows.py # hermes_cli/local_runtime/endpoint.py # hermes_cli/psutil_android.py # hermes_cli/update_cmd.py # hermes_cli/update_cmd_windows.py # hermes_cli/web_routers/local_models.py # hermes_cli/web_server_config.py # hermes_cli/web_server_cron.py # plugins/memory/hindsight/__init__.py # plugins/memory/holographic/__init__.py # plugins/memory/honcho/cli.py # plugins/memory/mem0/__init__.py # plugins/platforms/google_chat/oauth.py # plugins/platforms/photon/adapter.py # scripts/ci/list_os_marked_tests.py # scripts/run_tests.sh # tests/agent/test_compression_stall_fallback.py # tests/agent/test_create_openai_client_ssl_verify.py # tests/gateway/test_google_chat_oauth_dependencies.py # tests/hermes_cli/conftest.py # tests/hermes_cli/test_cli_init.py # tests/hermes_cli/test_gateway_migrate_multiplex.py # tests/hermes_cli/test_psutil_android_extract.py # tests/hermes_cli/test_relaunch.py # tests/hermes_cli/test_update_check.py # tests/hermes_cli/test_update_handoff_desktop_rebuild.py # tests/hermes_cli/test_worktree_gc.py # tests/scripts/desktop_update/test_desktop_update_windows_python_handoff.py # tests/scripts/desktop_update/test_desktop_update_windows_retry_policy.py # tests/scripts/desktop_update/test_desktop_update_windows_timestamp.py # tests/scripts/install/test_install_autostash_conflict_recovery.py # tests/scripts/install/test_install_clone_throttle_fallback.py # tests/scripts/install/test_install_commit_pin_rollback.py # tests/scripts/install/test_install_diverged_update.py # tests/scripts/install/test_install_lockfile_churn.py # tests/scripts/install/test_install_macos_launcher.py # tests/scripts/install/test_install_no_initial_commit.py # tests/scripts/install/test_install_ps1_ascii_only.py # tests/scripts/install/test_install_ps1_browser_install.py # tests/scripts/install/test_install_ps1_managed_node_swap.py # tests/scripts/install/test_install_ps1_native_stderr_eap.py # tests/scripts/install/test_install_ps1_node_path_for_npm.py # tests/scripts/install/test_install_ps1_python_fallback_venv.py # tests/scripts/install/test_install_ps1_resolver_strictmode.py # tests/scripts/install/test_install_ps1_uv_install_fallback.py # tests/scripts/install/test_install_ps1_uv_powershell_host.py # tests/scripts/install/test_install_ps1_venv_process_tree.py # tests/scripts/install/test_install_ps1_venv_recreate_safety.py # tests/scripts/install/test_install_ps1_venv_rename_abort.py # tests/scripts/install/test_install_ps1_venv_transaction_boundary.py # tests/scripts/install/test_install_ps1_web_server_syntax_probe.py # tests/scripts/install/test_install_scripts_computer_use.py # tests/scripts/install/test_install_sh_acp_launcher.py # tests/scripts/install/test_install_sh_bootstrap_marker.py # tests/scripts/install/test_install_sh_browser_install.py # tests/scripts/install/test_install_sh_install_method_stamp.py # tests/scripts/install/test_install_sh_node_deps_failure.py # tests/scripts/install/test_install_sh_node_deps_workspaces.py # tests/scripts/install/test_install_sh_node_global_prefix.py # tests/scripts/install/test_install_sh_node_npm_check.py # tests/scripts/install/test_install_sh_node_prerelease.py # tests/scripts/install/test_install_sh_node_probe.py # tests/scripts/install/test_install_sh_node_tarball_without_xz.py # tests/scripts/install/test_install_sh_pythonpath_sanitization.py # tests/scripts/install/test_install_sh_reuse_supported_python.py # tests/scripts/install/test_install_sh_root_fhs_uv_python_path.py # tests/scripts/install/test_install_sh_setup_wizard_tty_probe.py # tests/scripts/install/test_install_sh_symlink_stomp.py # tests/scripts/install/test_install_sh_termux_network_prereqs.py # tests/scripts/install/test_install_sh_termux_python_bounds.py # tests/scripts/install/test_install_sh_uv_lock_config.py # tests/scripts/install/test_install_unmerged_index.py # tests/scripts/test_run_tests_parallel.py # tests/test_managed_runtime_resolution.py # tests/test_project_metadata.py # tests/tools/test_browser_use_cli.py # tests/tools/test_tts_pythonpath_fallback.py # tests/tui_gateway/test_hosted_room_driver_runtime.py # tests/tui_gateway/test_tui_gateway_server.py # tools/lazy_deps.py # tools/voice_mode.py # uv.lock # website/docs/developer-guide/macos-bundle-updates.md # website/docs/developer-guide/pm-audit-status.md # website/docs/developer-guide/shared-bundle-builds.md # website/docs/developer-guide/source-update-completion.md # website/docs/developer-guide/stable-releases.md
203 lines
7.7 KiB
Python
203 lines
7.7 KiB
Python
"""Suggested cron jobs — proposed automations the user accepts with one tap.
|
|
|
|
A suggestion is a ready-to-run cron job spec the user accepts (creates the real job) or dismisses
|
|
(latched by ``dedup_key`` so it is never re-offered). Every proposal flows through here regardless
|
|
of source: ``catalog`` (curated starters), ``blueprint`` (skill ``blueprint:`` blocks, see
|
|
``tools/blueprints.py``), ``usage`` (self-improvement review), ``integration`` (connected account).
|
|
Accepting calls ``cron.jobs.create_job`` with the stored ``job_spec`` — no second job engine;
|
|
nothing auto-creates (consent-first). Storage mirrors ``cron/jobs.py`` (atomic replace, 0600).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import logging
|
|
import threading
|
|
import uuid
|
|
from pathlib import Path
|
|
from typing import Any, Dict, List, Optional
|
|
|
|
from hermes_constants import get_hermes_home
|
|
from hermes_time import now as _hermes_now
|
|
from utils import atomic_json_write
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Per-profile by design (anchored on get_hermes_home(), see cron/jobs.py). Optional test override;
|
|
# production resolves the path at CALL time so multiplexed profile ticks (set_hermes_home_override)
|
|
# cannot leak one profile's suggestions into the import-time home.
|
|
# Per-profile by design (issue #4707): suggestions live alongside the active profile's cron store. Anchor on
|
|
# get_hermes_home() (profile home), not the shared default root. Same pattern as cron/executions.py.
|
|
SUGGESTIONS_FILE: Optional[Path] = None
|
|
|
|
# Protects load->modify->save cycles (the background review fork and the main agent can both write).
|
|
_suggestions_lock = threading.Lock()
|
|
|
|
# Cap pending suggestions so the list never becomes a nag wall; when full, new ones are dropped.
|
|
MAX_PENDING = 5
|
|
|
|
VALID_SOURCES = frozenset({"catalog", "blueprint", "usage", "integration"})
|
|
_STATUS_PENDING = "pending"
|
|
_STATUS_ACCEPTED = "accepted"
|
|
_STATUS_DISMISSED = "dismissed"
|
|
|
|
|
|
def _current_suggestions_file() -> Path:
|
|
return SUGGESTIONS_FILE or (get_hermes_home().resolve() / "cron" / "suggestions.json")
|
|
|
|
|
|
def _ensure_dir() -> None:
|
|
from cron.jobs import _ensure_cron_dir
|
|
|
|
_ensure_cron_dir(_current_suggestions_file().parent)
|
|
|
|
|
|
def _load_raw() -> Dict[str, Any]:
|
|
suggestions_file = _current_suggestions_file()
|
|
if not suggestions_file.exists():
|
|
return {"suggestions": []}
|
|
try:
|
|
with open(suggestions_file, "r", encoding="utf-8-sig") as f:
|
|
data = json.load(f)
|
|
except (json.JSONDecodeError, OSError) as e:
|
|
logger.warning("suggestions.json unreadable (%s); starting empty", e)
|
|
return {"suggestions": []}
|
|
if isinstance(data, dict) and isinstance(data.get("suggestions"), list):
|
|
return data
|
|
if isinstance(data, list):
|
|
return {"suggestions": data}
|
|
logger.warning("suggestions.json malformed; starting empty")
|
|
return {"suggestions": []}
|
|
|
|
|
|
def _save_raw(suggestions: List[Dict[str, Any]]) -> None:
|
|
_ensure_dir()
|
|
payload = {"suggestions": suggestions, "updated_at": _hermes_now().isoformat()}
|
|
atomic_json_write(_current_suggestions_file(), payload, mode=0o600)
|
|
|
|
|
|
def load_suggestions() -> List[Dict[str, Any]]:
|
|
"""Return all suggestion records (any status)."""
|
|
return _load_raw().get("suggestions", [])
|
|
|
|
|
|
def _pending(suggestions: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
|
|
return [s for s in suggestions if s.get("status") == _STATUS_PENDING]
|
|
|
|
|
|
def list_pending() -> List[Dict[str, Any]]:
|
|
"""Return pending suggestions in creation order (oldest first)."""
|
|
return _pending(load_suggestions())
|
|
|
|
|
|
def add_suggestion(
|
|
*, title: str, description: str, source: str, job_spec: Dict[str, Any], dedup_key: str,
|
|
) -> Optional[Dict[str, Any]]:
|
|
"""Register a pending suggestion. Returns the record, or None when skipped: the same
|
|
``dedup_key`` was already decided on or is still pending (never re-offer, never duplicate), or
|
|
the pending list is full (``MAX_PENDING``). ``job_spec`` is passed straight to
|
|
``cron.jobs.create_job`` on accept."""
|
|
if source not in VALID_SOURCES:
|
|
raise ValueError(f"unknown suggestion source: {source!r}")
|
|
if not title.strip() or not dedup_key.strip():
|
|
raise ValueError("title and dedup_key are required")
|
|
|
|
with _suggestions_lock:
|
|
suggestions = _load_raw().get("suggestions", [])
|
|
if any(
|
|
existing.get("dedup_key") == dedup_key
|
|
and existing.get("status") in (_STATUS_DISMISSED, _STATUS_ACCEPTED, _STATUS_PENDING)
|
|
for existing in suggestions
|
|
):
|
|
return None
|
|
if len(_pending(suggestions)) >= MAX_PENDING:
|
|
logger.info("Suggestion backlog full (%d); dropping %r", MAX_PENDING, title)
|
|
return None
|
|
|
|
record = {
|
|
"id": uuid.uuid4().hex[:12],
|
|
"title": title.strip(),
|
|
"description": description.strip(),
|
|
"source": source,
|
|
"job_spec": job_spec,
|
|
"dedup_key": dedup_key.strip(),
|
|
"status": _STATUS_PENDING,
|
|
"created_at": _hermes_now().isoformat(),
|
|
}
|
|
suggestions.append(record)
|
|
_save_raw(suggestions)
|
|
return record
|
|
|
|
|
|
def get_suggestion(ref: str) -> Optional[Dict[str, Any]]:
|
|
"""Resolve a suggestion by id, 1-based pending index, or exact (case-insensitive) title."""
|
|
suggestions = load_suggestions()
|
|
for s in suggestions:
|
|
if s.get("id") == ref:
|
|
return s
|
|
if ref.isdigit():
|
|
pending = _pending(suggestions)
|
|
idx = int(ref) - 1
|
|
if 0 <= idx < len(pending):
|
|
return pending[idx]
|
|
for s in suggestions:
|
|
if s.get("title", "").lower() == ref.lower():
|
|
return s
|
|
return None
|
|
|
|
|
|
def _set_status(suggestion_id: str, status: str) -> bool:
|
|
with _suggestions_lock:
|
|
suggestions = _load_raw().get("suggestions", [])
|
|
for s in suggestions:
|
|
if s.get("id") == suggestion_id:
|
|
s["status"] = status
|
|
s["resolved_at"] = _hermes_now().isoformat()
|
|
_save_raw(suggestions)
|
|
return True
|
|
return False
|
|
|
|
|
|
def dismiss_suggestion(ref: str) -> bool:
|
|
"""Dismiss a suggestion (latched — never re-offered for its dedup_key)."""
|
|
s = get_suggestion(ref)
|
|
return bool(s) and _set_status(s["id"], _STATUS_DISMISSED)
|
|
|
|
|
|
def accept_suggestion(ref: str, *, origin: Optional[Dict[str, Any]] = None) -> Optional[Dict[str, Any]]:
|
|
"""Accept a suggestion: create the real cron job from its ``job_spec``. Returns the job dict, or
|
|
None if not found / not pending. ``origin`` (platform/chat) is merged so "origin" delivery
|
|
routes back to the chat where the user accepted."""
|
|
s = get_suggestion(ref)
|
|
if not s or s.get("status") != _STATUS_PENDING:
|
|
return None
|
|
|
|
from cron.scheduler import (
|
|
CronSchedulerRegistrationError, create_job_with_scheduler_registration,
|
|
)
|
|
|
|
spec = dict(s.get("job_spec") or {})
|
|
if origin is not None and "origin" not in spec:
|
|
spec["origin"] = origin
|
|
|
|
try:
|
|
job = create_job_with_scheduler_registration(**spec)
|
|
except CronSchedulerRegistrationError:
|
|
# The job is already durable: resolve the suggestion so a retry cannot create a second copy.
|
|
_set_status(s["id"], _STATUS_ACCEPTED)
|
|
raise
|
|
_set_status(s["id"], _STATUS_ACCEPTED)
|
|
return job
|
|
|
|
|
|
def clear_resolved() -> int:
|
|
"""Drop ACCEPTED records from disk (they served their purpose once the job exists); dismissed
|
|
records are RETAINED for their dedup_key. Returns the count removed."""
|
|
with _suggestions_lock:
|
|
suggestions = _load_raw().get("suggestions", [])
|
|
kept = [s for s in suggestions if s.get("status") != _STATUS_ACCEPTED]
|
|
removed = len(suggestions) - len(kept)
|
|
if removed:
|
|
_save_raw(kept)
|
|
return removed
|