Wrap Skill banner
recomby-ai recomby-ai

Wrap Skill

Documentation community

Description

A Claude Code skill that consolidates scattered project markdown files into a single canonical CLAUDE.md, with a pinned PROGRESS block at the top.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

wrap

A **Claude Code plugin** (also installable manually in Codex / OpenCode / etc.) that consolidates every scattered descriptive markdown file in a project (`README.md`, `AGENTS.md`, `HANDOFF.md`, `docs/*`) into a single canonical `CLAUDE.md` and reconciles it against the current code.

After one run, the next session — yours, a teammate's, or a fresh agent's — has exactly one entry point.

Why

Working with AI coding agents tends to produce documentation sprawl: a `HANDOFF.md` from one session, an `AGENTS.md` from another, a half-stale `README.md`, a `docs/` folder with three-week-old design notes. Each session's "context dump" creates a new file, and over time the project loses its single source of truth.

`wrap` does the opposite. Each invocation:

  1. Reads every descriptive .md in the project
  2. Scans the actual code (entry points, scripts, routes, configs)
  3. Folds it all into one CLAUDE.md with a fixed structure
  4. Deletes the originals so there's nothing to drift back out of sync
  5. Pins a PROGRESS block at the top answering: where are we now, what's the next concrete action

Install

This repo is a **Claude Code plugin marketplace**. From inside Claude Code:

/plugin marketplace add recomby-ai/wrap-skill
/plugin install wrap@wrap-skill

That's it — no git clone, no manual file copying. To update later, run `/plugin marketplace update wrap-skill`.

Manual install (other agents / no plugin support)

If you're using an agent that supports `SKILL.md` but not Claude Code's plugin system, copy the file manually:

mkdir -p ~/.claude/skills/wrap && curl -fsSL https://raw.githubusercontent.com/recomby-ai/wrap-skill/main/plugins/wrap/skills/wrap/SKILL.md -o ~/.claude/skills/wrap/SKILL.md

Adjust the destination path for Codex / OpenCode / Cursor / Gemini CLI as needed.

Use

Just say one of these in any project:

  • wrap / wrap up / /wrap
  • tidy docs / sync docs / `update