From context-engine
Sequential thinking for structured problem decomposition. Use for complex planning, debugging, and architectural decisions where step-by-step reasoning with revision and branching helps.
npx claudepluginhub littlelingo/context-engine --plugin context-engineThis skill uses the workspace's default tool permissions.
Structured step-by-step reasoning with revision and branching support. Use this when a problem is too complex to solve in one pass - it breaks thinking into trackable steps where you can revise earlier conclusions as understanding deepens.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Share bugs, ideas, or general feedback.
Structured step-by-step reasoning with revision and branching support. Use this when a problem is too complex to solve in one pass - it breaks thinking into trackable steps where you can revise earlier conclusions as understanding deepens.
/planner): Decompose requirements into implementation steps/debug): Systematic hypothesis testing, revise when evidence contradictsmcp__sequential-thinking__sequentialthinking with initial thoughtthought, thoughtNumber, totalThoughts, nextThoughtNeededisRevision: true)branchFromThought, branchId)mcp__sequential-thinking__sequentialthinking({
thought: "Step 1: Analyze the current auth flow...",
nextThoughtNeeded: true,
thoughtNumber: 1,
totalThoughts: 5,
// Optional revision/branching:
isRevision: false,
revisesThought: null,
branchFromThought: null,
branchId: null
})
/planner: Use sequential thinking to decompose the feature, then write the PRP/debug: Use sequential thinking for hypothesis-evidence-revision cycles.context/ (the thinking chain is ephemeral){
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
}
}
}