
Sequential Thinking
- 38 installs
- 16 repo stars
- Updated November 20, 2025
- jackspace/claudeskillz
This is a copy of sequential-thinking by mrgoonie - installs and ranking accrue to the original listing.
Helps with ai & agent building tasks.
About
sequential-thinking is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- sequential-thinking
- AI & Agent Building
- AI-coding skill
Sequential Thinking by the numbers
- 38 all-time installs (skills.sh)
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jackspace/claudeskillz --skill sequential-thinkingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 38 |
|---|---|
| repo stars | ★ 16 |
| Last updated | November 20, 2025 |
| Repository | jackspace/claudeskillz ↗ |
What it does
Helps with ai & agent building tasks.
Files
Sequential Thinking
Enables structured problem-solving through iterative reasoning with revision and branching capabilities.
Core Capabilities
- Iterative reasoning: Break complex problems into sequential thought steps
- Dynamic scope: Adjust total thought count as understanding evolves
- Revision tracking: Reconsider and modify previous conclusions
- Branch exploration: Explore alternative reasoning paths from any point
- Maintained context: Keep track of reasoning chain throughout analysis
When to Use
Use mcp__reasoning__sequentialthinking when:
- Problem requires multiple interconnected reasoning steps
- Initial scope or approach is uncertain
- Need to filter through complexity to find core issues
- May need to backtrack or revise earlier conclusions
- Want to explore alternative solution paths
Don't use for: Simple queries, direct facts, or single-step tasks.
Basic Usage
The MCP tool mcp__reasoning__sequentialthinking accepts these parameters:
Required Parameters
thought(string): Current reasoning stepnextThoughtNeeded(boolean): Whether more reasoning is neededthoughtNumber(integer): Current step number (starts at 1)totalThoughts(integer): Estimated total steps needed
Optional Parameters
isRevision(boolean): Indicates this revises previous thinkingrevisesThought(integer): Which thought number is being reconsideredbranchFromThought(integer): Thought number to branch frombranchId(string): Identifier for this reasoning branch
Workflow Pattern
1. Start with initial thought (thoughtNumber: 1)
2. For each step:
- Express current reasoning in `thought`
- Estimate remaining work via `totalThoughts` (adjust dynamically)
- Set `nextThoughtNeeded: true` to continue
3. When reaching conclusion, set `nextThoughtNeeded: false`Simple Example
// First thought
{
thought: "Problem involves optimizing database queries. Need to identify bottlenecks first.",
thoughtNumber: 1,
totalThoughts: 5,
nextThoughtNeeded: true
}
// Second thought
{
thought: "Analyzing query patterns reveals N+1 problem in user fetches.",
thoughtNumber: 2,
totalThoughts: 6, // Adjusted scope
nextThoughtNeeded: true
}
// ... continue until doneAdvanced Features
For revision patterns, branching strategies, and complex workflows, see:
- Advanced Usage - Revision and branching patterns
- Examples - Real-world use cases
Tips
- Start with rough estimate for
totalThoughts, refine as you progress - Use revision when assumptions prove incorrect
- Branch when multiple approaches seem viable
- Express uncertainty explicitly in thoughts
- Adjust scope freely - accuracy matters less than progress visibility
Sequential Thinking Skill
Agent skill for systematic problem-solving through iterative reasoning with revision and branching capabilities.
What This Skill Does
Enables Claude to break down complex problems into sequential thought steps, revise conclusions when needed, and explore alternative solution paths—all while maintaining context throughout the reasoning process.
Installation
This skill requires the Sequential Thinking MCP server to be installed and configured in your Claude Desktop or Claude Code environment.
Step 1: Install MCP Server
Choose one of the following methods:
NPX (Recommended)
Add to your claude_desktop_config.json or MCP settings:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
}
}
}Docker
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": ["run", "--rm", "-i", "mcp/sequentialthinking"]
}
}
}Step 2: Add Skill to Project
Copy this skill folder to your project's .claude/skills/ directory:
cp -r sequential-thinking /path/to/your/project/.claude/skills/Step 3: Verify Installation
Restart Claude and check that the mcp__reasoning__sequentialthinking tool is available.
Usage
Once installed, Claude will automatically use this skill when:
- Facing complex multi-step problems
- Needing to revise earlier conclusions
- Exploring alternative solution approaches
- Working through uncertain or evolving scopes
You can also explicitly request it:
"Let's think through this step-by-step using sequential thinking"Configuration
Disable Logging (Optional)
To suppress thought information logging, set environment variable:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],
"env": {
"DISABLE_THOUGHT_LOGGING": "true"
}
}
}
}Skill Structure
sequential-thinking/
├── SKILL.md # Main skill definition
├── README.md # This file
└── references/
├── advanced.md # Revision and branching patterns
└── examples.md # Real-world use casesWhen Claude Uses This Skill
The skill activates for:
- Complex analysis: Breaking down multi-faceted problems
- Design decisions: Exploring and comparing alternatives
- Debugging: Systematic investigation with course correction
- Planning: Multi-stage project planning with evolving scope
- Architecture: Evaluating trade-offs across approaches
Learn More
License
MIT
{
"description": "Use when complex problems require systematic step-by-step reasoning with ability to revise thoughts, branch into alternative approaches, or dynamically adjust scope. Ideal for multi-stage analysis, design planning, problem decomposition, or tasks with initially unclear scope.",
"metadata": {
"license": "MIT"
},
"references": {
"files": [
"references/advanced.md",
"references/examples.md"
]
},
"content": "Enables structured problem-solving through iterative reasoning with revision and branching capabilities.",
"name": "sequential-thinking",
"id": "sequential-thinking_mrgoonie",
"sections": {
"When to Use": "Use `mcp__reasoning__sequentialthinking` when:\r\n- Problem requires multiple interconnected reasoning steps\r\n- Initial scope or approach is uncertain\r\n- Need to filter through complexity to find core issues\r\n- May need to backtrack or revise earlier conclusions\r\n- Want to explore alternative solution paths\r\n\r\n**Don't use for**: Simple queries, direct facts, or single-step tasks.",
"Simple Example": "```typescript\r\n// First thought\r\n{\r\n thought: \"Problem involves optimizing database queries. Need to identify bottlenecks first.\",\r\n thoughtNumber: 1,\r\n totalThoughts: 5,\r\n nextThoughtNeeded: true\r\n}\r\n\r\n// Second thought\r\n{\r\n thought: \"Analyzing query patterns reveals N+1 problem in user fetches.\",\r\n thoughtNumber: 2,\r\n totalThoughts: 6, // Adjusted scope\r\n nextThoughtNeeded: true\r\n}\r\n\r\n// ... continue until done\r\n```",
"Workflow Pattern": "```\r\n1. Start with initial thought (thoughtNumber: 1)\r\n2. For each step:\r\n - Express current reasoning in `thought`\r\n - Estimate remaining work via `totalThoughts` (adjust dynamically)\r\n - Set `nextThoughtNeeded: true` to continue\r\n3. When reaching conclusion, set `nextThoughtNeeded: false`\r\n```",
"Basic Usage": "The MCP tool `mcp__reasoning__sequentialthinking` accepts these parameters:\r\n\r\n### Required Parameters\r\n\r\n- `thought` (string): Current reasoning step\r\n- `nextThoughtNeeded` (boolean): Whether more reasoning is needed\r\n- `thoughtNumber` (integer): Current step number (starts at 1)\r\n- `totalThoughts` (integer): Estimated total steps needed\r\n\r\n### Optional Parameters\r\n\r\n- `isRevision` (boolean): Indicates this revises previous thinking\r\n- `revisesThought` (integer): Which thought number is being reconsidered\r\n- `branchFromThought` (integer): Thought number to branch from\r\n- `branchId` (string): Identifier for this reasoning branch",
"Core Capabilities": "- **Iterative reasoning**: Break complex problems into sequential thought steps\r\n- **Dynamic scope**: Adjust total thought count as understanding evolves\r\n- **Revision tracking**: Reconsider and modify previous conclusions\r\n- **Branch exploration**: Explore alternative reasoning paths from any point\r\n- **Maintained context**: Keep track of reasoning chain throughout analysis",
"Advanced Features": "For revision patterns, branching strategies, and complex workflows, see:\r\n- [Advanced Usage](references/advanced.md) - Revision and branching patterns\r\n- [Examples](references/examples.md) - Real-world use cases",
"Tips": "- Start with rough estimate for `totalThoughts`, refine as you progress\r\n- Use revision when assumptions prove incorrect\r\n- Branch when multiple approaches seem viable\r\n- Express uncertainty explicitly in thoughts\r\n- Adjust scope freely - accuracy matters less than progress visibility"
}
}---
name: sequential-thinking
description: Use when complex problems require systematic step-by-step reasoning with ability to revise thoughts, branch into alternative approaches, or dynamically adjust scope. Ideal for multi-stage analysis, design planning, problem decomposition, or tasks with initially unclear scope.
license: MIT
---
# Sequential Thinking
Enables structured problem-solving through iterative reasoning with revision and branching capabilities.
## Core Capabilities
- **Iterative reasoning**: Break complex problems into sequential thought steps
- **Dynamic scope**: Adjust total thought count as understanding evolves
- **Revision tracking**: Reconsider and modify previous conclusions
- **Branch exploration**: Explore alternative reasoning paths from any point
- **Maintained context**: Keep track of reasoning chain throughout analysis
## When to Use
Use `mcp__reasoning__sequentialthinking` when:
- Problem requires multiple interconnected reasoning steps
- Initial scope or approach is uncertain
- Need to filter through complexity to find core issues
- May need to backtrack or revise earlier conclusions
- Want to explore alternative solution paths
**Don't use for**: Simple queries, direct facts, or single-step tasks.
## Basic Usage
The MCP tool `mcp__reasoning__sequentialthinking` accepts these parameters:
### Required Parameters
- `thought` (string): Current reasoning step
- `nextThoughtNeeded` (boolean): Whether more reasoning is needed
- `thoughtNumber` (integer): Current step number (starts at 1)
- `totalThoughts` (integer): Estimated total steps needed
### Optional Parameters
- `isRevision` (boolean): Indicates this revises previous thinking
- `revisesThought` (integer): Which thought number is being reconsidered
- `branchFromThought` (integer): Thought number to branch from
- `branchId` (string): Identifier for this reasoning branch
## Workflow Pattern
```
1. Start with initial thought (thoughtNumber: 1)
2. For each step:
- Express current reasoning in `thought`
- Estimate remaining work via `totalThoughts` (adjust dynamically)
- Set `nextThoughtNeeded: true` to continue
3. When reaching conclusion, set `nextThoughtNeeded: false`
```
## Simple Example
```typescript
// First thought
{
thought: "Problem involves optimizing database queries. Need to identify bottlenecks first.",
thoughtNumber: 1,
totalThoughts: 5,
nextThoughtNeeded: true
}
// Second thought
{
thought: "Analyzing query patterns reveals N+1 problem in user fetches.",
thoughtNumber: 2,
totalThoughts: 6, // Adjusted scope
nextThoughtNeeded: true
}
// ... continue until done
```
## Advanced Features
For revision patterns, branching strategies, and complex workflows, see:
- [Advanced Usage](references/advanced.md) - Revision and branching patterns
- [Examples](references/examples.md) - Real-world use cases
## Tips
- Start with rough estimate for `totalThoughts`, refine as you progress
- Use revision when assumptions prove incorrect
- Branch when multiple approaches seem viable
- Express uncertainty explicitly in thoughts
- Adjust scope freely - accuracy matters less than progress visibility