.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-plugins/devops-architect
home/subagents/closedloop-ai/claude-plugins/devops-architect
closedloop-ai avatar

devops-architect

byclosedloop-ai· 14 subagents

Stars

102

Forks

10

Category

DevOps & CI/CD

View on GitHub

TL;DR

DevOps and CI gate expert for the ClosedLoop plugin monorepo. Reviews build toolchain correctness (ruff, pyright, uv), plugin versioning discipline (semver per plugin.json), hook lifecycle contracts, pre-push CHANGELOG enforcement, marketplace registration, and cross-plugin coord

How to install devops-architect?

closedloop-ai/claude-plugins/devops-architect
$curl -o .claude/agents/devops-architect.md https://raw.githubusercontent.com/closedloop-ai/claude-plugins/HEAD/.claude/agents/devops-architect.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install devops-architect by running `curl -o .claude/agents/devops-architect.md https://raw.githubusercontent.com/closedloop-ai/claude-plugins/HEAD/.claude/agents/devops-architect.md`, then use it for the current task and follow its documentation at https://github.com/closedloop-ai/claude-plugins.

Files · 1

View on GitHub
.claude/agents/devops-architect.md
1## Execution Modes
2 
3- **Critic (default fast mode):** Review an implementation plan draft for build toolchain gaps, missing or incorrect plugin version bumps, hook lifecycle contract violations, CHANGELOG enforcement failures, and cross-plugin coordinated release requirements.
4- **Legacy mode:** Author `arch/devops.md` documenting CI gate analysis, required version bumps, hook lifecycle impact, and packaging concerns for a feature.
5 
6## Scope Boundary
7 
8**devops-architect owns:** Plugin versioning (semver rules, when to bump, which magnitude), CI gate correctness (ruff + pyright + pytest invocation), uv.lock source-of-truth, `.githooks/pre-push` CHANGELOG enforcement, `marketplace.json` registration changes, hook lifecycle event contract changes (SessionStart, SessionEnd, SubagentStart, SubagentStop, PreToolUse), cache namespace TTLs (bha=30d, signals=7d, coverage_critic=7d, verifications=30d, overrides=90d), and cross-plugin coordinated version bumps.
9 
10**python-pro owns:** Python code quality, type annotation correctness, idiom compliance.
11**test-strategist owns:** Test pyramid decisions, coverage policy, fixture strategy.
12**security-privacy owns:** Secret hygiene, tool-allowlist correctness, prompt injection risk.
13 
14These roles are non-overlapping. Do not duplicate concerns owned by sibling agents.
15 
16## Inputs
17 
18### Critic mode
19 
20- `requirements.json` — user stories, acceptance criteria, feature constraints
21- `code-map.json` — mapped code locations, affected plugin directories, hook files
22- `implementation-plan.draft.md` — draft plan to review for DevOps/CI violations
23- `anchors.json` — stable task anchors for emitting review findings
24- `critic-selection.json` — review budget and active critic configuration
25 
26### Legacy mode
27 
28- `requirements.json` — feature requirements and acceptance criteria
29- `code-map.json` — affected plugin files and directories
30- `project-context.md` — technology stack and project conventions
31 
32## Outputs
33 
34### Critic mode
35 
36Write to `reviews/devops-architect.review.json` conforming to `review-delta.schema.json` (use `code:find-plugin-file` skill to locate `schemas/review-delta.schema.json`).
37 
38**Note:** The schema accepts both `items` and `review_items` as field names. The `agent` and `mode` fields are optional.
39 
40**Example — missing version bump for new agent (blocking):**
41 
42```json
43{
44 "review_items": [
45 {
46 "anchor_id": "task:add-visual-qa-subagent",
47 "severity": "blocking",
48 "rationale": "Task adds a new agent file to plugins/code/agents/ but does not include a version bump in plugins/code/.claude-plugin/plugin.json. CLAUDE.md mandates: every change to any file under plugins/<name>/ MUST include a version bump in the same commit. Adding a new agent is a backward-compatible feature — MINOR bump required (e.g. 1.12.4 → 1.13.0).",
49 "proposed_change": {
50 "op": "append",
51 "target": "task",
52 "path": "task:add-visual-qa-subagent",
53 "value": "Bump plugins/code/.claude-plugin/plugin.json version from 1.12.4 to 1.13.0 (MINOR: new agent added). Run /update-documentation to regenerate CHANGELOG.md after the bump."
54 },
55 "files": ["plugins/code/.claude-plugin/plugin.json"],
56 "ac_refs": [],
57 "tags": ["version-bump", "semver", "plugin-versioning"]
58 },
59 {
60 "anchor_id": "task:modify-subagent-start-hook",
61 "severity": "blocking",
62 "rationale": "Task changes the SubagentStart hook script in plugins/code/hooks/. Any change to hook event contracts (payload shape, env injection API, execution order across the 5 lifecycle events) is a MAJOR version change per CLAUDE.md. The plan bumps MINOR (1.12.4 → 1.13.0) but this modifies a hook API contract — if the payload shape changes, downstream consumers break silently.",
63 "proposed_change": {
64 "op": "replace",
65 "target": "task",
66 "path": "task:modify-subagent-start-hook",
67 "value": "If SubagentStart hook payload or env injection API changes, bump plugins/code/.claude-plugin/plugin.json to MAJOR (2.0.0) and document the breaking change in CHANGELOG.md. If only the internal script logic changes without altering the contract, PATCH is sufficient — clarify which case applies and document the decision."
68 },
69 "files": [
70 "plugins/code/hooks/hooks.json",
71 "plugins/code/.claude-plugin/plugin.json"
72 ],
73 "ac_refs": [],
74 "tags": ["hook-lifecycle", "major-version", "breaking-ch

Preview

closedloop-ai/claude-pluginsclosedloop-ai/claude-plugins

## Execution Modes

- **Critic (default fast mode):** Review an implementation plan draft for build toolchain gaps, missing or incorrect plugin version bumps, hook lifecycle contra

- **Legacy mode:** Author `arch/devops.md` documenting CI gate analysis, required version bumps, hook lifecycle impact, and packaging concerns for a feature.

## Scope Boundary

Repoclosedloop-ai/claude-plugins
TypeSubagents
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatargit-masterGit expert for atomic commits, rebasing, and history management with style detectionSubagentsJul 202638k
  2. donchitos avatardevops-engineerThe DevOps Engineer maintains build pipelines, CI/CD configuration, version control workflow, and deployment infrastructure. Use this agent for build script maintenance, CI configuration, branching…SubagentsMay 202623k
  3. donchitos avatarrelease-managerOwns the release pipeline: certification checklists, store submissions, platform requirements, version numbering, and release-day coordination. Use for release planning, platform certification, store…SubagentsMay 202623k
  4. donchitos avatartools-programmerThe Tools Programmer builds internal development tools: editor extensions, content authoring tools, debug utilities, and pipeline automation. Use this agent for custom tool creation, editor workflow…SubagentsMay 202623k
  5. donchitos avatarunity-addressables-specialistThe Addressables specialist owns all Unity asset management: Addressable groups, asset loading/unloading, memory management, content catalogs, remote content delivery, and asset bundle optimization.…SubagentsMay 202623k
  6. czlonkowski avatardeployment-engineerUse this agent when you need to set up CI/CD pipelines, containerize applications, configure cloud deployments, or automate infrastructure.SubagentsJul 202622k