Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub atusy/agentic-scrumA plugin that facilitates Agile Scrum project management
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
No description available.
Code intelligence powered by a knowledge graph — execution flows, blast radius, and semantic search
Share bugs, ideas, or general feedback.
🚧WIP🚧 This project is under active development. Expect breaking changes.
Scrum optimized for AI agents for stable autonomous software development.
Optional dependencies: deno
Use following prompts in Claude Code to add and install the plugin:
/plugin marketplace add https://github.com/atusy/agentic-scrum
/plugin install agentic-scrum@agentic-scrum
Run /scrum:init in your project to create scrum.ts
Prompt Claude Code to add a TODO in scrum.ts (i.e., PBI)
Run /scrum:go to start autonomous development
Stable autonomous software development requires a structured process:
Scrum provides exactly this structure, and AI agents understand it well.
Why adapt Scrum? Traditional Scrum assumes human limitations: time-boxed sprints, sprint point estimation, and synchronous ceremonies. AI agents don't have these constraints.
Agentic Scrum adapts the framework:
| Traditional Scrum | Agentic Scrum |
|---|---|
| 📅 Sprint = 2-4 weeks | ⚡ Sprint = 1 PBI (any duration) |
| 📊 Velocity planning | 🚫 No estimation needed |
| 👥 Team ceremonies | 🤖 Autonomous coordination |
| 📋 Sprint backlog items | 🎯 Single focused goal |
The result: continuous autonomous iteration with all the benefits of Scrum's inspect-and-adapt loop.
scrum.tsAll Scrum artifacts live in one TypeScript file that AI agents read and write:
const scrum: ScrumDashboard = {
product_goal: { statement: "...", success_metrics: [...] },
product_backlog: [...], // Ordered by priority
sprint: { goal: "...", subtasks: [...] },
definition_of_done: { checks: [...] },
completed: [...], // Sprint history
retrospectives: [...] // Process improvements
};
┌─────────────────────────────────────────────────────────────┐
│ 🧭 SCRUM MASTER │
│ Facilitates • Enforces • Removes Impediments │
└─────────────────────────────────────────────────────────────┘
│ │
▼ ▼
┌───────────────────┐ ┌───────────────────────┐
│ 📋 PRODUCT OWNER │ │ 💻 DEVELOPER │
│ │ ready PBI │ │
│ • Product Goal │ ───────────────▶│ • TDD Cycle │
│ • Backlog Order │ │ • RED → GREEN → │
│ • Acceptance │ ◀───────────────│ REFACTOR │
│ │ done PBI │ │
└───────────────────┘ └───────────────────────┘
PBI: draft → refining → ready → done
Sprint: planning → in_progress → review → done
Subtask: pending → 🔴 red → 🟢 green → 🔧 refactoring → ✅ completed
│ │ │
(test) (commit) (commit×N)
MIT © 2025 atusy