@e0ipso/ai-task-manager 1.18.3 → 1.18.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e0ipso/ai-task-manager",
3
- "version": "1.18.3",
3
+ "version": "1.18.4",
4
4
  "description": "Task management for AI coding assistants",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -53,7 +53,9 @@ PLAN_DIR=$(dirname "$PLAN_FILE")
53
53
 
54
54
  2. **Check for task files**:
55
55
  ```bash
56
- TASK_COUNT=$(ls "$PLAN_DIR"/tasks/*.md 2>/dev/null | wc -l)
56
+ setopt null_glob 2>/dev/null || true
57
+ TASK_FILES=(${PLAN_DIR}/tasks/*.md)
58
+ TASK_COUNT=${#TASK_FILES[@]}
57
59
  ```
58
60
 
59
61
  3. **Check for execution blueprint section**: