跳到主要内容
知仓学习社ZHICANG

run-without-you

Phase 4 of building a Claude Managed Agent — make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an eve…

不碰外部(只输出文字)无严重或高危命中alirezarezvani/claude-skills

它会碰到什么

扫了多少5 个文本文件,20 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

Phase 4 — Run Without You (the recurring loop)

A scheduled deployment fires a fresh session on a cron cadence — the agent

runs without you. Each firing can carry its own outcome, nesting the bounded

grade→iterate loop inside every recurring run.

See [../../references/loops-and-workflows.md](../../references/loops-and-workflows.md).

Choose the trigger

| Answer | Shape | Tool |

|---|---|---|

| "every morning / weekly / nightly" | recurring cron deployment | deployment_builder.py + cron_validator.py |

| "when X happens" | event-driven curl (documented, not scheduled) | deployment_builder.py (message only) |

| "only when I ask" | on-demand (no deployment) | none — just re-send a user.message |

Workflow (recurring)

  1. Validate the schedule.
   python3 scripts/cron_validator.py --cron "0 9 * * *" --timezone Europe/Berlin

Invalid cron/timezone → exit 1. Read the DST note: wall-clock semantics mean

spring-forward times are skipped and fall-back times fire twice — avoid

02:00–03:00 in DST zones if exactly-once matters.

  1. Build the deployment payload.
   python3 scripts/deployment_builder.py \
     --sheet ./my-agent/build-sheet.json --agent-id agent_123 --env-id env_456 \
     --nest-outcome --out ./my-agent/payloads/deployment.json

--nest-outcome includes the rubric so each firing self-grades. The tool

prints the BYOK curl to create it and to test it once with the manual run

endpoint before trusting the schedule.

  1. Test before you trust. Fire one manual run, read the verdict, only then

leave the cron in place. Pin the agent version in the deployment once it passes.

  1. Finalize the roadmap.
   python3 scripts/next_directions_writer.py \
     --sheet ./my-agent/build-sheet.json --loop-shape cron-loop --last-verdict satisfied --out-dir ./my-agent
  1. Advance + hand to wrap-up. goal_state.py set --phase wrap-up, then invoke

the wrap-up skill.

Hard rules

  • Test with a manual run first. Never commit a schedule you haven't fired once.
  • Safety rails on by default. always_ask MCP, limited networking where you

can, read_only untrusted memory, max_iterations per firing, workspace spend

limit. There is no spend cap inside CMA.

  • DST is wall-clock. Surface the note; pick safe times.
  • ≤1,000 deployments/org.

Forcing-question library (recommend + cite)

  1. "Cadence, event, or on-request?" Recommend: on-request v0 → cadence once graded.

Cite: loops-and-workflows.md.

  1. "Should each firing self-grade?" Recommend: yes — nest the outcome. Cite:

loops-and-workflows.md (nesting rule).

  1. "Which timezone, and is the time DST-safe?" Recommend: avoid 02:00–03:00 in

DST zones. Cite: cma-primitives.md (wall-clock DST).

  1. "Did you fire one manual run first?" Recommend: always. Cite: this SKILL.

Tools

  • scripts/deployment_builder.py — POST /v1/deployments payload (+ test-run curl).
  • scripts/cron_validator.py — 5-field cron + IANA tz + DST note.
  • scripts/next_directions_writer.py — write/refresh NEXT-DIRECTIONS.md.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

它属于哪个仓库

星标★ 26,030
本站分层T1
该仓技能数846
原文件路径agent-launcher/skills/run-without-you/SKILL.md

同一个仓库里的其他技能

看这个仓库的全部 846 个技能

同名技能的其他版本

有 2 个不同仓库或目录里都有叫 run-without-you 的技能。它们内容并不相同,别混用: