agent-launcher-orchest…
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
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 event-driven curl trigger, or confirmed on-demand use, then finalize the versioned roadmap. Use when the user says "run it every
$ npx -y skills add alirezarezvani/claude-skills --skill run-without-you --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/run-without-youContext preview
The summary Claude sees to decide when to auto-load this skill.
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 event-driven curl trigger, or confirmed on-demand use, then finalize the versioned roadmap. Use when the user says "run it every
name: run-without-you description: 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 event-driven curl trigger, or confirmed on-demand use, then finalize the versioned roadmap. Use when the user says "run it every morning", "put it on a schedule", "nightly", "weekly", "automate this", "make it recurring", or when the orchestrator routes phase=run-without-you. deployment_builder.py builds the POST /v1/deployments payload (initial_events must include user.message; optionally nests a user.define_outcome so each firing self-grades); cron_validator.py validates the 5-field cron + IANA timezone and prints the wall-clock DST note; next_directions_writer.py writes NEXT-DIRECTIONS.md. No tool makes API calls — the deployment is created via BYOK curl. Distinct from grade-iterate (the in-session loop) and wrap-up (closeout). version: 2.11.2 author: Alireza Rezvani license: MIT tags: [cma, deployment, cron, schedule, recurring, run-without-you, next-directions, dst] compatible_tools: [claude-code, codex-cli, cursor, antigravity, opencode, gemini-cli]
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).
| 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` |
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. 2. **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. 3. **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. 4. **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-agent5. **Advance + hand to wrap-up.** `goal_state.py set --phase wrap-up`, then invoke the `wrap-up` skill.
can, `read_only` untrusted memory, `max_iterations` per firing, workspace spend limit. There is no spend cap inside CMA.
1. "Cadence, event, or on-request?" *Recommend:* on-request v0 → cadence once graded. *Cite:* loops-and-workflows.md. 2. "Should each firing self-grade?" *Recommend:* yes — nest the outcome. *Cite:* loops-and-workflows.md (nesting rule). 3. "Which timezone, and is the time DST-safe?" *Recommend:* avoid 02:00–03:00 in DST zones. *Cite:* cma-primitives.md (wall-clock DST). 4. "Did you fire one manual run first?" *Recommend:* always. *Cite:* this SKILL.
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Phase 3 of building a Claude Managed Agent — the bounded grade→iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader),…
Phase 1 of building a Claude Managed Agent — interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table +…
Phase 2 of building a Claude Managed Agent — turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch…
Close out a launched Claude Managed Agent — recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2…
Router/index for the 4 business & growth skills bundled in this plugin: customer-success-manager (health scoring, churn risk, expansion), sales-engineer (RFP…