sdlc-operate

sdlc-operate is a command for coding agents from saitarrun/Devforge-ai. It costs 32 tokens per session (962 once invoked), scanned A, original, Apache-2.0.

A command for the operate phase of a software delivery process. It defines reliability targets, monitoring, alerts, runbooks, and—when needed—data pipelines for a deployed system.

In plain words
What is it for?
Use it to read the ship handoff, define availability, latency, and error-rate targets, set up operational metrics and alerts, and write responses for common incidents such as high latency or CPU spikes.
Why use it?
It turns a shipped application into a system that can be watched and maintained in production.

Command

Part of the devforge-ai plugin — 28 skills, 17 commands, 13 agents shipped together

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 commands/saitarrun/devforge-ai/sdlc-operate
Clone the repo
git clone --depth 1 https://github.com/saitarrun/Devforge-ai

Or install devforge-ai, the plugin that ships this one along with the rest of its 28 skills, 17 commands, 13 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 sdlc-operate

README.md
[![agentmods](https://agentmods.dev/badge/commands/saitarrun/devforge-ai/sdlc-operate.svg)](https://agentmods.dev/commands/saitarrun/devforge-ai/sdlc-operate)
Your own site
<a href="https://agentmods.dev/commands/saitarrun/devforge-ai/sdlc-operate"><img src="https://agentmods.dev/badge/commands/saitarrun/devforge-ai/sdlc-operate.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 962 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00032 $0.00962
Opus 5 $0.00016 $0.00481
Sonnet 5 $0.00006 $0.00192
Haiku 4.5 $0.00003 $0.00096

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

Security

Grade A, and why

sdlc-operate 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 3d 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.

commands/sdlc-operate.md · 128 lines

How it starts

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

/sdlc-operate — Phase 5: Operate

Define SLOs, monitoring, runbooks, and (when applicable) data pipelines for the deployed system.

Execution

STEP 1: Read Ship Handoff + Scope

  1. Read ./projects/<feature-name>/handoffs/ship-handoff.md — clean context from Ship phase
  2. Read ./projects/<feature-name>/scope.json — check has_data_pipeline and has_auth flags

STEP 2: Spawn sre-engineer (always)

Spawn: Agent({
  subagent_type: "fork",
  name: "sre-engineer",
  description: "SRE Engineer (Operate phase) — SLOs, monitoring, runbooks, security ops",
  prompt: "[ship-handoff.md + scope.json]

  Using the shipped system context:

  1. Define SLOs per service:
     - Availability SLO (e.g., 99.5%)
     - Latency SLO (P99 < 500ms)
     - Error rate SLO (< 0.1%)
     - Calculate error budget for each

  2. Monitoring & Alerting:
     - Key metrics per service (request rate, error rate, latency, saturation)
     - Alert thresholds matching error budget burn rate
     - Dashboard definition (Grafana/CloudWatch)
     - Notification channels (PagerDuty, Slack)

  3. On-Call Runbooks (top 5 scenarios):
     - CPU spike
     - High latency
     - API error spike
     - Database connection exhaustion
     - Memory leak / OOM

  4. If scope.json has_auth is true:
     - Security event monitoring (failed logins, privilege escalation)
     - SOC alert rules + incident response playbook
     - Compliance audit log verification

  5. Write ./projects/<feature-name>/docs/06-slo.md

  Output: docs/06-slo.md"
})

Wait for sre-engineer to complete.

STEP 3: Spawn data-engineer (only when has_data_pipeline: true)

Check scope.json. If has_data_pipeline is false, skip this step entirely.

Spawn: Agent({
  subagent_type: "fork",
  name: "data-engineer",
  description: "Data Engineer (Operate phase) — ETL pipelines + analytics",
  prompt: "[ship-handoff.md + scope.json]

  Using the shipped system context:

  1. Design ETL/ELT pipelines:
     - Extract from production databases
     - Transform (clean, aggregate, normalise)
     - Load to data warehouse / analytics DB

  2. Data schema for analytics:
     - Fact tables (user_logins, orders, events)
     - Dimension tables (users, products, time)
     - Slowly Changing Dimensions

  3. Scheduling + orchestration:
     - Daily / hourly / real-time pipeline frequency
     - Error handling + retries
     - Pipeline health monitoring

  4. Data quality checks:
     - Row count validation
     - Null value checks
     - Freshness SLA (data must be no older than N hours)
     - Consistency checks (dimension-fact joins)

  5. Write ./projects/<feature-name>/docs/06-data-pipelines.md

  Output: docs/06-data-pipelines.md"
})

Read the full file on GitHub · 128 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. 3d ago First seen · 128 lines · 32 tokens per session scan A a5567abc9ddb

Subscribe to this mod's changes

sdlc-operate is a command published in the GitHub repository saitarrun/Devforge-ai (5 stars, last pushed 20d ago), licensed Apache-2.0. It adds 32 tokens to every session and 962 once invoked, about $0.0002 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.