Stats
Actions
Tags
From tdp
Archive the specs folder and SQL work-item folders for a completed bugfix or feature branch. Use when a branch is merged or the work is done and specs/<type>/<slug> and sql files/*-db/<slug> folders should be moved to their respective archives locations under specs/archives/ and sql files/archives/.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tdp:finish-devThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- A bugfix or feature branch has been merged or the work is complete.
specs/<type>/<slug>/ is moved to specs/archives/<type>/<slug>/.sql files/local-db/<slug>/, sql files/test-db/<slug>/, and sql files/main-db/<slug>/ folders are moved to their corresponding paths under sql files/archives/.| Source | Archive Destination |
|---|---|
specs/bugfix/<slug>/ | specs/archives/bugfix/<slug>/ |
specs/feature/<slug>/ | specs/archives/feature/<slug>/ |
sql files/local-db/<slug>/ | sql files/archives/local-db/<slug>/ |
sql files/test-db/<slug>/ | sql files/archives/test-db/<slug>/ |
sql files/main-db/<slug>/ | sql files/archives/main-db/<slug>/ |
bugfix/<slug> or feature/<slug> as the skill argument, use that.git branch --show-current.bugfix/ or feature/ branch, ask the user which branch to finish before continuing.<type> (bugfix or feature) and <slug> from the branch name.specs/<type>/<slug>/sql files/local-db/<slug>/sql files/test-db/<slug>/sql files/main-db/<slug>/specs/archives/<type>/<slug>/sql files/archives/local-db/<slug>/sql files/archives/test-db/<slug>/sql files/archives/main-db/<slug>/AskUserQuestion: list every path that will be moved and its destination, including any conflict warnings. Do not make any changes until the user confirms.mkdir as a separate step; do not chain with &&.
specs/archives/<type>/ if it does not existsql files/archives/<env>/ if it does not exist&&.
specs/<type>/<slug>/ to specs/archives/<type>/<slug>/ if the source exists.sql files/local-db/<slug>/ to sql files/archives/local-db/<slug>/ if the source exists.sql files/test-db/<slug>/ to sql files/archives/test-db/<slug>/ if the source exists.sql files/main-db/<slug>/ to sql files/archives/main-db/<slug>/ if the source exists.&&. Run each mkdir and each move as a separate command.specs/<type>/<slug>/ no longer exists at the original active path (or was not found).sql files/<env>/<slug>/ paths.archives/ paths.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub bryant-tang/turbo-plugins-claude --plugin tdp