project

Automate project status assessment and parallel work orchestration for route-agent.

1|Updated Dec 21, 2025
One-click install
npx skills add https://github.com/bendrucker/route-agent --skill project
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: project
Source: https://github.com/bendrucker/route-agent/tree/main/.claude/skills/project
Command: npx skills add https://github.com/bendrucker/route-agent --skill project

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps manage the Route-Agent project by examining milestones, identifying ready tasks, and orchestrating parallel work with worktrees and sub-agents.

Core Features & Use Cases

  • Milestone progress: Show progress across milestones to keep work aligned with goals.
  • Identify ready tasks: Build a list of tasks whose dependencies are closed and ready to work on.
  • Parallel work orchestration: Spawn sub-agents for ready tasks and coordinate parallel exploration.
  • Use Case: A developer wants to quickly see what's next and kick off multiple tasks in parallel to accelerate milestone completion.

Quick Start

  • Milestone progress: gh api repos/bendrucker/route-agent/milestones --jq '.[] | "(.title): (.closed_issues)/(.open_issues)"'
  • Open issues: gh issue list --repo bendrucker/route-agent --state open --json number,title,milestone,body --limit 100

Frequently Asked Questions about project

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate project status tracking across GitHub milestones?

Automate project status assessment by retrieving milestones and open issues to identify task readiness based on dependency status. This Skill examines closed dependencies to surface ready tasks and reports progress toward milestone completion without manual status updates.

Can I spawn parallel tasks for multiple GitHub issues automatically?

Yes. This Skill orchestrates parallel work by creating per-issue worktrees and spawning sub-agents for ready tasks simultaneously. It coordinates multiple parallel explorations to accelerate milestone delivery instead of processing issues sequentially.

What's the best way to manage worktree lifecycle for multi-issue workflows?

Create and manage per-issue worktrees automatically while coordinating parallel sub-agent work. This Skill handles worktree creation for each task and implements lazy cleanup to maintain a clean working environment across dependent issues.

How do I identify which tasks are ready to work on based on dependencies?

Task readiness identification parses issue dependencies and checks closure status to build a ready-task list. This Skill filters open issues by closed dependencies, surfacing only tasks with satisfied prerequisites so you prioritize correctly.

Does this work with open-source project workflows on GitHub?

Yes, this Skill is designed for open-source project workflows using GitHub milestones and issues. It integrates with GitHub APIs to retrieve project structure, dependencies, and issue metadata for automated orchestration.