diff --git a/.claude/skills/workflow-lite-plan/phases/01-lite-plan.md b/.claude/skills/workflow-lite-plan/phases/01-lite-plan.md index cad9b125..68580332 100644 --- a/.claude/skills/workflow-lite-plan/phases/01-lite-plan.md +++ b/.claude/skills/workflow-lite-plan/phases/01-lite-plan.md @@ -529,15 +529,17 @@ ${task_description} ## Multi-Angle Exploration Context -${manifest.explorations.map(exp => `### Exploration: ${exp.angle} (${exp.file}) +${manifest.explorations.length > 0 + ? manifest.explorations.map(exp => `### Exploration: ${exp.angle} (${exp.file}) Path: ${exp.path} -Read this file for detailed ${exp.angle} analysis.`).join('\n\n')} +Read this file for detailed ${exp.angle} analysis.`).join('\n\n') + ` Total explorations: ${manifest.exploration_count} Angles covered: ${manifest.explorations.map(e => e.angle).join(', ')} -Manifest: ${sessionFolder}/explorations-manifest.json +Manifest: ${sessionFolder}/explorations-manifest.json` + : `No exploration files. Task Description above contains "## Prior Analysis" with analysis summary, key files, and findings — use it as primary planning context.`} ## User Clarifications ${JSON.stringify(clarificationContext) || "None"} diff --git a/package.json b/package.json index 4e2952e5..c6c5ba32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "claude-code-workflow", - "version": "7.1.0", + "version": "7.1.1", "description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution", "type": "module", "main": "ccw/dist/index.js",