deploy

deploy is a skill for Claude Code from vasuag09/harness-claude. It costs 112 tokens per session (1,601 once invoked), scanned A, original, MIT.

A guarded release step that sends an already prepared code change to a running environment using the project's existing deployment method. It then checks the deployed result and keeps a rollback path.

In plain words
What is it for?
Use it after a ship step to detect the project's deployment process, prepare the release, deploy it after approval, run smoke tests, and recover if needed.
Why use it?
It reduces the risk of deploying to the wrong place or firing an unreviewed release by requiring planning, pre-checks, and an explicit confirmation before deployment or rollback.

Skill for Claude Code

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

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is node scripts/eval/continuous.js --cmd 'curl -fsS https://<deployed-url>/health'.

Part of the harness-claude plugin — 34 skills, 8 agents, 6 hooks, 3 MCP servers shipped together

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add vasuag09/harness-claude
Claude Code
/plugin install harness-claude

Made for: Claude Code.

Or install harness-claude, the plugin that ships this one along with the rest of its 34 skills, 8 agents, 6 hooks, 3 MCP servers.

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/skills/vasuag09/harness-claude/deploy.svg)](https://agentmods.dev/skills/vasuag09/harness-claude/deploy)
Your own site
<a href="https://agentmods.dev/skills/vasuag09/harness-claude/deploy"><img src="https://agentmods.dev/badge/skills/vasuag09/harness-claude/deploy.svg" alt="Measured on agentmods" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,601 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00112 $0.01601
Opus 5 $0.00056 $0.00800
Sonnet 5 $0.00022 $0.00320
Haiku 4.5 $0.00011 $0.00160

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

Security

Grade A, and why

deploy scanned grade A with 1 finding 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

node scripts/eval/continuous.js --cmd 'curl -fsS https://<deployed-url>/health'
skills/deploy/SKILL.md · 84 lines

How it starts

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

/deploy — detect, plan, arm, deploy, smoke, guard

Goal: take a change that has passed the harness's gates and /harness-claude:ship has prepared, and drive it out to a running environment — using whatever deploy mechanism the project already has — with the same boundary discipline the rest of the harness applies to outward actions. The pipeline's front door stops at the repo edge; /harness-claude:deploy is the step past it. The discipline is arm-to-fire: plan the deploy and run pre-checks, then stop and wait for an explicit arm before anything leaves your machine.

Opt-in. Invoked explicitly; nothing auto-deploys. Git boundary: /harness-claude:deploy never commits, pushes, or branches. Arm-to-fire boundary: it performs no real outward action (deploy or rollback) until you type the explicit arm signal — planning and smoke-checks are safe; firing is not, and is never implied by "looks good."

When /harness-claude:deploy, when /harness-claude:ship

  • /harness-claude:ship prepares a clean commit / PR summary and stops at the repo boundary. It is the last in-repo step.
  • /harness-claude:deploy is the first out-of-repo step — it pushes an already-shipped change to a live environment and verifies it there. Run ship first; deploy does not commit your work.

How it works

detect mechanism → name rollback path → pre-deploy smoke → ARM-TO-FIRE HALT
  → (on `arm deploy`) deploy in tmux → smoke the DEPLOYED artifact → guarded rollback on failure

Do this

  1. Detect the deploy mechanism — never prescribe one. Find the project's existing mechanism, in priority order: vercel.json / Vercel project → Dockerfile (+ registry/compose) → a Makefile deploy/release target → CI config (.github/workflows, etc.) → package.json scripts.deploy → other declared scripts. When a platform skill matches what you detect, delegate to it rather than reinventing (e.g. vercel:deploy / vercel:vercel-cli when a Vercel project is present). If no mechanism is found, say so and stop — do not invent a deploy command. (AC-D1)
  2. Name the rollback path up front. Before anything else, state the concrete rollback for the detected mechanism — e.g. vercel rollback, redeploy the previous image tag, re-run CI on the previous SHA. Surface it in the plan. If no rollback path is identifiable, say so explicitly so the risk is visible before the HALT. (AC-D2)
  3. Run pre-deploy smoke checks. Confirm the change is actually deployable: repo green (/harness-claude:health), build succeeds, working tree clean. Surface any failure now, not after firing. If the build breaks, delegate the harness-claude:build-error-resolver agent to get it green.
  4. HALT — arm-to-fire. Show the deploy plan: detected mechanism, exact command, target environment, and the rollback path from step 2. Then STOP. Do not proceed until the user types arm deploy. "The plan looks fine" is not an arm; only the explicit signal fires. (AC-D4)
  5. On arm deploy: deploy in tmux. Run the deploy command inside a tmux session (tooling default — long deploys survive and stream). If a build break appears mid-deploy, delegate the harness-claude:build-error-resolver agent; re-arm before re-firing. (AC-D6)
  6. Smoke-test the DEPLOYED artifact, then guard. Verify the live target, not just local tests — reuse /harness-claude:health's runner against the deployed URL:
    node scripts/eval/continuous.js --cmd 'curl -fsS https://<deployed-url>/health'
    
    (or the project's smoke suite pointed at the deployed target). (AC-D3) On failure: surface the rollback command from step 2 and execute it only if the user types arm rollback; otherwise HALT with the rollback ready. Never leave a known-broken deploy silently in place. (AC-D5)

Read the full file on GitHub · 84 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. 5d ago First seen · 84 lines · 112 tokens per session scan A f468c3712f7b

Subscribe to this mod's changes

deploy is a skill published in the GitHub repository vasuag09/harness-claude (2 stars, last pushed 1mo ago), licensed MIT. It adds 112 tokens to every session and 1,601 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

deploy-checklist

Pre-deployment verification checklist for Docker Swarm deployments to Azure. Use before deploying to production. Trigger words include deploy, release, production, go live.

johanolofsson72/Claude · 35 tokens

cost-optimization

Optimize cloud costs across AWS, Azure, GCP, and OCI through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing cost governance policies.

wshobson/agents · 48 tokens

istio-traffic-management

Configure Istio traffic management including routing, load balancing, circuit breakers, and canary deployments. Use when implementing service mesh traffic policies, progressive delivery, or resilience patterns.

wshobson/agents · 40 tokens

linkerd-patterns

Implement Linkerd service mesh patterns for lightweight, security-focused service mesh deployments. Use when setting up Linkerd, configuring traffic policies, or implementing zero-trust networking with minimal overhead.

wshobson/agents · 41 tokens

azure-resource-manager-durabletask-dotnet

Azure Resource Manager SDK for Durable Task Scheduler in .NET. Use for MANAGEMENT PLANE operations: creating/managing Durable Task Schedulers, Task Hubs, and retention policies via Azure Resource Manager. Triggers: "Durable Task Scheduler", "create scheduler", "task hub", "DurableTaskSchedulerResource", "provision…

microsoft/skills · 84 tokens

azure-eventhub-dotnet

Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: "Event Hubs", "event streaming"…

microsoft/skills · 94 tokens