Skip to content

SDLC Workflow Skills

SDLC workflow skills (Agent Skills format) that implement ASDLC workflows. Works in any Agent Skills–compatible environment (including Cursor) with MCP. Jira, Azure DevOps, and GitHub.

Get Started View Skills GitHub


What This Is

SDLC Workflow Skills provides skills in Agent Skills format that implement ASDLC workflows. They work across teams and projects in any environment that supports Agent Skills (Cursor IDE is the primary tested environment).

Built on:

  • Agent Skills – Markdown instructions with frontmatter (Cursor and other compatible environments)
  • MCP (Model Context Protocol) – Connects to Jira, Azure DevOps, GitHub
  • ASDLC – Principles for industrial-grade agentic software development

How It Works

graph LR
    A[You] -->|/skill| B[AI Agent]
    B -->|invokes| C[MCP Tools]
    C --> D[Jira]
    C --> E[Azure DevOps]
    C --> F[GitHub]
    C --> G[Filesystem]

Flow:

  1. You invoke a skill (e.g. /start-task PROJ-123)
  2. Your AI agent reads the skill (markdown instruction file)
  3. AI invokes MCP tools to interact with:
  4. Jira - Issue tracking and project management
  5. Azure DevOps - Work items and boards
  6. GitHub - Repository and pull requests
  7. Filesystem - Plans and code
  8. AI executes contextually based on your project

Result: Consistent operations regardless of project, tech stack, or team.


Quick Reference


Getting Started

1. Setup MCP Connections

Connect your IDE or agent to your services (Jira, Azure DevOps, GitHub, filesystem). In Cursor: Settings → Features → Model Context Protocol.

2. Install Skills

Add the skill library to your environment (e.g. Cursor: ~/.cursor/skills/ or .cursor/skills/).

3. Start Using

Invoke your first skill: /create-task --type=story for [your feature]

Full Setup Guide


Learn More