.claude/skills/update-readme/SKILL.md
Update README with current project status and features. Use after completing features.
npx skillsauth add lucidlabs-hq/agent-kit update-readmeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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
development
Deploy invoice-accounting-assistant to HQ server. Runs tests first (TDD), then builds and deploys. Use when ready to push changes to staging/production.
testing
Visual UI verification with agent-browser. Use after implementing UI components to take screenshots, verify interactions, and self-check your work. FASTER than E2E tests.
tools
--- name: time-report description: Cross-project time report. Aggregates all session data from ~/.claude-time/sessions/. Use to see how much time was spent across all projects. disable-model-invocation: true allowed-tools: Bash, Read argument-hint: [all | this-week | this-month | last-month | {project-name}] --- # Time Report: Cross-Project Session Overview ## Objective Read ALL session files from `~/.claude-time/sessions/*.json` and produce an aggregated time report. Supports filtering by pe
testing
Run tests with coverage report and gap analysis. MANDATORY before /commit and PR creation. Use after implementation or during validation.