ワンクリックで
update-readme
Update README with current project status and features. Use after completing features.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Update README with current project status and features. Use after completing features.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Cross-project audit and sync. Backs up, bootstraps, promotes, syncs, and verifies all downstream projects.
Structured pre-planning research. Explores codebase, asks clarifying questions, and produces a brainstorm output file for /plan-feature input.
Capture knowledge from development sessions. Debug patterns, architecture decisions, framework gotchas, and integration learnings compound over time.
Load project context and show current status. Use at the start of a session or when context is needed.
Run parallel code reviews using specialized agents (security, performance, simplicity, nextjs-react). Produces a structured report.
Initialize a new project from Agent Kit boilerplate. Use when creating a new downstream project.
| name | update-readme |
| description | Update README with current project status and features. Use after completing features. |
| disable-model-invocation | true |
| allowed-tools | Read, Write, Edit, Bash |
Update the README.md file to reflect the current state of the project.
Read these files to understand current project state:
# Project status
cat PROJECT-STATUS.md
# Current features and PRD
cat .claude/PRD.md 2>/dev/null || echo "No PRD found"
# Recent commits
git log -10 --oneline
# Current README
cat README.md
Compare current README with:
Ensure it matches the current project name and description from PRD.
Update to reflect implemented features:
## Features
- [x] Feature 1 - Brief description
- [x] Feature 2 - Brief description
- [ ] Feature 3 - Planned
Verify tech stack is accurate:
## Tech Stack
- **Frontend:** Next.js, React, TypeScript
- **Styling:** Tailwind CSS v4, shadcn/ui
- **Backend:** [if applicable]
- **Database:** [if applicable]
Ensure setup instructions are current:
## Getting Started
1. Clone the repository
2. Install dependencies: `cd frontend && pnpm install`
3. Copy environment variables: `cp frontend/.env.example frontend/.env.local`
4. Start development server: `cd frontend && pnpm run dev`
Update available skills:
## Available Skills (Claude Code)
| Skill | Description |
|-------|-------------|
| `/create-prd` | Create a new PRD interactively |
| `/plan-feature` | Plan feature implementation |
| `/execute` | Execute an implementation plan |
| `/validate` | Validate compliance with standards |
| `/commit` | Create formatted commit |
| `/prime` | Prime Claude with codebase understanding |
Add brief status if relevant:
## Status
**Current Phase:** [Phase from PROJECT-STATUS.md]
**Last Updated:** [Date]
See `PROJECT-STATUS.md` for detailed progress tracking.
Do NOT remove or overwrite:
After updating README, provide:
## README Updated
### Changes Made
- [List of sections updated]
### Sections Added
- [New sections if any]
### Current Status
- Features documented: X
- Tech stack updated: Yes/No
- Skills documented: X
### Verification
Run `cat README.md | head -50` to preview changes