mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-14 02:42:04 +08:00
- Updated orchestrator decision logic to improve state management and action selection. - Introduced structured termination checks and action selection criteria. - Enhanced state update mechanism with sliding window for action history and error tracking. - Revised problem taxonomy for skill execution issues, consolidating categories and refining detection patterns. - Improved severity calculation method for issue prioritization. - Streamlined fix mapping strategies for better clarity and usability.
263 lines
8.3 KiB
Markdown
263 lines
8.3 KiB
Markdown
# Phase 2: Structure Generation
|
|
|
|
根据配置创建 Skill 目录结构和入口文件。
|
|
|
|
## Objective
|
|
|
|
- 创建标准目录结构
|
|
- 生成 SKILL.md 入口文件
|
|
- 根据执行模式创建对应的子目录
|
|
|
|
|
|
|
|
## Execution Steps
|
|
|
|
### Step 1: 读取配置
|
|
|
|
```javascript
|
|
const config = JSON.parse(Read(`${workDir}/skill-config.json`));
|
|
const skillDir = `.claude/skills/${config.skill_name}`;
|
|
```
|
|
|
|
### Step 2: 创建目录结构
|
|
|
|
#### 基础目录(所有模式)
|
|
|
|
```javascript
|
|
// 基础架构
|
|
Bash(`mkdir -p "${skillDir}/{phases,specs,templates,scripts}"`);
|
|
```
|
|
|
|
#### 执行模式特定目录
|
|
|
|
```
|
|
config.execution_mode
|
|
↓
|
|
├─ "sequential"
|
|
│ ↓ Creates:
|
|
│ └─ phases/ (基础目录已包含)
|
|
│ ├─ _orchestrator.md
|
|
│ └─ workflow.json
|
|
│
|
|
└─ "autonomous" | "hybrid"
|
|
↓ Creates:
|
|
└─ phases/actions/
|
|
├─ state-schema.md
|
|
└─ *.md (动作文件)
|
|
```
|
|
|
|
```javascript
|
|
// Autonomous/Hybrid 模式额外目录
|
|
if (config.execution_mode === 'autonomous' || config.execution_mode === 'hybrid') {
|
|
Bash(`mkdir -p "${skillDir}/phases/actions"`);
|
|
}
|
|
```
|
|
|
|
#### Context Strategy 特定目录 (P0 增强)
|
|
|
|
```javascript
|
|
// ========== P0: 根据上下文策略创建目录 ==========
|
|
const contextStrategy = config.context_strategy || 'file';
|
|
|
|
if (contextStrategy === 'file') {
|
|
// 文件策略:创建上下文持久化目录
|
|
Bash(`mkdir -p "${skillDir}/.scratchpad-template/context"`);
|
|
|
|
// 创建上下文模板文件
|
|
Write(
|
|
`${skillDir}/.scratchpad-template/context/.gitkeep`,
|
|
"# Runtime context storage for file-based strategy"
|
|
);
|
|
}
|
|
// 内存策略无需创建目录 (in-memory only)
|
|
```
|
|
|
|
**目录树视图**:
|
|
|
|
```
|
|
Sequential + File Strategy:
|
|
.claude/skills/{skill-name}/
|
|
├── phases/
|
|
│ ├── _orchestrator.md
|
|
│ ├── workflow.json
|
|
│ ├── 01-*.md
|
|
│ └── 02-*.md
|
|
├── .scratchpad-template/
|
|
│ └── context/ ← File strategy persistent storage
|
|
└── specs/
|
|
|
|
Autonomous + Memory Strategy:
|
|
.claude/skills/{skill-name}/
|
|
├── phases/
|
|
│ ├── orchestrator.md
|
|
│ ├── state-schema.md
|
|
│ └── actions/
|
|
│ └── *.md
|
|
└── specs/
|
|
```
|
|
|
|
### Step 3: 生成 SKILL.md
|
|
|
|
```javascript
|
|
const skillMdTemplate = `---
|
|
name: ${config.skill_name}
|
|
description: ${config.description}. Triggers on ${config.triggers.map(t => `"${t}"`).join(", ")}.
|
|
allowed-tools: ${config.allowed_tools.join(", ")}
|
|
---
|
|
|
|
# ${config.display_name}
|
|
|
|
${config.description}
|
|
|
|
## Architecture Overview
|
|
|
|
\`\`\`
|
|
${generateArchitectureDiagram(config)}
|
|
\`\`\`
|
|
|
|
## Key Design Principles
|
|
|
|
${generateDesignPrinciples(config)}
|
|
|
|
## Execution Flow
|
|
|
|
${generateExecutionFlow(config)}
|
|
|
|
## Directory Setup
|
|
|
|
\`\`\`javascript
|
|
const timestamp = new Date().toISOString().slice(0,19).replace(/[-:T]/g, '');
|
|
const workDir = \`${config.output.location.replace('{timestamp}', '${timestamp}')}\`;
|
|
|
|
Bash(\`mkdir -p "\${workDir}"\`);
|
|
${config.execution_mode === 'sequential' ?
|
|
`Bash(\`mkdir -p "\${workDir}/sections"\`);` :
|
|
`Bash(\`mkdir -p "\${workDir}/state"\`);`}
|
|
\`\`\`
|
|
|
|
## Output Structure
|
|
|
|
\`\`\`
|
|
${generateOutputStructure(config)}
|
|
\`\`\`
|
|
|
|
## Reference Documents
|
|
|
|
${generateReferenceTable(config)}
|
|
`;
|
|
|
|
Write(`${skillDir}/SKILL.md`, skillMdTemplate);
|
|
```
|
|
|
|
### Step 4: 架构图生成函数
|
|
|
|
```javascript
|
|
function generateArchitectureDiagram(config) {
|
|
if (config.execution_mode === 'sequential') {
|
|
return config.sequential_config.phases.map((p, i) =>
|
|
`│ Phase ${i+1}: ${p.name.padEnd(15)} → ${p.output || 'output-' + (i+1) + '.json'}${' '.repeat(10)}│`
|
|
).join('\n│ ↓' + ' '.repeat(45) + '│\n');
|
|
} else {
|
|
return `
|
|
┌─────────────────────────────────────────────────────────────────┐
|
|
│ Orchestrator (状态驱动决策) │
|
|
└───────────────┬─────────────────────────────────────────────────┘
|
|
│
|
|
┌───────────┼───────────┐
|
|
↓ ↓ ↓
|
|
${config.autonomous_config.actions.slice(0, 3).map(a =>
|
|
`┌─────────┐ `).join('')}
|
|
${config.autonomous_config.actions.slice(0, 3).map(a =>
|
|
`│${a.name.slice(0, 7).padEnd(7)}│ `).join('')}
|
|
${config.autonomous_config.actions.slice(0, 3).map(a =>
|
|
`└─────────┘ `).join('')}`;
|
|
}
|
|
}
|
|
|
|
function generateDesignPrinciples(config) {
|
|
const common = [
|
|
"1. **规范遵循**: 严格遵循 `_shared/SKILL-DESIGN-SPEC.md`",
|
|
"2. **简要返回**: Agent 返回路径+摘要,避免上下文溢出"
|
|
];
|
|
|
|
if (config.execution_mode === 'sequential') {
|
|
return [...common,
|
|
"3. **阶段隔离**: 每个阶段独立可测",
|
|
"4. **链式输出**: 阶段产出作为下阶段输入"
|
|
].join('\n');
|
|
} else {
|
|
return [...common,
|
|
"3. **状态驱动**: 显式状态管理,动态决策",
|
|
"4. **动作独立**: 每个动作无副作用依赖"
|
|
].join('\n');
|
|
}
|
|
}
|
|
|
|
function generateExecutionFlow(config) {
|
|
if (config.execution_mode === 'sequential') {
|
|
return '```\n' + config.sequential_config.phases.map((p, i) =>
|
|
`├─ Phase ${i+1}: ${p.name}\n│ → Output: ${p.output || 'output.json'}`
|
|
).join('\n') + '\n```';
|
|
} else {
|
|
return `\`\`\`
|
|
┌─────────────────────────────────────────────────────────────────┐
|
|
│ Orchestrator Loop │
|
|
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
|
|
│ │ Read │────▶│ Select │────▶│ Execute │ │
|
|
│ │ State │ │ Action │ │ Action │ │
|
|
│ └──────────┘ └──────────┘ └──────────┘ │
|
|
│ ▲ │ │
|
|
│ └──────────── Update State ◀───────┘ │
|
|
└─────────────────────────────────────────────────────────────────┘
|
|
\`\`\``;
|
|
}
|
|
}
|
|
|
|
function generateOutputStructure(config) {
|
|
const base = `${config.output.location}/
|
|
├── ${config.execution_mode === 'sequential' ? 'sections/' : 'state.json'}`;
|
|
|
|
if (config.execution_mode === 'sequential') {
|
|
return base + '\n' + config.sequential_config.phases.map(p =>
|
|
`│ └── ${p.output || 'section-' + p.id + '.md'}`
|
|
).join('\n') + `\n└── ${config.output.filename_pattern}`;
|
|
} else {
|
|
return base + `
|
|
├── actions-log.json
|
|
└── ${config.output.filename_pattern}`;
|
|
}
|
|
}
|
|
|
|
function generateReferenceTable(config) {
|
|
const rows = [];
|
|
|
|
if (config.execution_mode === 'sequential') {
|
|
config.sequential_config.phases.forEach(p => {
|
|
rows.push(`| [phases/${p.id}.md](phases/${p.id}.md) | ${p.name} |`);
|
|
});
|
|
} else {
|
|
rows.push(`| [phases/orchestrator.md](phases/orchestrator.md) | 编排器 |`);
|
|
rows.push(`| [phases/state-schema.md](phases/state-schema.md) | 状态定义 |`);
|
|
config.autonomous_config.actions.forEach(a => {
|
|
rows.push(`| [phases/actions/${a.id}.md](phases/actions/${a.id}.md) | ${a.name} |`);
|
|
});
|
|
}
|
|
|
|
rows.push(`| [specs/${config.skill_name}-requirements.md](specs/${config.skill_name}-requirements.md) | 领域规范 |`);
|
|
rows.push(`| [specs/quality-standards.md](specs/quality-standards.md) | 质量标准 |`);
|
|
|
|
return `| Document | Purpose |\n|----------|---------||\n` + rows.join('\n');
|
|
}
|
|
```
|
|
|
|
|
|
|
|
## Next Phase
|
|
|
|
→ [Phase 3: Phase Generation](03-phase-generation.md)
|
|
|
|
**Data Flow to Phase 3**:
|
|
- Complete directory structure in .claude/skills/{skill-name}/
|
|
- SKILL.md entry file ready for phase/action generation
|
|
- skill-config.json for template population
|