@leeovery/claude-technical-workflows 2.1.22 → 2.1.23
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
|
@@ -262,10 +262,10 @@ if [ -d "$IMPL_DIR" ] && [ -n "$(ls -A "$IMPL_DIR" 2>/dev/null)" ]; then
|
|
|
262
262
|
echo " exists: true"
|
|
263
263
|
echo " files:"
|
|
264
264
|
|
|
265
|
-
for file in "$IMPL_DIR"
|
|
265
|
+
for file in "$IMPL_DIR"/*/tracking.md; do
|
|
266
266
|
[ -f "$file" ] || continue
|
|
267
267
|
|
|
268
|
-
impl_name=$(basename "$file"
|
|
268
|
+
impl_name=$(basename "$(dirname "$file")")
|
|
269
269
|
impl_status=$(extract_field "$file" "status")
|
|
270
270
|
impl_status=${impl_status:-"unknown"}
|
|
271
271
|
current_phase=$(extract_field "$file" "current_phase")
|
|
@@ -343,7 +343,7 @@ if [ "$plan_count" -gt 0 ] && [ -d "$PLAN_DIR" ]; then
|
|
|
343
343
|
if [ "$dep_state" = "resolved" ] && [ -n "$dep_task_id" ]; then
|
|
344
344
|
has_resolved_deps=true
|
|
345
345
|
# Check if the dependency topic has a tracking file
|
|
346
|
-
tracking_file="$IMPL_DIR/${dep_topic}.md"
|
|
346
|
+
tracking_file="$IMPL_DIR/${dep_topic}/tracking.md"
|
|
347
347
|
task_completed=false
|
|
348
348
|
|
|
349
349
|
if [ -f "$tracking_file" ]; then
|
|
@@ -441,7 +441,7 @@ if [ "$plan_count" -gt 0 ] && [ -d "$PLAN_DIR" ]; then
|
|
|
441
441
|
is_ready=false
|
|
442
442
|
break
|
|
443
443
|
elif [ "$dep_state" = "resolved" ] && [ -n "$dep_task_id" ]; then
|
|
444
|
-
tracking_file="$IMPL_DIR/${dep_topic}.md"
|
|
444
|
+
tracking_file="$IMPL_DIR/${dep_topic}/tracking.md"
|
|
445
445
|
if [ -f "$tracking_file" ]; then
|
|
446
446
|
completed=$(extract_completed_tasks "$tracking_file")
|
|
447
447
|
if ! echo "$completed" | grep -qx "$dep_task_id" 2>/dev/null; then
|