원클릭으로
sequential-thinking-default
Use structured sequential thinking for multi-step debugging, architecture decisions, or ambiguous problem framing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use structured sequential thinking for multi-step debugging, architecture decisions, or ambiguous problem framing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use Beads (bd) with Dolt server backend for multi-repo task tracking.
Use GitHub CLI (gh) and SonarQube MCP tools to fetch PR details, review comments, threads, and quality gate status for the current branch before addressing code review feedback.
Inspect SonarQube quality gates, issues, and source using the SonarQube MCP tools.
Retrieve up-to-date third-party library docs via Context7 (resolve-library-id then query-docs) before implementing integrations.
Use Augment context engine codebase-retrieval for semantic code search and architecture understanding before editing or refactoring.
| name | sequential-thinking-default |
| description | Use structured sequential thinking for multi-step debugging, architecture decisions, or ambiguous problem framing. |
Use this skill when you need to:
See .kilocode/rules/general-workflow.md for the full protocol. Key rules:
process_thought call = one reasoning step, ≤4 sentencesstage field must match the thought's contentclear_history → think → generate_summary → export_sessiontags, axioms_used, or assumptions_challenged per thoughtgenerate_summary here.Minimum: 6 thoughts across ≥3 stages for non-trivial tasks.
For specialized reasoning, use a thinking-style contract:
| Style | Contract | When to Use |
|---|---|---|
| Abstract | abstract_thinking.md | Generate competing problem frames |
| Adversarial | adversarial_thinking.md | Falsify plans, enumerate failure modes |
| Systems | systems_thinking.md | Find feedback loops, bottlenecks, leverage |
| Concrete | concrete_thinking.md | Collapse ambiguity into executable steps |
| Epistemic | epistemic_thinking.md | Separate know/believe/guess, assign confidence |
Handoff format: thinking_handoff.md
For multi-style reasoning, orchestrators use thinking plan templates:
| Plan | Sequence | When to Use |
|---|---|---|
design-subsystem.md | Abstract → Systems → Adversarial → Concrete | Design new components |
debug-incident.md | Concrete → Research → Adversarial → Concrete | Debug production issues |
evaluate-dependency.md | Abstract → Systems → Adversarial → Concrete | Evaluate risky dependencies |
strategic-decision.md | Abstract → Epistemic → Adversarial → Concrete | Sprint planning, strategic choices |
process_thought — Record stage-based thoughts with metadatagenerate_summary — Retrieve session overview (mandatory before Conclusion)export_session — Save session for future reference (mandatory at session end)import_session — Load previous session to resume workclear_history — Clear thought history (mandatory at new session start)Do NOT dump all reasoning into one massive thought. Each thought = one discrete step.
See general-workflow.md for correct vs incorrect examples.