From personal
This skill should be used when the user invokes "/personal:dev" with a subcommand. Subcommands: init (project + task setup), new (create task from description or GH issue), complete (finish a task), renumber (reorder task priorities), prime (load project context).
How this skill is triggered — by the user, by Claude, or both
Slash command
/personal:devThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Project development utilities for initialisation, task management, and context priming.
Project development utilities for initialisation, task management, and context priming.
Designed for any dev project. Tasks are tracked as markdown files: todo tasks in
docs/tasks-todo/task-NUMBER-name.md, completed tasks in
docs/tasks-done/YYYY-MM-DD-task-NUMBER-name.md. If this project has not been initialised
with this system yet, suggest the user runs /personal:dev init first.
$ARGUMENTS
Scripts in scripts/ are executable with shebangs. Execute them directly — never
prepend bash, sh, or any interpreter. For example: scripts/init-project.sh not
bash scripts/init-project.sh.
The first word of the user input above is the subcommand. Everything after it is context for that subcommand. If no argument was provided, list the available subcommands and ask the user which they want.
Initialise or update a project's AI boilerplate and task management structure.
Two phases:
scripts/init-project.shCreate a new task file in docs/tasks-todo/.
Read and follow references/new.md. The context for the new task is everything after "new" in the user input above.
Complete a task by moving it from docs/tasks-todo/ to docs/tasks-done/ with a date prefix.
The task identifier is the word immediately after "complete" in the user input.
Execute: scripts/complete-task.sh <task-identifier>
Report the result to the user.
Renumber prioritised tasks to start from 1 with no gaps.
Execute: scripts/renumber-tasks.sh
Report the result to the user.
Prime the current session with essential project context.
Read and follow references/prime.md. The context/focus area is everything after "prime" in the user input above (if anything).
npx claudepluginhub dannysmith/claude-marketplace --plugin personalGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.