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
62 lines
1.7 KiB
Bash
62 lines
1.7 KiB
Bash
#!/bin/bash
|
|
echo "Getting status..."
|
|
echo ""
|
|
echo ""
|
|
|
|
echo "📋 Next Available Tasks"
|
|
echo "======================="
|
|
echo ""
|
|
|
|
# Find tasks that are open and have no dependencies or whose dependencies are closed
|
|
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 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/^[[:space:]]*//' | sed 's/[[:space:]]*$//')
|
|
[ -z "$deps" ] && deps=""
|
|
else
|
|
deps=""
|
|
fi
|
|
|
|
# If no dependencies or empty, task is available
|
|
if [ -z "$deps" ] || [ "$deps" = "depends_on:" ]; then
|
|
task_name=$(grep "^name:" "$task_file" | head -1 | sed 's/^name: *//')
|
|
task_num=$(basename "$task_file" .md)
|
|
parallel=$(grep "^parallel:" "$task_file" | head -1 | sed 's/^parallel: *//')
|
|
|
|
echo "✅ Ready: #$task_num - $task_name"
|
|
echo " Epic: $epic_name"
|
|
[ "$parallel" = "true" ] && echo " 🔄 Can run in parallel"
|
|
echo ""
|
|
((found++))
|
|
fi
|
|
done
|
|
done
|
|
|
|
if [ $found -eq 0 ]; then
|
|
echo "No available tasks found."
|
|
echo ""
|
|
echo "💡 Suggestions:"
|
|
echo " • Check blocked tasks: /pm:blocked"
|
|
echo " • View all tasks: /pm:epic-list"
|
|
fi
|
|
|
|
echo ""
|
|
echo "📊 Summary: $found tasks ready to start"
|
|
|
|
exit 0
|