بنقرة واحدة
local
Internal dynos-work skill. Manage the project daemon: start, stop, status, logs, run-once, dashboard.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Internal dynos-work skill. Manage the project daemon: start, stop, status, logs, run-once, dashboard.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Run checkpoint audit, repair any findings, then reach DONE — all in one shot. Use after /dynos-work:execute.
Execute the approved plan. Orchestrates execution graph segments through specialized executor agents, including dependency management and error recovery.
Internal: Data Executor. Implements ETL, analytics, backfills, data quality, reconciliation, and data pipeline changes. Write evidence on completion.
Internal: Infrastructure Executor. Implements deployment, CI/CD, container, IaC, and environment configuration changes. Write evidence on completion.
Internal: Observability Executor. Implements logs, metrics, traces, alerts, dashboards, and reliability instrumentation. Write evidence on completion.
Internal: Release Executor. Implements version/changelog updates, rollout flags, rollback plans, release notes, and migration sequencing. Write evidence on completion.
| name | local |
| description | Internal dynos-work skill. Manage the project daemon: start, stop, status, logs, run-once, dashboard. |
Manage the local project daemon.
/dynos-work:local start # start daemon
/dynos-work:local stop # stop daemon
/dynos-work:local status # show daemon status
/dynos-work:local logs # show cycle history
/dynos-work:local run-once # run single maintenance cycle
/dynos-work:local dashboard # generate per-project HTML dashboard
Parse the user's arguments to determine the subcommand. Run the corresponding Python command:
PYTHONPATH="${PLUGIN_HOOKS}:${PYTHONPATH:-}" python3 "${PLUGIN_HOOKS}/daemon.py" start --root .
PYTHONPATH="${PLUGIN_HOOKS}:${PYTHONPATH:-}" python3 "${PLUGIN_HOOKS}/daemon.py" stop --root .
PYTHONPATH="${PLUGIN_HOOKS}:${PYTHONPATH:-}" python3 "${PLUGIN_HOOKS}/daemon.py" status --root .
Print the JSON result in a human-readable format: running/stopped, last cycle time, cycle count.
PYTHONPATH="${PLUGIN_HOOKS}:${PYTHONPATH:-}" python3 "${PLUGIN_HOOKS}/daemon.py" logs --root .
PYTHONPATH="${PLUGIN_HOOKS}:${PYTHONPATH:-}" python3 "${PLUGIN_HOOKS}/daemon.py" run-once --root .
PYTHONPATH="${PLUGIN_HOOKS}:${PYTHONPATH:-}" python3 "${PLUGIN_HOOKS}/dashboard.py" generate --root .
Print the path to the generated HTML file. This is generate-only (no server). The global dashboard (/dynos-work:dashboard) is the web server for all projects.
If no subcommand is given, show the status.