Scaffold a new development phase with branch, test shells, and roadmap entry. Use when starting a new feature phase or sprint to set up the development environment consistently.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add NeverSight/skills_feed --skill phase-kickoff --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Phase Kickoff?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/neversight-phase-kickoff)More formats (shields.io, HTML) on the badges page.
---
name: phase-kickoff
description: "Scaffold a new development phase with branch, test shells, and roadmap entry. Use when starting a new feature phase or sprint to set up the development environment consistently."
---
# Phase Kickoff
Scaffold a new phase of development following a structured phase-based workflow.
## Steps
1. **Parse arguments**: Extract the phase number and goal from `$ARGUMENTS` (e.g., "3 - User Authentication").
2. **Update roadmap**: Append a new phase section to your roadmap document:
```markdown
---
## Phase {N}: {Title}
**Goal**: {One-sentence goal description}
- [ ] {N}.1 {First task}
- [ ] {N}.2 {Second task}
...
**Verify**: {How to confirm the phase is complete}
```
3. **Create feature branch** (if not already on one):
```
git checkout -b feature/phase{N}-{kebab-case-title}
```
4. **Create TDD test shell**: Create a test file with `describe` blocks matching the planned tasks:
```typescript
import { describe, it, expect } from "vitest";
describe("Phase {N}: {Title}", () => {
describe("{N}.1 - {First task}", () => {
it.todo("should ...");
});
});
```
5. **Print summary**: Show the phase number, branch name, test file location, and task count.
## Arguments
- `$ARGUMENTS`: Phase number and title (e.g., "3 - User Authentication" or "4 Real-time Notifications")
## Context
This skill enforces a structured development model:
- Each phase has a clear goal, numbered tasks, and verification criteria
- Quality gates: lint, typecheck, tests per commit
- Test counts are tracked after phase completion
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!