Wrap-up — close it out
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.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/wrap-up, including the files SKILL.md points to. - Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/agent-launcher/skills/wrap-up#main ~/.claude/skills/wrap-upFor one project only, change the path to .claude/skills/wrap-up. This skill also uses primitives_inventory.py, overview_page.py, upgrade_suggester.py, NEXT-DIRECTIONS.md, goal_state.py — copying SKILL.md alone won't be enough. See the folder on GitHub.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of Wrap-up — close it out
Show the full text64 lines
| name | description | version | author | license | tags | compatible_tools |
|---|---|---|---|---|---|---|
| wrap-up | 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. | 2.11.2 | Alireza Rezvani | MIT | [cma, wrap-up, closeout, inventory, overview, upgrades, next-directions] | [claude-code, codex-cli, cursor, antigravity, opencode, gemini-cli] |
Wrap-up — close it out
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.
Workflow
- Inventory what they own.
Tables agent / environment / session / memory / outcome / deployment and the phases completed.python3 scripts/primitives_inventory.py \ --sheet ./my-agent/build-sheet.json --goal ./my-agent/goal.json - Regenerate the overview page.
Self-containedpython3 scripts/overview_page.py \ --sheet ./my-agent/build-sheet.json --out-dir ./my-agent \ --status live --loop-shape cron-loop --last-verdict satisfiedagent-overview.html(inline CSS, theme-aware, no external assets) — shareable as-is. - Suggest the next moves.
Ranks recorded deferrals (v1 before v2, real-integration first) plus standing hardening (tighten networking, pin the agent version, nest an outcome).python3 scripts/upgrade_suggester.py --sheet ./my-agent/build-sheet.json --top 2 - Finalize. Ensure
NEXT-DIRECTIONS.mdis current (Phase-4 tool), thengoal_state.py advance→phase=done.
Hard rules
- Recap what's actually live — read it from the sheet + goal state, never assert primitives that weren't created.
- The overview is single-file — no external assets, so it shares cleanly.
- Every next move names the exact mechanism.
Forcing-question library (recommend + cite)
- "Confirm what's live vs still a plan?" Recommend: inventory from the sheet. Cite: this SKILL.
- "Which single upgrade has the highest payoff?" Recommend: the top-ranked v1 deferral. Cite: upgrade_suggester ranking.
- "Is the overview page current?" Recommend: regenerate after any change. Cite: this SKILL.
Tools
scripts/primitives_inventory.py— recap every owned primitive.scripts/overview_page.py— regenerate single-file agent-overview.html.scripts/upgrade_suggester.py— next 1–2 upgrades with mechanisms.
| 1 | |
| 2 | name wrap-up |
| 3 | 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. |
| 4 | version 2.11.2 |
| 5 | author Alireza Rezvani |
| 6 | license MIT |
| 7 | tags [cma, wrap-up, closeout, inventory, overview, upgrades, next-directions] |
| 8 | compatible_tools [claude-code, codex-cli, cursor, antigravity, opencode, gemini-cli] |
| 9 | |
| 10 | |
| 11 | # Wrap-up — close it out |
| 12 | |
| 13 | The explicit close-out. Confirm what's live, regenerate the shareable overview, |
| 14 | and name the next 1–2 upgrades so the founder leaves with a clear roadmap. The |
| 15 | `./my-agent/` folder keeps working after the session ends. |
| 16 | |
| 17 | ## Workflow |
| 18 | |
| 19 | **Inventory what they own.** |
| 20 | |
| 21 | python3 scripts/primitives_inventory.py \ |
| 22 | --sheet ./my-agent/build-sheet.json --goal ./my-agent/goal.json |
| 23 | |
| 24 | Tables agent / environment / session / memory / outcome / deployment and the |
| 25 | phases completed. |
| 26 | **Regenerate the overview page.** |
| 27 | |
| 28 | python3 scripts/overview_page.py \ |
| 29 | --sheet ./my-agent/build-sheet.json --out-dir ./my-agent \ |
| 30 | --status live --loop-shape cron-loop --last-verdict satisfied |
| 31 | |
| 32 | Self-contained `agent-overview.html` (inline CSS, theme-aware, no external |
| 33 | assets) — shareable as-is. |
| 34 | **Suggest the next moves.** |
| 35 | |
| 36 | python3 scripts/upgrade_suggester.py --sheet ./my-agent/build-sheet.json --top 2 |
| 37 | |
| 38 | Ranks recorded deferrals (v1 before v2, real-integration first) plus standing |
| 39 | hardening (tighten networking, pin the agent version, nest an outcome). |
| 40 | **Finalize.** Ensure `NEXT-DIRECTIONS.md` is current (Phase-4 tool), then |
| 41 | `goal_state.py advance` → `phase=done`. |
| 42 | |
| 43 | ## Hard rules |
| 44 | |
| 45 | **Recap what's actually live** — read it from the sheet + goal state, never |
| 46 | assert primitives that weren't created. |
| 47 | **The overview is single-file** — no external assets, so it shares cleanly. |
| 48 | **Every next move names the exact mechanism.** |
| 49 | |
| 50 | ## Forcing-question library (recommend + cite) |
| 51 | |
| 52 | "Confirm what's live vs still a plan?" *Recommend:* inventory from the sheet. |
| 53 | *Cite:* this SKILL. |
| 54 | "Which single upgrade has the highest payoff?" *Recommend:* the top-ranked v1 |
| 55 | deferral. *Cite:* upgrade_suggester ranking. |
| 56 | "Is the overview page current?" *Recommend:* regenerate after any change. |
| 57 | *Cite:* this SKILL. |
| 58 | |
| 59 | ## Tools |
| 60 | |
| 61 | `scripts/primitives_inventory.py` — recap every owned primitive. |
| 62 | `scripts/overview_page.py` — regenerate single-file agent-overview.html. |
| 63 | `scripts/upgrade_suggester.py` — next 1–2 upgrades with mechanisms. |
| 64 |
Discussion
Browse more free Claude skills.