{"id":37333841,"url":"https://github.com/pyrex41/scud","last_synced_at":"2026-04-01T22:52:14.465Z","repository":{"id":324606358,"uuid":"1097784968","full_name":"pyrex41/scud","owner":"pyrex41","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-12T01:01:25.000Z","size":8479,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-12T07:20:39.332Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pyrex41.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-11-16T20:20:40.000Z","updated_at":"2026-03-10T00:17:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"70997f95-64eb-4023-8ffe-7d2d1f6783b3","html_url":"https://github.com/pyrex41/scud","commit_stats":null,"previous_names":["pyrex41/scud"],"tags_count":96,"template":false,"template_full_name":null,"purl":"pkg:github/pyrex41/scud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyrex41%2Fscud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyrex41%2Fscud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyrex41%2Fscud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyrex41%2Fscud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyrex41","download_url":"https://codeload.github.com/pyrex41/scud/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyrex41%2Fscud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30455020,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T21:31:01.033Z","status":"online","status_checked_at":"2026-03-13T02:00:07.565Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-16T03:39:45.472Z","updated_at":"2026-04-01T22:52:14.452Z","avatar_url":"https://github.com/pyrex41.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SCUD\n\nDAG-based task management with AI generation and swarm execution.\n\nSCUD models your project as a directed acyclic graph of tasks with dependencies, priorities, and complexity scores. It integrates with AI coding agents (Claude Code, etc.) to generate, expand, and execute tasks in parallel waves.\n\n## Install\n\n### Binary (recommended)\n\n```sh\ncurl -sSf https://raw.githubusercontent.com/pyrex41/scud/master/install.sh | sh\n```\n\nThis detects your OS/architecture and downloads the latest release binary to `~/.local/bin`.\n\n### From source\n\n```sh\ngo install github.com/reuben/scud/cmd/scud@latest\n```\n\n### Manual download\n\nPrebuilt binaries for Linux, macOS, and Windows (amd64/arm64) are available on the [Releases](https://github.com/pyrex41/scud/releases) page.\n\n## Quick start\n\n```sh\n# Initialize in your project\nscud init\n\n# Add tasks from a requirements doc\nscud parse prd.md\n\n# See what's ready to work on\nscud next\n\n# Start working\nscud set-status \u003cid\u003e in-progress\n\n# Mark done\nscud set-status \u003cid\u003e done\n\n# View progress\nscud stats\n```\n\n## Commands\n\n| Command | Description |\n|---------|-------------|\n| `init` | Initialize SCUD in the current project |\n| `list` | Show all tasks with status |\n| `show \u003cid\u003e` | View task details |\n| `next` | Get the next available task |\n| `set-status \u003cid\u003e \u003cstatus\u003e` | Update task status |\n| `stats` | View completion statistics |\n| `waves` | Show parallel execution waves |\n| `create` | Create a new task |\n| `parse` | Generate tasks from a document |\n| `expand` | Break a task into subtasks |\n| `generate` | Regenerate task files from the graph |\n| `check-deps` | Validate dependency graph |\n| `tags` | Manage task tags |\n| `assign` | Assign tasks to agents |\n| `commit` | Task-aware git commit |\n| `swarm` | Execute tasks in parallel with AI agents |\n| `heavy` | Multi-agent reasoning ensemble (16 agents) |\n| `warmup` | Session orientation (status + next task) |\n| `doctor` | Diagnose project issues |\n| `mermaid` | Export dependency graph as Mermaid diagram |\n| `mcp-server` | Start MCP stdio server for tool integration |\n\n## Task model\n\nTasks have hierarchical IDs (`1`, `1.1`, `1.1.1`), statuses (`pending`, `in-progress`, `done`, `blocked`, `failed`, `review`, `deferred`, `cancelled`), Fibonacci complexity scores, and priority levels.\n\nDependencies form a DAG — a task is \"ready\" when all its dependencies are `done`. SCUD's wave planner groups ready tasks into parallel execution batches.\n\n## Heavy ensemble\n\n`scud heavy` runs a multi-agent reasoning ensemble where a Captain agent routes your query to specialist agents, they analyze in parallel, and the Captain synthesizes a unified answer.\n\n```sh\n# Basic query\nscud heavy \"What does the wave planner do?\" -v\n\n# Use cheap models for agents, expensive for synthesis\nscud heavy \"Analyze the auth system\" \\\n  --model-agents grok-4.1-fast \\\n  --model-synthesis grok-4.20-reasoning\n\n# Hybrid mode: rho agents (file tools) + xAI native (web search) in parallel\nscud heavy \"Compare our auth approach to industry best practices\" --mode hybrid\n```\n\n### Modes\n\n| Mode | Description |\n|------|-------------|\n| `ensemble` | (default) rho agents with local file tools |\n| `native` | xAI native multi-agent with web search |\n| `hybrid` | both in parallel, captain synthesizes all |\n\n### Per-role model overrides\n\nUse cheap models for bulk work and reserve expensive models for synthesis:\n\n```toml\n# .scud/config.toml\n[heavy.models]\nrouting = \"grok-4.1-fast\"\nagents = \"grok-4.1-fast\"\nsynthesis = \"grok-4.20-beta-0309-reasoning\"\ndebate = \"grok-4.1-fast\"\nnative = \"grok-4.20-multi-agent-beta-0309\"\n```\n\nOr via CLI flags (`--model-agents`, `--model-synthesis`) or env vars (`SCUD_HEAVY_MODEL_AGENTS`, etc).\n\n## MCP server\n\n`scud mcp-server` starts a [Model Context Protocol](https://modelcontextprotocol.io) server over stdio, exposing scud commands as tools for AI agents (Claude Code, Cowork, etc).\n\n### Setup for Claude Code / Cowork\n\nAdd to `.mcp.json` (project) or `claude_desktop_config.json` (Cowork):\n\n```json\n{\n  \"mcpServers\": {\n    \"scud\": {\n      \"command\": \"scud\",\n      \"args\": [\"mcp-server\"],\n      \"env\": {\n        \"SCUD_TOOLS\": \"full\"\n      }\n    }\n  }\n}\n```\n\n### Tool tiers\n\nControl context token usage with `SCUD_TOOLS`:\n\n| Tier | Tools | Tokens |\n|------|-------|--------|\n| `core` (default) | warmup, next, show, set-status, stats, commit | ~3K |\n| `full` | core + list, heavy, create | ~5K |\n| Custom | `SCUD_TOOLS=next,show,heavy` | varies |\n\n## Agent integration\n\nSCUD is designed to work with AI coding agents. Use `scud warmup` at the start of a session, `scud next` to pick up work, and `scud commit` for task-aware git commits.\n\nFor multi-agent execution, `scud swarm` runs tasks in parallel waves with configurable agent types and model tiers.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyrex41%2Fscud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyrex41%2Fscud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyrex41%2Fscud/lists"}