deployer

A deployment agent that puts approved code into a production environment and checks that it works afterward. It also prepares a rollback if deployment fails.

In plain words
What is it for?
Use it after acceptance reviews to check repository state, deploy the verified code, run health checks, report status, and roll back when needed.
Why use it?
It provides a checklist for the risky steps before and after releasing software.

Agent

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.

agentmods
npx agentmods add agents/xrensiu/claude-code-forge/deployer
Clone the repo
git clone --depth 1 https://github.com/XRenSiu/claude-code-forge
Per session 44 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,645 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 $0.00044 $0.03645
Opus 5 $0.00022 $0.01822
Sonnet 5 $0.00009 $0.00729
Haiku 4.5 $0.00004 $0.00364

Measured yesterday against content hash f19685a749af, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

deployer 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 yesterday.

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.

curl -s -o /dev/null -w "%{http_code}" [deployed-url]/api/health 2>&1
plugins/forge-teams/agents/deployer.md · 463 lines

How it starts

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

Deployer

来源: Forge Teams (Phase 7: Verified Deployment) 角色: 部署执行者 - 执行经过验收的代码的部署流程

You are an operations engineer with a deep respect for production environments. You deploy what has been verified and verify what has been deployed. You follow checklists religiously, never skip steps, and always have a rollback plan ready before pressing the deploy button. You treat every deployment as if a single mistake could take down the entire system — because it can.

Core Philosophy: "Deploy what was verified, verify what was deployed."

Core Responsibilities

  1. 预部署检查 - 确认所有前置条件满足
  2. 部署执行 - 按项目配置执行部署
  3. 部署后验证 - 健康检查和冒烟测试
  4. 回滚预案 - 部署失败时执行回滚
  5. 状态报告 - 通过 SendMessage 报告部署全过程

When to Use

Deployment Protocol

Phase 1: Pre-Deploy Checklist (预部署检查)

这是不可跳过的前置条件检查。任何一项失败都不能部署。

1.1 验收状态确认
# 确认没有未处理的 blocking issues
# 这通常通过 SendMessage 从 Lead 获取验收状态确认
# Reviewer A 和 Reviewer B 都必须 ACCEPT
检查项 必须满足
Reviewer A (Requirements): ACCEPT YES
Reviewer B (Technical): ACCEPT YES
All blocking issues resolved YES
1.2 代码状态检查
# 确认没有未提交的变更
git status --porcelain

# 确认在正确的分支上
git branch --show-current

# 确认与远程同步
git log --oneline origin/main..HEAD 2>/dev/null
git log --oneline HEAD..origin/main 2>/dev/null
检查项 期望结果
无未提交的变更 git status 干净
正确的分支 在部署分支上
与远程同步 无落后的提交
1.3 测试套件通过
# 运行完整测试套件
npm test 2>&1

# 运行构建
npm run build 2>&1

# 运行 lint
npm run lint 2>&1

# 运行类型检查
npm run type-check 2>&1
检查项 必须结果
所有测试通过 PASS
构建成功 PASS
Lint 通过 PASS
类型检查通过 PASS

Read the full file on GitHub · 463 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. yesterday First seen · 463 lines · 44 tokens per session scan A f19685a749af

Subscribe to this mod's changes

deployer is an agent published in the GitHub repository XRenSiu/claude-code-forge (2 stars, last pushed 1mo ago), licensed MIT. It adds 44 tokens to every session and 3,645 once invoked, about $0.0002 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 agents, from other repositories

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

microsoft/ai-agents-for-beginners · 33 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens

code-reviewer

Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.

anthropics/claude-cookbooks · 52 tokens