deploy

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

A deployment command for Dapr applications, where Dapr is software that helps services communicate and use shared building blocks. It deploys to Azure Container Apps or Azure Kubernetes Service after checking the Azure, Dapr, container, and resource setup.

In plain words
What is it for?
Use it to choose an Azure target, validate a Dapr application and its container image, configure Dapr components, and deploy the application.
Why use it?
It gathers deployment checks and Azure commands in one guided operation, reducing missed configuration steps.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is --yaml ./components/statestore.yaml.

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

Good fit Use it to choose an Azure target, validate a Dapr application and its container image, configure Dapr components, and deploy the application.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Sahib-Sawhney-WH/sahibs-claude-plugin-marketplace
agentmods
npx agentmods add commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/deploy

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 deploy

README.md
[![agentmods](https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/deploy/github.svg)](https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/deploy)
Your own site
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/deploy"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/deploy/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 deploy

Your own site · 80×15
<a href="https://agentmods.dev/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/deploy"><img src="https://agentmods.dev/badge/commands/sahib-sawhney-wh/sahibs-claude-plugin-marketplace/deploy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 875 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.00014 $0.00875
Opus 5 $0.00007 $0.00438
Sonnet 5 $0.00003 $0.00175
Haiku 4.5 $0.00001 $0.00088

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

Security

Grade A, and why

deploy 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/deploy.md · 138 lines

How it starts

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

DAPR Azure Deployment

Deploy your DAPR application to Azure with production-ready configuration.

Behavior

When the user runs /dapr:deploy:

  1. Select Deployment Target

    • Azure Container Apps (recommended for most cases)
    • Azure Kubernetes Service (for advanced control)
    • Ask user preference if $ARGUMENTS doesn't specify
  2. Pre-Deployment Validation

    • Verify Azure CLI is installed and logged in
    • Check DAPR configuration is valid
    • Validate Docker/container image exists
    • Ensure required Azure resources exist
  3. Container Apps Deployment

    # Create environment if needed
    az containerapp env create \
      --name {env-name} \
      --resource-group {rg} \
      --dapr-instrumentation-key {key}
    
    # Deploy DAPR components
    az containerapp env dapr-component set \
      --name {env-name} \
      --resource-group {rg} \
      --dapr-component-name statestore \
      --yaml ./components/statestore.yaml
    
    # Deploy application
    az containerapp create \
      --name {app-name} \
      --resource-group {rg} \
      --environment {env-name} \
      --image {image} \
      --dapr-enabled \
      --dapr-app-id {app-id} \
      --dapr-app-port {port}
    
  4. AKS Deployment

    # Ensure DAPR is installed on cluster
    dapr init -k
    
    # Apply components
    kubectl apply -f ./components/
    
    # Deploy application
    kubectl apply -f ./k8s/deployment.yaml
    
  5. Post-Deployment

    • Verify deployment succeeded
    • Check DAPR sidecar is running
    • Test health endpoint
    • Display access URL

Arguments

  • $ARGUMENTS - Target and options:
    • aca or container-apps - Deploy to Azure Container Apps
    • aks or kubernetes - Deploy to AKS
    • --rg {name} - Resource group name
    • --env {name} - Container Apps environment name

Examples

/dapr:deploy aca
/dapr:deploy aks --rg myapp-rg
/dapr:deploy container-apps --env production-env

Prerequisites Checked

  • Azure CLI installed (az --version)
  • Logged into Azure (az account show)
  • Docker image built and pushed to registry
  • Azure resources exist (resource group, ACR, etc.)
  • DAPR components configured

Read the full file on GitHub · 138 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 · 138 lines · 14 tokens per session scan A 8c125b0fefd4

Subscribe to this mod's changes

deploy 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 14 tokens to every session and 875 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.