Agent skills for the entire software development lifecycle. Azure DevOps automation, backlog creation from documents, sprint planning, health auditing, and work item templates.
Built for Claude Code, Cursor, GitHub Copilot, Windsurf, Cline, and 40+ AI agents.
npx y2k-labs -gWorks on Mac, Windows, and Linux.
Complete Azure DevOps automation — one skill that does everything:
| Capability | Description |
|---|---|
| Backlog Creator | Reads any document (PRD, spec, meeting notes) and creates a full hierarchy: Epics → Features → Stories → Tasks → Bugs with links, acceptance criteria, and story points |
| Health Audit | Scans your existing backlog and generates a 0-100 health score with 12 audit rules across 4 severity levels |
| Sprint Planner | Suggests optimal sprint assignments based on team velocity, priority ordering, and dependency analysis |
| Templates | 18 pre-built templates: API endpoint, CRUD feature, auth flow, database migration, CI/CD pipeline, and more |
| CLI Reference | Complete guide for az boards, az repos, az pipelines with examples, patterns, and best practices |
Each skill is a SKILL.md file that gives your AI agent specialized knowledge. When you install Y2K Labs, the skills are copied to your agent's config directory. The agent loads them automatically based on context.
Slash command:
/azure-devops path/to/document.md
Natural language (auto-detected):
"Read this PRD and create the backlog in Azure DevOps"
"Audit my backlog health"
"Plan the next 3 sprints"
"Create a CRUD feature template for Products"
npx y2k-labs@latest -gThe installer creates the correct config files for each runtime automatically:
| Runtime | Config Location |
|---|---|
| Claude Code | ~/.claude/skills/<name>/ |
| Cursor | .cursor/rules/ |
| GitHub Copilot | .github/copilot-instructions/ |
| Windsurf | .windsurf/rules/ |
| Cline | ~/.cline/skills/<name>/ |
npx y2k-labs -g --agent=cursor
npx y2k-labs -g --agent=copilot
npx y2k-labs -g --agent=all# Everyone on the team runs:
npx y2k-labs -g| # | Requirement | Install |
|---|---|---|
| 1 | Azure CLI | Install guide |
| 2 | DevOps extension | az extension add --name azure-devops |
| 3 | Authentication | az login or set AZURE_DEVOPS_EXT_PAT env var |
| 4 | Defaults | az devops configure --defaults organization=https://dev.azure.com/ORG project=PROJECT |
Want to add a skill? Every skill is a folder with a SKILL.md:
skills/
└── my-new-skill/
├── SKILL.md # Required — frontmatter + instructions
├── references/ # Optional — detailed documentation
├── scripts/ # Optional — executable helpers
├── examples/ # Optional — sample inputs/outputs
└── assets/ # Optional — templates, data files
- Fork this repo
- Create your skill folder in
skills/ - Add a
SKILL.mdwithnameanddescriptionin YAML frontmatter - Update
.claude-plugin/marketplace.json - Submit a PR
See CHANGELOG.md for version history.
Apache-2.0 — see LICENSE.txt