# Install the "wrap-up" skill
You are installing an AgenticMarket skill into this workspace. Follow these steps exactly.
## 1. Detect your environment and choose the destination file
- Andromity: `.andromity/skills/wrap-up/SKILL.md` (or user scope `~/.andromity/skills/wrap-up/SKILL.md`)
- Antigravity / Gemini CLI: `.agent/skills/wrap-up/SKILL.md`
- Cursor: `.cursor/rules/wrap-up.mdc`
- Claude Code: append to `CLAUDE.md` (or `.claude/skills/wrap-up.md`)
- Windsurf: append to `.windsurfrules`
- Cline / Roo Code: `.clinerules/wrap-up.md`
- GitHub Copilot: append to `.github/copilot-instructions.md`
- ChatGPT / web only: paste the content into Custom Instructions
- Any other agent: save to `.agent/skills/wrap-up/SKILL.md`
## 2. Create the destination file
- Preserve every existing file and configuration entry.
- Create parent folders as needed.
- Never overwrite unrelated content.
## 3. Write exactly this content
```markdown
---
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."
author: community
license: mit
version: 1.0.0
---
# 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
1. **Inventory what they own.**
```bash
python3 scripts/primitives_inventory.py \
--sheet ./my-agent/build-sheet.json --goal ./my-agent/goal.json
```
Tables agent / environment / session / memory / outcome / deployment and the
phases completed.
2. **Regenerate the overview page.**
```bash
python3 scripts/overview_page.py \
--sheet ./my-agent/build-sheet.json --out-dir ./my-agent \
--status live --loop-shape cron-loop --last-verdict satisfied
```
Self-contained `agent-overview.html` (inline CSS, theme-aware, no external
assets) — shareable as-is.
3. **Suggest the next moves.**
```bash
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`.
## 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)
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.
## 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.
```
## 4. Verify
- Confirm the file exists and is readable.
- Report the destination path and confirm the "wrap-up" skill is installed and active.
Skill metadata:
- Slug: wrap-up
- Category: devops
- License: mit
- Source: https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/agent-launcher/skills/wrap-up/SKILL.md