Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add peterkimpro/claude-code-powerpack --skill "scaffold"
Install specific skill from multi-skill repository
# Description
Scaffold a new module, feature, or component following existing project patterns. Invoke with a name and brief description.
# SKILL.md
name: scaffold
description: Scaffold a new module, feature, or component following existing project patterns. Invoke with a name and brief description.
disable-model-invocation: true
Scaffold: $ARGUMENTS
Steps:
-
Read 2-3 existing similar files in the codebase to understand the exact patterns used (naming, exports, imports, file structure).
-
Create the new file(s) following those patterns precisely — do not introduce new conventions.
-
If the project has an index/barrel file or a registry, add the new module there.
-
Create a corresponding test file following the test patterns in the codebase. Add at minimum:
- One test that verifies the module exists and exports correctly
-
One test for the primary happy path
-
Run the type checker and linter to confirm no errors:
bash # adjust commands to match this project's stack -
Report what was created and what still needs to be implemented (stub TODOs).
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.