一键导入
sdd-explore
SDD Explore Phase - Research and gather information about a topic. Trigger: When assigned as sdd-explore phase sub-agent.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
SDD Explore Phase - Research and gather information about a topic. Trigger: When assigned as sdd-explore phase sub-agent.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
SDD Apply Phase - Execute implementation with TDD support. Uses PKM-AI block storage with block_type="outline" for tasks and "permanent" for progress. Supports RED → GREEN → REFACTOR TDD cycle and standard mode. Trigger: When assigned as sdd-apply phase sub-agent.
SDD Archive Phase - Create final archive summary of the completed change. Uses PKM-AI block storage with block_type="permanent". Trigger: When assigned as sdd-archive phase sub-agent.
SDD Design Phase - Create architectural and technical design with AD-1, AD-2 format. Uses PKM-AI block storage with block_type="permanent". Trigger: When assigned as sdd-design phase sub-agent.
SDD Proposal Phase - Create a proposal for the change. Trigger: When assigned as sdd-propose phase sub-agent.
SDD Specification Phase - Create detailed specification with Given/When/Then scenarios. Uses PKM-AI block storage with block_type="structure". Trigger: When assigned as sdd-spec phase sub-agent.
SDD Tasks Phase - Create detailed task breakdown from spec and design. Uses PKM-AI block storage with block_type="outline" for checklist format. Trigger: When assigned as sdd-tasks phase sub-agent.
| name | sdd-explore |
| description | SDD Explore Phase - Research and gather information about a topic. Trigger: When assigned as sdd-explore phase sub-agent. |
| license | MIT |
| metadata | {"author":"pkm-ai","version":"1.0"} |
Explore a topic thoroughly to understand the problem space before proposing solutions. This phase:
change-name: The name of the change being exploredtopic: The topic or problem space to exploreLoad ${PKM_AI_SHARED:-~/.pkm-ai/sdd/_shared}/phase-common.md for return format.
Load ${PKM_AI_SHARED:-~/.pkm-ai/sdd/_shared}/pkmai-convention.md for PKM-AI conventions.
Use web search to gather information:
Before creating, check if exploration already exists:
{
"tool": "search_blocks",
"arguments": {"query": "sdd/{change-name}/explore", "tags": ["sdd-explore"]}
}
If found with matching change-name, update existing. If not found, create new.
Create a block in PKM-AI:
{
"tool": "create_block",
"arguments": {"block_type": "permanent", "title": "sdd/{change-name}/explore", "content": "# Exploration: {topic}\n\n## Summary\n{Brief description of the exploration}\n\n## Key Concepts\n- {concept 1}\n- {concept 2}\n- {concept 3}\n\n## Current State\n{How things work currently}\n\n## Challenges Identified\n- {challenge 1}\n- {challenge 2}\n\n## Opportunities\n- {opportunity 1}\n- {opportunity 2}\n\n## Related Research\n- {source 1}\n- {source 2}\n\n## Metadata\n```json\n{\n \"change\": \"{change-name}\",\n \"phase\": \"explore\",\n \"topic\": \"{topic}\",\n \"researched\": \"{ISO date}\"\n}\n```\n", "tags": ["sdd", "explore", "sdd-explore", "sdd-{change-name}"]}
}
Return structured summary per phase-common.md format.
# Exploration: {topic}
## Summary
{2-3 sentences on what this exploration covers}
## Problem Space
{What problem are we trying to solve?}
## Key Concepts
1. **{Concept}**: {brief explanation}
2. **{Concept}**: {brief explanation}
## Current Approaches
{How is this typically solved today?}
## Technologies & Tools
{What tools/technologies are relevant?}
## Challenges
- {challenge description}
- {challenge description}
## Opportunities
- {opportunity description}
## Questions to Resolve
- {question that needs answering}
- {question that needs answering}
## Research Sources
- [Source Title](URL) - {brief note}
- [Source Title](URL) - {brief note}
## Next Steps
- Proceed to sdd-propose with this research
- May need additional research on specific areas
Creates: sdd/{change-name}/explore block
Links: None (first phase, no parent)
{
"tool": "search_blocks",
"arguments": {"query": "sdd/{change-name}/explore", "tags": ["sdd-explore"]}
}
{
"tool": "create_block",
"arguments": {"block_type": "permanent", "title": "sdd/{change-name}/explore", "content": "{markdown content}", "tags": ["sdd", "explore", "sdd-explore", "sdd-{change-name}"]}
}