Wrap-up — close it out
Wrap-up is the explicit close-out step for a launched Claude Managed Agent. It inventories every primitive the founder now owns (agent, environment, session, memory, outcome, deployment), regenerates a self-contained single-file overview page (agent-overview.html), and suggests the next 1–2 upgrades so the founder leaves with a clear roadmap.
✨ What it does
- Runs primitives_inventory.py to table all owned primitives and completed phases.
- Regenerates a single-file agent-overview.html with inline CSS and no external assets.
- Runs upgrade_suggester.py to rank the next 1–2 upgrades from recorded deferrals and standing hardening steps.
- Enforces that recaps reflect only what is actually live, read from the build sheet and goal state.
- Finalizes by advancing goal_state to phase=done after ensuring NEXT-DIRECTIONS.md is current.
🎯 When to use it
- When the user says 'wrap up', 'close this out', 'what do I own now', 'give me the summary', or 'recap the agent'.
- When the orchestrator routes to phase=wrap-up after a managed agent has been launched.
- When you need to produce a shareable overview of the agent and its state before moving to phase=done.
🚀 How to use
Trigger by saying 'wrap up', 'close this out', 'what do I own now', 'give me the summary', or 'recap the agent', or when the orchestrator routes phase=wrap-up. The skill expects the ./my-agent/build-sheet.json and ./my-agent/goal.json files to exist. It runs three scripts in sequence: inventory, overview regeneration, and upgrade suggestion. Example prompts:
Wrap up the agent and give me the summary.
Close this out — what do I own now and what should I do next?
📄 Output: A recap of owned primitives, a regenerated single-file agent-overview.html, and a list of the next 1–2 upgrades with mechanisms.
📦 Add this skill to Claude Code
# 1. Get the skills repo
git clone --depth 1 https://github.com/alirezarezvani/claude-skills /tmp/claude-skills
# 2. Copy this skill into your project (or ~/.claude/skills for all projects)
mkdir -p .claude/skills
cp -r /tmp/claude-skills/agent-launcher/skills/wrap-up .claude/skills/wrap-upSkill source: agent-launcher/skills/wrap-up/SKILL.md
⚠️ Good to know
Requires the build sheet and goal state files to be present and accurate; it cannot recap primitives that were never created.
❓ FAQ
What does the overview page include?
The overview page is a self-contained agent-overview.html with inline CSS and no external assets, so it can be shared as-is.
How are next upgrades chosen?
The upgrade_suggester.py script ranks recorded deferrals (v1 before v2, real-integration first) plus standing hardening steps like tightening networking or pinning the agent version.
What happens at the end of the wrap-up?
After ensuring NEXT-DIRECTIONS.md is current, the skill advances goal_state to phase=done.
🤖 Overview, features, install steps and FAQ were generated from the project's SKILL.md on Sep 4, 2026. Always check the original source before running commands.