cicd

cicd is a command for Claude Code from Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace. It costs 17 tokens per session (634 once invoked), scanned A, original, MIT.

A command that creates continuous integration and delivery pipelines for Dapr applications. These pipelines automatically check, test, build, and deploy code using GitHub Actions or Azure DevOps.

In plain words
What is it for?
Use it to generate pipelines for Azure Container Apps or Azure Kubernetes Service. It can create files for testing, Dapr configuration validation, security scanning, container builds, and deployments.
Why use it?
It removes the need to assemble build and deployment workflows by hand. It also includes checks, health checks, production deployment, and rollback steps in the generated setup.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the dapr plugin — 9 skills, 14 commands, 8 agents shipped together

Good fit Use it to generate pipelines for Azure Container Apps or Azure Kubernetes Service. It can create files for testing, Dapr configuration validation, security scanning, container builds, and deployments.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/cicd
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.

Clone the repo
git clone --depth 1 https://github.com/Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace

Made for: Claude Code.

Or install dapr, the plugin that ships this one along with the rest of its 9 skills, 14 commands, 8 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cicd

README.md
[![agentmods](https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/cicd/github.svg)](https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/cicd)
Your own site
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/cicd"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/cicd/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cicd

Your own site · 80×15
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/cicd"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/cicd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 634 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.00634
Opus 5 $0.00009 $0.00317
Sonnet 5 $0.00003 $0.00127
Haiku 4.5 $0.00002 $0.00063

Measured 12d ago against content hash 753aeeed1903, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

cicd 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 12d 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.

plugins/dapr/commands/cicd.md · 110 lines

How it starts

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

DAPR CI/CD Generator

Generate production-ready CI/CD pipelines for your DAPR application.

Behavior

When the user runs /dapr:cicd:

  1. Detect Project Structure

    • Identify main application file
    • Find test directories
    • Locate component YAML files
    • Detect Dockerfile
  2. Generate CI Pipeline

    • Linting and type checking
    • Unit tests with coverage
    • DAPR configuration validation
    • Security scanning
    • Container build
  3. Generate CD Pipeline

    • Staging deployment
    • Health checks
    • Production deployment (blue-green)
    • Rollback on failure

Arguments

Argument Description
github Generate GitHub Actions workflows (default)
azure-devops Generate Azure DevOps pipelines
--target aca Target Azure Container Apps
--target aks Target Azure Kubernetes Service

Examples

GitHub Actions for Container Apps

/dapr:cicd github --target aca

Azure DevOps for AKS

/dapr:cicd azure-devops --target aks

Generated Files

GitHub Actions

.github/
└── workflows/
    ├── ci.yml           # Build, test, validate
    ├── cd-aca.yml       # Deploy to Container Apps
    └── cd-aks.yml       # Deploy to AKS

Azure DevOps

azure-pipelines/
├── azure-pipelines.yml  # Main pipeline
├── templates/
│   ├── build.yml        # Build template
│   ├── test.yml         # Test template
│   └── deploy.yml       # Deploy template
└── variables/
    ├── staging.yml      # Staging variables
    └── production.yml   # Production variables

Pipeline Features

CI Pipeline

  • Ruff linting and MyPy type checking
  • Unit tests with pytest and coverage
  • DAPR configuration validation
  • Security scanning with Trivy
  • Container image build and push

CD Pipeline

  • Environment-based deployments
  • Blue-green deployment strategy
  • Health check verification
  • Automatic rollback on failure
  • DAPR component updates

Required Secrets

GitHub Actions

Secret Description
AZURE_CREDENTIALS Azure service principal JSON
AZURE_RESOURCE_GROUP Resource group name
AZURE_CONTAINER_REGISTRY ACR name
CONTAINER_APP_NAME Container Apps name

Read the full file on GitHub · 110 lines

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. 12d ago First seen · 110 lines · 17 tokens per session scan A 753aeeed1903

Subscribe to this mod's changes

cicd is a command published in the GitHub repository Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace (4 stars, last pushed 8mo ago), licensed MIT. It adds 17 tokens to every session and 634 once invoked, about $0.0001 per session on Opus 5. 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-31.