Agent Skills
› NeverSight/learn-skills.dev
› mcp-sequential-thinking
mcp-sequential-thinking
GitHub通过顺序思考MCP服务器将复杂问题分解为有序、可测试的步骤。适用于跨模块重构、DDD边界变更及调试非确定性行为,旨在降低风险并生成包含验证方法的详细执行计划。
Trigger Scenarios
需要多步推理的复杂任务
涉及风险降低或依赖敏感的重构
跨模块代码修改
调试非确定性行为
Install
npx skills add NeverSight/learn-skills.dev --skill mcp-sequential-thinking -g -y
SKILL.md
Frontmatter
{
"name": "mcp-sequential-thinking",
"description": "Use the sequential thinking MCP server (@modelcontextprotocol\/server-sequential-thinking) to break down complex problems into ordered, testable steps; use when the task requires careful multi-step reasoning, risk reduction, or dependency-sensitive refactors."
}
MCP Skill: Sequential Thinking
Scope
Use the MCP server configured as sequentialthinking in .vscode/mcp.json to produce step-by-step reasoning artifacts for complex changes.
Preconditions
- Ensure
.vscode/mcp.jsoncontains a server entry namedsequentialthinking.
Operating Rules
- Prefer short, ordered steps that can be validated locally.
- Call out unknowns explicitly and convert them into concrete discovery steps (search files, read AGENTS, inspect type errors).
- Keep the solution Occam-simple: avoid introducing new abstractions without a demonstrated need.
When To Use
- Refactors crossing multiple modules (shell/workspace/capability/eventing/integration).
- Any change that might impact DDD boundaries or the append-before-publish contract.
- Debugging nondeterministic behavior (signals/streams, event ordering).
Output Shape
- A numbered sequence of actions.
- Each action includes: target file(s), expected outcome, and how to verify (command or observation).
Prompt Templates
- "Think sequentially about implementing
. Identify risks (DDD boundaries, event causality, signals boundary) and produce a minimal step plan with verification per step." - "Given this error/log:
, produce an ordered debug plan with the smallest set of probes/changes."
Version History
- e0220ca Current 2026-07-05 21:26


