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…
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 upgrades. Use when the user says "wrap up", "close this out", "what do I own now", "give me the summary", "recap the agent",
$ npx -y skills add alirezarezvani/claude-skills --skill wrap-up --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/wrap-upContext preview
The summary Claude sees to decide when to auto-load this skill.
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 upgrades. Use when the user says "wrap up", "close this out", "what do I own now", "give me the summary", "recap the agent",
name: wrap-up description: 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 upgrades. Use when the user says "wrap up", "close this out", "what do I own now", "give me the summary", "recap the agent", or when the orchestrator routes phase=wrap-up. primitives_inventory.py tables everything owned (agent, environment, session, memory, outcome, deployment); overview_page.py regenerates a self-contained ./my-agent/agent-overview.html; upgrade_suggester.py ranks the next moves from recorded deferrals plus standing hardening steps. Companion to run-without-you; the last stop before phase=done. version: 2.11.2 author: Alireza Rezvani license: MIT tags: [cma, wrap-up, closeout, inventory, overview, upgrades, next-directions] compatible_tools: [claude-code, codex-cli, cursor, antigravity, opencode, gemini-cli]
The explicit close-out. Confirm what's live, regenerate the shareable overview, and name the next 1–2 upgrades so the founder leaves with a clear roadmap. The `./my-agent/` folder keeps working after the session ends.
1. **Inventory what they own.**
python3 scripts/primitives_inventory.py \
--sheet ./my-agent/build-sheet.json --goal ./my-agent/goal.jsonTables agent / environment / session / memory / outcome / deployment and the phases completed. 2. **Regenerate the overview page.**
python3 scripts/overview_page.py \
--sheet ./my-agent/build-sheet.json --out-dir ./my-agent \
--status live --loop-shape cron-loop --last-verdict satisfiedSelf-contained `agent-overview.html` (inline CSS, theme-aware, no external assets) — shareable as-is. 3. **Suggest the next moves.**
python3 scripts/upgrade_suggester.py --sheet ./my-agent/build-sheet.json --top 2
Ranks recorded deferrals (v1 before v2, real-integration first) plus standing hardening (tighten networking, pin the agent version, nest an outcome). 4. **Finalize.** Ensure `NEXT-DIRECTIONS.md` is current (Phase-4 tool), then `goal_state.py advance` → `phase=done`.
assert primitives that weren't created.
1. "Confirm what's live vs still a plan?" *Recommend:* inventory from the sheet. *Cite:* this SKILL. 2. "Which single upgrade has the highest payoff?" *Recommend:* the top-ranked v1 deferral. *Cite:* upgrade_suggester ranking. 3. "Is the overview page current?" *Recommend:* regenerate after any change. *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 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…
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…
Router/index for the 4 business & growth skills bundled in this plugin: customer-success-manager (health scoring, churn risk, expansion), sales-engineer (RFP…