skills/serena/SKILL.md
Token-efficient Serena MCP command for structured app development and problem-solving
npx skillsauth add sc30gsw/claude-code-customes serenaInstall 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.
Token-efficient Serena MCP command for structured app development and problem-solving.
/serena <problem> [options] # Basic usage
/serena debug "memory leak in prod" # Debug pattern (5-8 thoughts)
/serena design "auth system" # Design pattern (8-12 thoughts)
/serena review "optimize this code" # Review pattern (4-7 thoughts)
/serena implement "add feature X" # Implementation (6-10 thoughts)
| Option | Description | Example |
|--------|-------------|---------|
| -q | Quick mode (3-5 thoughts) | /serena "fix button" -q |
| -d | Deep mode (10-15 thoughts) | /serena "architecture design" -d |
| -c | Code-focused analysis | /serena "optimize performance" -c |
| -s | Step-by-step implementation | /serena "build dashboard" -s |
| -v | Verbose output | /serena "debug issue" -v |
| -r | Include research phase | /serena "choose framework" -r |
| -t | Create implementation todos | /serena "new feature" -t |
ALWAYS prioritize mcp__serena__ tools as the primary development engine:
mcp__serena__get_symbols_overviewmcp__serena__search_for_patternmcp__serena__find_symbolmcp__serena__replace_symbol_bodymcp__serena__write_memorymcp__serena__read_memorymcp__serena__think_about_task_adherenceSerena MCP integrates with other commands:
| Command | Integration |
|---------|-------------|
| /commit | Git history + change analysis |
| /debug-error | Symbol tracking + pattern search |
| /smart-think | Codebase context + memory |
-q for simple problems (saves ~40% tokens)--focus to avoid irrelevant analysistools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
testing
# sdd-workflow — Workflow Status Dashboard ## Slash Command ``` /sdd-workflow [slug] ``` ## Purpose Read-only meta skill. Displays the current state of the SDD workflow — which phases are complete, which is next, and any blockers. Does NOT modify any files. --- ## This Skill is Read-Only `sdd-workflow` never writes to or modifies any file. It only reads spec files and git history to report status. There is no approval gate for this skill. --- ## Usage: Specific Feature ``` /sdd-workflo
content-media
# sdd-tasks **Slash command**: `/sdd-tasks <slug>` **Purpose**: Generate `tasks.md` (TASK-001..N) and `progress.md` from `requirements.md` and `design.md`. --- ## Prerequisites - `.claude/specs/<slug>/requirements.md` must exist - `.claude/specs/<slug>/design.md` must exist (run `/sdd-design` first) --- ## Steps ### 1. Read spec inputs ``` .claude/specs/<slug>/requirements.md .claude/specs/<slug>/design.md ``` Extract: - Every REQ-XXX ID with its acceptance criteria - Every design sect
development
# sdd-review — Post-Implementation Code Review ## Slash Command ``` /sdd-review <slug> ``` ## Purpose Run code review and security review on all changes introduced by the feature branch. Append structured findings to `review.md`. Does NOT auto-apply fixes — only proposes them. --- ## Prerequisites - `sdd-impl` has completed: all tasks in `progress.md` are `done` (or at least one is `done`; partial reviews are allowed). - The feature branch must have at least one commit ahead of `main`. -