.cursor/skills/update-project-docs/SKILL.md
# Update project docs Use this skill after completing any feature, fix, or migration to keep the three core project tracking files in sync. Activate with: `@update` ## Step 1: Get real dates Run this first: ```bash git log --date=short -n 10 ``` Use actual commit dates. Never use placeholder dates or future months. ## Step 2: Update TASK.md Move completed items into `## Completed` with the date: ```markdown - [x] Feature name (YYYY-MM-DD) - [x] Sub-task detail - [x] Sub-task detail
npx skillsauth add waynesutton/humanagent .cursor/skills/update-project-docsInstall 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.
Use this skill after completing any feature, fix, or migration to keep the three core project tracking files in sync.
Activate with: @update
Run this first:
git log --date=short -n 10
Use actual commit dates. Never use placeholder dates or future months.
Move completed items into ## Completed with the date:
- [x] Feature name (YYYY-MM-DD)
- [x] Sub-task detail
- [x] Sub-task detail
Add a session update note at the top of ## Current Status:
Session updates complete on YYYY-MM-DD.
If new work is queued, add it under ## To Do.
Follow https://keepachangelog.com/en/1.0.0/ format. Add the new entry at the top under ## [Unreleased] or as a versioned release:
## [vX.Y.Z] - YYYY-MM-DD
### Added
- Feature name with key details
### Fixed
- Bug description and resolution
### Changed
- What changed and why
Version increment guide (check existing version in changelog.md first):
Only update if new files were added or if existing file descriptions are outdated.
Before calling this done, confirm:
git log --date=short run to get real datesTASK.md completed section updated with date and sub-itemschangelog.md new entry added with real version and datefiles.md updated if new files existREADME.md, CONTRIBUTING.md, or other documentation files unless explicitly requested.testing
Integrate and maintain Robelest Convex Auth in apps by always checking upstream before implementation. Use when adding auth setup, updating auth wiring, migrating between upstream patterns, or troubleshooting @robelest/convex-auth behavior across projects.
tools
# Create a PRD Use this skill before any multi-file feature, architectural decision, or complex bug fix. Activate with: `@prd` ## Location and naming - All PRDs live in `prds/` folder - File name: `prds/<feature-or-problem-slug>.md` - Extension is always `.md`, not `.prd` - Use kebab-case for the filename (e.g., `prds/adding-email-auth.md`) ## Template Copy and fill in this template: ```markdown # [Feature or problem name] ## Summary 1-2 sentence description of what this is and why it m
development
Integrate Convex static self hosting into existing apps using the latest upstream instructions from get-convex/self-hosting every time. Use when setting up upload APIs, HTTP routes, deployment scripts, migration from external hosting, or troubleshooting static deploy issues across React, Vite, Next.js, and other frontends.
development
Use when multiple workflows duplicate the same operational logic, when deciding what belongs in actions vs shared services, or when refactoring repeated operational blocks across domain flows. Use when adding new features that share mechanics with existing ones.