From thruthesky-skills
Structured spec-driven development workflow for projects that use a `.dev/` workspace. Use when the user wants to document existing code as reusable reference material, list `.dev` work items, write an implementation plan into `.dev/<name>/plan.md`, implement code strictly from that plan, create a refactor plan, or run an adversarial review that updates `.dev/<name>/plan.md`. Keywords: .dev folder, dev workflow, copy existing code, plan feature, execute plan, refactor analysis, adversarial review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/thruthesky-skills:devThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill ports the existing `dev` workflow to Codex.
This skill ports the existing dev workflow to Codex.
Use it when the project follows a .dev/-based process:
copy: analyze an existing codebase, module, file, URL, or concept and write reusable reference docs into .dev/<name>/list: inspect the .dev/ workspace and summarize document statusplan: write a detailed implementation spec into .dev/<name>/plan.mdexecute: implement code from .dev/<name>/plan.mdrefactor: analyze current code and write a refactor planreview: perform an adversarial review and feed critical findings back into .dev/<name>/plan.mdBefore using any workflow, check whether .dev/DEV.md exists.
.dev/DEV.md as project-specific instructions that override the default workflow guidance.Read only the command doc that matches the user request:
commands/copy.md.dev status: commands/list.mdcommands/plan.mdcommands/execute.mdcommands/refactor.mdcommands/review.mdThe workflow centers on a .dev/ directory that stores reusable references, plans, progress tracking, and reviews. Prefer this skill when the user wants work to be traceable and spec-driven instead of ad hoc.
Common artifact layout:
.dev/
├── DEV.md
├── <feature-a>/
│ ├── README.md
│ ├── plan.md
│ ├── progress.md
│ ├── review.md
│ └── refactor-plan.md
└── <feature-b>/
SKILL.md high-level and use the command docs for the exact workflow.dev semantics as much as possible when translating requests./dev:copy, /dev:plan, /dev:execute, /dev:list, /dev:refactor, or /dev:review, treat that as an explicit request to load the corresponding command doc.copy, plan, refactor, and review should write structured files under .dev/<name>/.execute should implement code and update .dev/<name>/progress.md when the command guidance calls for it.review should not stop at critique; it should update the plan when the workflow requires that.npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin thruthesky-skillsGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.