https://github.com/danielstormapps/claude-code-skills
Claude Code skills for plan-driven development workflows with idea tracking, phased implementation, and automated merging
https://github.com/danielstormapps/claude-code-skills
automation claude-code cli productivity skills workflow
Last synced: 13 days ago
JSON representation
Claude Code skills for plan-driven development workflows with idea tracking, phased implementation, and automated merging
- Host: GitHub
- URL: https://github.com/danielstormapps/claude-code-skills
- Owner: DanielStormApps
- License: mit
- Created: 2026-01-28T15:55:51.000Z (20 days ago)
- Default Branch: main
- Last Pushed: 2026-01-28T16:12:47.000Z (20 days ago)
- Last Synced: 2026-02-03T11:11:14.076Z (14 days ago)
- Topics: automation, claude-code, cli, productivity, skills, workflow
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Claude Code Skills
A collection of reusable skills for [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
## Installation
Copy the `skills/` folder to your project's `.claude/` directory:
```bash
cp -r skills/ /path/to/your/project/.claude/skills/
```
Or copy individual skills as needed.
## Available Skills
| Skill | Description |
|-------|-------------|
| `/list-ideas` | List all ideas in the ideas folder |
| `/initial-prompt` | First prompt for exploration (no code editing) |
| `/write-plan` | Write a new plan in plans folder |
| `/review-plan` | Review plan against codebase |
| `/next-phase` | Reply with next phase steps |
| `/do-phase` | Implement a phase and commit |
| `/execute-full-plan` | Implement all phases in a plan |
| `/complete-plan-and-merge` | Move plan to completed, merge to develop, cleanup branch |
## Usage
After installation, invoke skills in Claude Code using the slash command syntax:
```
/list-ideas
/write-plan Add user authentication
/do-phase Phase 1
```
## Project Structure Assumptions
These skills assume a project workflow with:
- `ideas/` - Directory for idea markdown files
- `plans/` - Directory for implementation plans
- `plans/completed/` - Directory for completed plans
- `develop` - Main development branch
## License
This project is released under the MIT License. See the [LICENSE](https://github.com/DanielStormApps/claude-code-skills/blob/main/LICENSE) file for more information.