skills/smart-think/SKILL.md
Advanced multi-mode thinking system with Sequential Thinking MCP and Serena integration for complex problem solving
npx skillsauth add sc30gsw/claude-code-customes smart-thinkInstall 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.
Intelligent problem-solving with multiple thinking modes, budget control, and MCP integration for complex analysis and decision-making.
/smart-think "<problem_description>" [options]
| Option | Short | Description | Default |
|--------|-------|-------------|---------|
| --mode | -m | Thinking mode | think |
| --budget | -b | Token budget | Auto |
| --interactive | -i | Interactive refinement | false |
| --output | -o | Save to file | none |
| --serena | -s | Use Serena integration | false |
| --research | -r | Include research phase | false |
| --citations | -c | Include citations | false |
| --structured | | Structured output | false |
| --confidence | | Show confidence levels | false |
| --focus | -f | Focus area | none |
| Mode | Budget Range | Thoughts | Confidence | Best For |
|------|--------------|----------|------------|----------|
| think | 2,000-8,000 | 3-6 | 70-85% | Quick decisions |
| think-hard | 8,000-15,000 | 6-10 | 75-90% | Complex analysis |
| think-harder | 15,000-25,000 | 10-15 | 80-95% | Architecture decisions |
| ultrathink | 25,000-50,000 | 15-25 | 85-98% | Research, complex systems |
ALWAYS prioritize mcp__sequential-thinking__ as primary engine, with mcp__serena__ for codebase context:
mcp__sequential-thinking__sequentialthinking as primary thinking toolmcp__serena__get_symbols_overview for technical understandingmcp__serena__search_for_pattern for implementation insightsmcp__serena__read_memory / mcp__serena__write_memory for decision continuity# Default thinking mode
/smart-think "Should we use Redux or Zustand?"
# Deep analysis with codebase context
/smart-think "Database migration strategy" -m think-harder --serena
# Research-focused with citations
/smart-think "Technology selection" -m ultrathink --research --citations
# Quick decision with budget control
/smart-think "CSS framework choice" -b 5000 --focus=frontend
tools
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`. -