Know your code. Close your gaps. Ship with confidence.
Amp plugin port of insideout-ai/make-it-work (originally a Claude Code plugin).
| Component | Path | Purpose |
|---|---|---|
| Plugin | .amp/plugins/make-it-work.ts |
Command palette entries for both workflows |
| go-deep skill | skills/go-deep/SKILL.md |
Build a 3-tier documentation system for any codebase |
| close-the-gaps skill | skills/close-the-gaps/SKILL.md |
Ticket refinement with gap analysis and Gherkin output |
Copy the files into your project:
your-project/
├── .amp/plugins/make-it-work.ts
└── skills/
├── go-deep/SKILL.md
└── close-the-gaps/SKILL.md
# Plugin
Copy-Item ".amp\plugins\make-it-work.ts" "$HOME\.config\amp\plugins\" -Force
# Skills
Copy-Item -Recurse "skills\go-deep" "$HOME\.agents\skills\go-deep"
Copy-Item -Recurse "skills\close-the-gaps" "$HOME\.agents\skills\close-the-gaps"Then in Amp, open the command palette and run Plugins: Reload.
- Make It Work: Go Deep — starts the 3-tier documentation workflow
- Make It Work: Close the Gaps — prompts for a ticket ID, then runs the refinement session
In any Amp thread, ask the agent:
- "Load the skill go-deep and run the workflow"
- "Load the skill close-the-gaps for ticket PROJ-123"
| Aspect | Claude Code | Amp |
|---|---|---|
| Q&A mechanism | AskUserQuestion tool |
Direct conversation messages |
| Doc output paths | .claude/rules/, .claude/skills/ |
AGENTS.md files, .agents/skills/ |
| Parallel tasks | Task tool (subagent_type) |
Task tool (subagents) |
| Plugin format | plugin.json + marketplace.json |
TypeScript plugin (.amp/plugins/) |
| Invocation | /make-it-work:go-deep |
Command palette or skill loading |
This project is a port of make-it-work by insideout-ai — the original creators of both the concept and the skill workflows. Their Claude Code plugin introduced the idea of a structured 3-tier documentation system and a gap-analysis-driven ticket refinement process. This Amp edition adapts their work to the Amp plugin ecosystem.
Licensed under MIT — see LICENSE for dual copyright notice.