skills/using-skills/SKILL.md
Check for relevant skills before starting any task
npx skillsauth add liauw-media/codeassist using-skillsInstall 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.
Before starting a task, check if any skills apply. Skills are documented best practices that help you work more effectively.
For each request:
.claude/skills/Skills represent tested approaches that:
brainstorming - Discuss approach before implementationwriting-plans - Break work into tasksexecuting-plans - Execute with verificationcode-review - Review before completingdatabase-backup - Backup before database operationsverification-before-completion - Final checks before declaring donetest-driven-development - Write tests firstcondition-based-waiting - Avoid flaky teststesting-anti-patterns - Common mistakes to avoidgit-workflow - Branching and commitsgit-worktrees - Parallel development| Task | Relevant Skills | |------|-----------------| | Starting a new feature | brainstorming → writing-plans | | Running tests/migrations | database-backup | | Adding functionality | test-driven-development | | Finishing work | code-review → verification-before-completion | | Multiple features | git-worktrees |
See .claude/skills/README.md for the complete list of available skills.
development
Use when decomposing complex work. Dispatch fresh subagent per task, review between tasks. Flow: Load plan → Dispatch task → Review output → Apply feedback → Mark complete → Next task. No skipping reviews, no parallel dispatch.
development
# Server Documentation System Set up a documentation system that tracks changes and maintains server/project documentation with Claude Code hooks. ## When to Use - Setting up a new server or development environment - Need to track configuration changes over time - Want automatic documentation of work sessions - Maintaining changelog for infrastructure ## Directory Structure ``` ~/docs/ # User home directory (cross-platform) ├── changelog.md # Global over
development
Delegate tasks to remote Claude Code agent containers for parallel execution, long-running analysis, or resource-intensive operations.
development
Use when working on multiple features simultaneously. Creates isolated workspaces without branch switching, enabling parallel development.