Claude Role Skills

A collection of role-based skills for Claude, enhancing team collaboration and productivity.

Claude Role Skills

A Claude Code plugin with 7 role-based professional skills and 14 slash commands for software teams. Each skill teaches Claude how to act as a specific team role with deep domain knowledge, structured workflows, and MCP integration support.

Skills

SkillFocus Areas
scrum-masterSprint ceremonies, velocity tracking, impediment resolution, retrospective facilitation, burndown analysis
product-ownerUser stories (INVEST), acceptance criteria, backlog management, prioritization (MoSCoW, RICE, WSJF), release planning
product-managerProduct strategy, roadmapping, market analysis (TAM/SAM/SOM), OKRs (AARRR), positioning, GTM
ux-ui-developerDesign systems, WCAG 2.1 AA accessibility, Nielsen's heuristics, responsive design, component architecture
infosec-engineerThreat modeling (STRIDE/DREAD), OWASP Top 10, secure code review, incident response, compliance frameworks
devops-engineerCI/CD (GitHub Actions, GitLab CI), Terraform, Docker/K8s, deployment strategies, monitoring (USE/RED), SLO/SLI
software-migration-engineerLegacy assessment, 7 Rs of cloud migration, strangler fig, database migration, monolith decomposition

Commands

CommandRoleDescription
/sprint-planScrum MasterPlan a sprint with capacity, goals, and story selection
/retroScrum MasterFacilitate a sprint retrospective (5 formats)
/standupScrum MasterRun async daily standup and surface blockers
/user-storyProduct OwnerWrite user stories with acceptance criteria
/backlog-prioritizeProduct OwnerPrioritize backlog using RICE, MoSCoW, or WSJF
/prdProduct ManagerDraft a product requirements document
/roadmapProduct ManagerBuild a product roadmap with themes and milestones
/accessibility-auditUX/UI DeveloperRun a WCAG 2.1 AA accessibility audit
/design-systemUX/UI DeveloperDesign, initialize, or audit a component design system
/threat-modelInfoSec EngineerRun STRIDE threat analysis with DREAD scoring
/security-reviewInfoSec EngineerSecurity review of code changes
/pipelineDevOps EngineerGenerate a CI/CD pipeline (GitHub Actions or GitLab CI)
/deploy-strategyDevOps EngineerPlan a deployment strategy (blue-green, canary, rolling)
/migrateMigration EngineerAssess and plan a technology migration
/legacy-auditMigration EngineerAudit a legacy system for modernization readiness

Installation

/plugin install role-based-skills@claude-plugin-directory

Or install directly from this repository:

/plugin install-from https://github.com/CrashBytes/claude-role-skills

Usage

Skills activate automatically based on your prompts:

  • "Help me plan our next sprint" → scrum-master
  • "Write user stories for the checkout flow" → product-owner
  • "Build a product roadmap for Q3" → product-manager
  • "Review this component for accessibility" → ux-ui-developer
  • "Threat model our authentication system" → infosec-engineer
  • "Set up a CI/CD pipeline with GitHub Actions" → devops-engineer
  • "Plan our migration from monolith to microservices" → software-migration-engineer

Commands can be invoked directly:

/sprint-plan 5-person team, 2-week sprint
/retro sailboat
/user-story checkout flow with guest checkout support
/threat-model src/auth/
/pipeline github node
/migrate Express.js to Next.js

MCP Integrations

Every skill supports connecting to project management and DevOps tools via MCP servers. When connected, Claude can read real sprint data, create issues, update boards, and more.

PlatformMCP ServerAuth
Jira / Confluenceatlassian/atlassian-mcp-serverOAuth
Azure DevOpsmicrosoft/azure-devops-mcpPAT
GitHubgithub/github-mcp-serverPAT
GitLab@modelcontextprotocol/server-gitlabPAT
Linear@ibraheem4/linear-mcpAPI key
Trello@delorenj/mcp-server-trelloAPI key
Pusher ChannelsPusher MCPApp credentials

See each skill's references/integrations.md for setup commands and role-specific actions.

Structure

claude-role-skills/
├── .claude-plugin/
│   └── plugin.json              # Plugin manifest
├── commands/
│   ├── sprint-plan.md           # Scrum Master
│   ├── retro.md
│   ├── standup.md
│   ├── user-story.md            # Product Owner
│   ├── backlog-prioritize.md
│   ├── prd.md                   # Product Manager
│   ├── roadmap.md
│   ├── accessibility-audit.md   # UX/UI Developer
│   ├── design-system.md
│   ├── threat-model.md          # InfoSec Engineer
│   ├── security-review.md
│   ├── pipeline.md              # DevOps Engineer
│   ├── deploy-strategy.md
│   ├── migrate.md               # Migration Engineer
│   └── legacy-audit.md
├── skills/
│   ├── scrum-master/
│   │   ├── SKILL.md
│   │   ├── LICENSE.txt
│   │   └── references/
│   ├── product-owner/
│   ├── product-manager/
│   ├── ux-ui-developer/
│   ├── infosec-engineer/
│   ├── devops-engineer/
│   └── software-migration-engineer/
├── LICENSE
└── README.md

Tutorial

Learn how to build Claude Code skills from scratch: Building Claude Code Skills: A Scrum Master Skill for Anthropic's Official Repo

License

Apache 2.0 — see LICENSE.