operations
Operations agent for DevOps, release management, and technical writing. Auto-detects the operations role (DevOps, Release Manager, Technical Writer) and spawns a role-scoped sub-agent with only the relevant reference files. Triggers on phrases like "CI/CD", "deployment", "Kubernetes", "monitoring", "release plan", "rollback", "feature flag", "SemVer", "API docs", "runbook", "release notes", "Diataxis". Full per-role triggers in references/roles/.
What this skill does
# Operations Agent
## Design Principle: Role Context Isolation
This skill keeps operations-specific knowledge **out of the main context window**. When an operations task is requested, the relevant role is detected, only the corresponding reference file(s) are loaded, and a sub-agent is spawned with that isolated context. The main context receives only the finished operations artifact.
Unlike simple single-reference skills, operations tasks frequently span concerns -- a release may need Release Manager planning and Technical Writer release notes simultaneously. This skill follows the **godot pattern**: multiple overlapping references loaded into a single sub-agent when the task warrants it.
---
## Phase 1: Role Detection
Detect the relevant operations role(s) from (in priority order):
1. **Explicit role mention** -- "as a DevOps engineer", "release manager perspective", "technical writer"
2. **Task type signals** -- see role manifests below
3. **Domain signals** -- infrastructure/pipeline keywords route to DevOps; release/versioning keywords route to Release Manager; documentation/guide keywords route to Technical Writer
4. **Scope signals** -- build/deploy automation --> DevOps; release coordination/planning --> Release Manager; content creation/documentation --> Technical Writer
**If ambiguous, ask before proceeding.** Do not assume.
**Declare before every task:**
> `Role: [ROLE] | Task: [TYPE] | References: [list of reference files]`
### Role Routing Table
Load only the matched role manifest. Each manifest contains the full task-type routing table, instructions, and guardrails for that role.
| Role | Manifest | Detection Cue |
|------|----------|---------------|
| DevOps | `references/roles/devops.md` | CI/CD / deployment / infra / monitoring / incident / capacity |
| Release Manager | `references/roles/release-manager.md` | release plan / version / rollback / feature flag / go-no-go |
| Technical Writer | `references/roles/technical-writer.md` | API docs / user guide / runbook / release notes / docs plan |
For cross-role tasks, see `references/contracts/cross-role-tasks.md`.
---
## Phase 2: Sub-Agent Invocation
**For every operations task, follow these steps exactly -- do not skip:**
1. Detect the role(s) and task type (Phase 1)
2. Read **only** the relevant reference file(s) from the role manifest -- do NOT read all reference files
3. Spawn a sub-agent using the `Agent` tool with the prompt template below
4. Return the sub-agent's output directly to the user
**Do not inline operations knowledge into the main context.** The sub-agent is the execution boundary for all operations-specific reasoning.
### Sub-Agent Prompt Template
```
You are an expert [ROLE]. Apply these operations principles and patterns to everything you produce:
---
[PASTE FULL CONTENTS OF EACH RELEVANT REFERENCE FILE -- separated by --- if multiple]
---
## Task
[TASK TYPE]: [DESCRIBE WHAT THE USER WANTS]
## Context
[Include any of the following that are relevant:]
- Existing system or infrastructure description
- Constraints (budget, team size, compliance, SLAs)
- Technology stack (cloud provider, CI tool, container orchestrator)
- Current pain points or incidents
- Release schedule and stakeholder requirements
- Target audience for documentation
- Related architecture decisions or PRD output
## Output Requirements
Produce:
1. Artifacts appropriate to the task type (see output contract below)
2. Explicit trade-off analysis -- what alternatives were considered and why they were rejected
3. Assumptions stated clearly
4. Risks and mitigations
5. Next steps / open questions
If the task requires modifying existing files, use the Read, Edit, Write, Glob, and Grep tools to work directly in the codebase.
```
---
## Output Contracts
Each role uses a distinct contract; load only the matched role's contract.
| Role | Contract |
|------|----------|
| DevOps | `references/contracts/devops-output.md` |
| Release Manager | `references/contracts/release-manager-output.md` |
| Technical Writer | `references/contracts/technical-writer-output.md` |
---
## Sub-Agent Interface (Agentic Flow Integration)
For orchestration with other delivery-team skills, the operations skill accepts and produces structured contracts.
### Input Contract
```json
{
"task_type": "ci-cd-pipeline | deployment-strategy | infrastructure | monitoring | environment-management | incident-ops | capacity-planning | release-plan | versioning-strategy | rollback-procedure | feature-flags | go-no-go | release-communication | api-docs | user-guide | runbook | release-notes | knowledge-base | tutorial | documentation-plan",
"role": "devops | release-manager | technical-writer",
"context": {
"system": "string -- system or service name",
"existing_setup": "string (optional) -- current state description",
"constraints": ["array (optional) -- technical, business, or compliance constraints"],
"technology_stack": ["array (optional) -- current or target tech stack"],
"audience": "string (optional) -- target audience for documentation",
"release_version": "string (optional) -- version being released",
"timeline": "string (optional) -- deadlines or cadence requirements",
"prd_reference": "string (optional) -- output from Product-Owner skill",
"architecture_reference": "string (optional) -- output from Architect skill"
},
"input": "string -- the raw request or system description"
}
```
### Output Contract
```json
{
"task_type": "string",
"role": "string",
"artifact_title": "string",
"artifact": "string (markdown)",
"trade_offs": ["array -- key trade-off decisions made"],
"assumptions": ["array"],
"risks": ["array"],
"open_questions": ["array"],
"operational_metrics": {
"slo_targets": ["array (optional) -- SLO definitions"],
"alert_rules": ["array (optional) -- alerting criteria"],
"review_cadence": "string (optional) -- documentation review schedule"
},
"downstream_ready": true,
"downstream_notes": "string -- what other agents or teams need to know"
}
```
---
## User Commands
| Command | Action |
|---|---|
| `role <name>` | Override detected role (e.g., `role devops`, `role release-manager`, `role technical-writer`) |
| `pipeline` | Design or review a CI/CD pipeline |
| `deploy` | Plan a deployment strategy |
| `infra` | Design infrastructure |
| `monitor` | Design observability and alerting |
| `release` | Create a release plan |
| `rollback` | Design rollback procedures |
| `flags` | Design feature flag strategy |
| `docs` | Write documentation |
| `runbook` | Write an operational runbook |
| `api-docs` | Write API documentation |
| `notes` | Write release notes |
| `accept` | Finalize current artifact |
---
## References
### Role Manifests
- `references/roles/devops.md` -- DevOps task routing, instructions, guardrails
- `references/roles/release-manager.md` -- Release Manager task routing, instructions, guardrails
- `references/roles/technical-writer.md` -- Technical Writer task routing, instructions, guardrails
### Output Contracts
- `references/contracts/devops-output.md`, `release-manager-output.md`, `technical-writer-output.md`
- `references/contracts/cross-role-tasks.md` -- Multi-role combination patterns
### Domain References (loaded per matched task type)
#### DevOps
- `references/ci-cd-patterns.md` -- CI/CD pipeline patterns: stages, branching strategies, artifact management, caching, pipeline-as-code
- `references/deployment-strategies.md` -- Deployment strategies: blue-green, canary, rolling, health checks, zero-downtime, database migrations
- `references/infrastructure-patterns.md` -- Infrastructure patterns: IaC, Terraform, Kubernetes, networking, environment parity, cost optimization
- `references/observability.md` -- Observability: logs, metrics, traces, SLI/SLO/SLA, alerting, dashboards, incident management, postmortems
#### Release Manager
- `references/release-planning.md` -- Release plannRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.