imhcode 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/imhcode.js +1 -0
  2. package/package.json +1 -1
package/bin/imhcode.js CHANGED
@@ -1971,6 +1971,7 @@ async function generateStaticSprintPlans(cwd, scope, config) {
1971
1971
 
1972
1972
  async function generateSprint(cwd, sprintNum, title, tasks, testingMode, config) {
1973
1973
  const sprintDir = path.join(cwd, DOCS_DIR, `sprint-${sprintNum}`);
1974
+ fs.mkdirSync(sprintDir, { recursive: true });
1974
1975
  const tasksDir = path.join(cwd, LOCAL_DIR_NAME, 'commands', `sprint-${sprintNum}`);
1975
1976
  fs.mkdirSync(tasksDir, { recursive: true });
1976
1977
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imhcode",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "IMH-Code — Imam Hussain Coding Harness Platform. A fast-first multi-agent AI coding framework with intelligent model routing. 19 generic role-based agents (planner, nextjs-executor, laravel-executor, etc.), configurable testing strategy, and 7 token-saving optimizations for rapid MVP development.",
5
5
  "main": "index.js",
6
6
  "bin": {