ai-sdlc

A Claude Code plugin that applies project-governance rules around AI-assisted software development. It includes command controls, activity tracking, quality checks, and review agents.

In plain words
What is it for?
For loading rules when a session starts, enforcing blocked commands, collecting development activity, applying quality gates, and coordinating code reviews.
Why use it?
It provides one framework for controlling risky agent actions and adding checks and reviews to the development process.

Plugin for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Claude Code
/plugin marketplace add ai-sdlc-framework/ai-sdlc
agentmods
npx agentmods add plugins/ai-sdlc-framework/ai-sdlc/ai-sdlc-plugin
Clone the repo
git clone --depth 1 https://github.com/ai-sdlc-framework/ai-sdlc

Made for: Claude Code.

Per session not measured What this adds to a session before it is invoked.
When invoked not measured Not applicable: nothing here is loaded into a session.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Security

Grade A, and why

ai-sdlc scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

ai-sdlc-plugin/.claude-plugin/plugin.json · 117 lines

How it starts

The opening of the file, as written. The whole thing — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.

{
  "name": "ai-sdlc",
  "version": "0.12.0",
  "description": "AI-SDLC governance framework for Claude Code — action enforcement, telemetry, quality gates, and review agents",
  "author": {
    "name": "AI-SDLC Framework",
    "url": "https://ai-sdlc.io"
  },
  "homepage": "https://ai-sdlc.io",
  "repository": "https://github.com/ai-sdlc-framework/ai-sdlc",
  "license": "Apache-2.0",
  "keywords": [
    "governance",
    "sdlc",
    "security",
    "quality-gates",
    "code-review"
  ],
  "hooks": {
    "SessionStart": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/session-start.sh\"",
            "statusMessage": "Loading AI-SDLC governance..."
          },
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/check-plugin-version.sh\"",
            "statusMessage": "Checking plugin version..."
          }
        ]
      }
    ],
    "PreToolUse": [
      {
        "matcher": "Bash",
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/enforce-blocked-actions.sh\"",
            "if": "Bash(*)",
            "statusMessage": "Checking action policy..."
          }
        ]
      }
    ],
    "PostToolUse": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/collect-tool-sequence.sh\"",
            "async": true
          }
        ]
      }
    ],
    "Stop": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/deferred-coverage-check.sh\"",
            "asyncRewake": true,
            "statusMessage": "Checking coverage..."
          }
        ]
      }
    ],
    "PermissionRequest": [
      {
        "matcher": "Bash",
        "hooks": [
          {
            "type": "command",
            "command": "bash \

Read the full file on GitHub · 117 lines

Files

What ships with it

1 file beside plugin.json in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 117 lines scan A 1ed9f9f3837b

Subscribe to this mod's changes

ai-sdlc is a plugin published in the GitHub repository ai-sdlc-framework/ai-sdlc (92 stars, last pushed 9d ago), licensed Apache-2.0. Its token cost is not measured: this kind of file is read by the harness, not the model. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other plugins, from other repositories

martinloop

Govern coding-agent work with budgets, stop conditions, and verifier-backed evidence.

Keesan12/martin-loop · not measured

ifixai

Independent auditing for AI agents, open source. Claude investigates your agent, authors an iFixAi fixture from its setup, and audits it against the one question other tools skip: is it doing the job it's supposed to do, given your business rules and org structure? Adversarial depth, assurance discipline. Test any…

ifixai-ai/iFixAi · not measured

arckit-agent-architecture

AI Agent Architecture — Governance, design, and security for autonomous AI agent programs. 6 commands covering agent inventory, design, governance, integration, security, and maturity.

tractorjuice/arc-kit · not measured

nio

Nio — Execution assurance and observability for autonomous AI agents. Dynamic guard, static scan, OTEL collector.

core0-io/nio · not measured

agents-md-optimizer

Audit bloated agent-instruction files (CLAUDE.md, AGENTS.md, and their variants) and rewrite them lean, or author a new one from scratch following the 200-line recipe-book principle. Detects anti-patterns like embedded API docs, negative rules, tutorials, and preemptive file preloads.

MSApps-Mobile/claude-plugins · not measured

plugin-gardener

Catalog hygiene for Claude Code skill/agent plugins. Runs monthly audits: inventory, per-skill scoring, Bedrock Cohere v4 embedding-based collision detection, and HDBSCAN taxonomy checks. Proposes PR-style resolutions without auto-applying.

theagenticguy/agentic-plugins · not measured