Some checks are pending
CI — CoM Config Validation / Validate JSON Configs (push) Waiting to run
CI — CoM Config Validation / Validate YAML Configs (push) Waiting to run
CI — CoM Config Validation / Lint Shell Scripts (push) Waiting to run
CI — CoM Config Validation / Secret Detection (push) Waiting to run
CI — CoM Config Validation / Lint Markdown (push) Waiting to run
CI — CoM Config Validation / Validate CODEOWNERS (push) Waiting to run
Public, sanitized mirror of an AI orchestration command center: agents, skills, MCP servers, slash-command workflows. All infrastructure identifiers, hostnames, mesh IPs/subnets, repo paths, maintainer identity, and hardware fleet specifics scrubbed to <placeholders>; session debug logs and host-specific memory removed. No live credentials. Verified clean by automated leak sweep. See SANITIZATION.md. churchofmalware.org . authorized research only
68 lines
1.7 KiB
Bash
68 lines
1.7 KiB
Bash
#!/bin/bash
|
|
echo "Getting tasks..."
|
|
echo ""
|
|
echo ""
|
|
|
|
echo "🚫 Blocked Tasks"
|
|
echo "================"
|
|
echo ""
|
|
|
|
found=0
|
|
|
|
for epic_dir in .claude/epics/*/; do
|
|
[ -d "$epic_dir" ] || continue
|
|
epic_name=$(basename "$epic_dir")
|
|
|
|
for task_file in "$epic_dir"/[0-9]*.md; do
|
|
[ -f "$task_file" ] || continue
|
|
|
|
# Check if task is open
|
|
status=$(grep "^status:" "$task_file" | head -1 | sed 's/^status: *//')
|
|
if [ "$status" != "open" ] && [ -n "$status" ]; then
|
|
continue
|
|
fi
|
|
|
|
# Check for dependencies
|
|
deps_line=$(grep "^depends_on:" "$task_file" | head -1)
|
|
if [ -n "$deps_line" ]; then
|
|
deps=$(echo "$deps_line" | sed 's/^depends_on: *//' | sed 's/^\[//' | sed 's/\]$//' | sed 's/,/ /g' | sed 's/^[[:space:]]*//' | sed 's/[[:space:]]*$//')
|
|
[ -z "$deps" ] && deps=""
|
|
else
|
|
deps=""
|
|
fi
|
|
|
|
if [ -n "$deps" ] && [ "$deps" != "depends_on:" ]; then
|
|
task_name=$(grep "^name:" "$task_file" | head -1 | sed 's/^name: *//')
|
|
task_num=$(basename "$task_file" .md)
|
|
|
|
echo "⏸️ Task #$task_num - $task_name"
|
|
echo " Epic: $epic_name"
|
|
echo " Blocked by: [$deps]"
|
|
|
|
# Check status of dependencies
|
|
open_deps=""
|
|
for dep in $deps; do
|
|
dep_file="$epic_dir$dep.md"
|
|
if [ -f "$dep_file" ]; then
|
|
dep_status=$(grep "^status:" "$dep_file" | head -1 | sed 's/^status: *//')
|
|
[ "$dep_status" = "open" ] && open_deps="$open_deps #$dep"
|
|
fi
|
|
done
|
|
|
|
[ -n "$open_deps" ] && echo " Waiting for:$open_deps"
|
|
echo ""
|
|
((found++))
|
|
fi
|
|
done
|
|
done
|
|
|
|
if [ $found -eq 0 ]; then
|
|
echo "No blocked tasks found!"
|
|
echo ""
|
|
echo "💡 All tasks with dependencies are either completed or in progress."
|
|
else
|
|
echo "📊 Total blocked: $found tasks"
|
|
fi
|
|
|
|
exit 0
|