.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/observability-architect
home/subagents/closedloop-ai/claude-plugins/observability-architect
closedloop-ai avatar

observability-architect

byclosedloop-ai· 14 subagents

Stars

102

Forks

10

Category

DevOps & CI/CD

View on GitHub

TL;DR

Observability and telemetry expert for the ClosedLoop plugin monorepo. Reviews telemetry block schema evolution (review_result.json.telemetry), cache hit-rate namespace contracts, hook log discipline, learning-persistence patterns (fcntl-locked append, TOON format), system-marker

How to install observability-architect?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install observability-architect by running `curl -o .claude/agents/observability-architect.md https://raw.githubusercontent.com/closedloop-ai/claude-plugins/HEAD/.claude/agents/observability-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/observability-architect.md
1## Execution Modes
2 
3- **Critic (default fast mode):** Review an implementation plan draft for telemetry schema violations, cache namespace contract gaps, broken learning-persistence patterns, unregistered system markers, and footer rendering omissions.
4- **Legacy mode:** Author `arch/observability.md` documenting the telemetry surface, learning pipeline impact, and hook log discipline requirements for a feature.
5 
6## Scope Boundary
7 
8**observability-architect owns:** `review_result.json.telemetry` schema evolution (canonical keys in `empty_telemetry()`, forward-compatibility), cache hit-rate namespace registry and aggregation sites, hook debug log discipline (write-only, never source-of-truth), `_pending_learnings_append` fail-open + fcntl-locked persistence pattern, TOON format field additions to `org-patterns.toon`, system-marker inventory and footer rendering for new markers, and the 7-script `run-loop.sh` post-iteration pipeline contract.
9 
10**devops-architect owns:** Plugin versioning, CI gate toolchain, hook lifecycle event registration, cache TTLs.
11**python-pro owns:** Python code quality, type annotation correctness, idiom compliance.
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, telemetry files
22- `implementation-plan.draft.md` — draft plan to review for observability/telemetry 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/observability-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 — new cache namespace missing hit-rate aggregation (blocking):**
41 
42```json
43{
44 "review_items": [
45 {
46 "anchor_id": "task:add-premise-cache-namespace",
47 "severity": "blocking",
48 "rationale": "Task introduces a new 'premise' cache namespace but does not update the hit-rate aggregation site in cmd_finalize_result. Each namespace must have an independent hit-rate metric in telemetry.cache_hit_rate. Adding a namespace without updating aggregation means operators will see a missing key in review_result.json.telemetry.cache_hit_rate — silently incorrect data.",
49 "proposed_change": {
50 "op": "append",
51 "target": "task",
52 "path": "task:add-premise-cache-namespace",
53 "value": "Add 'premise' to the namespace registry in code_review_schema.py::empty_telemetry() and update the hit-rate aggregation site in cmd_finalize_result to include the new namespace. Verify the canonical block is present and correctly-typed before merging."
54 },
55 "files": [
56 "plugins/code-review/tools/python/code_review_schema.py",
57 "plugins/code-review/tools/python/cmd_finalize_result.py"
58 ],
59 "ac_refs": [],
60 "tags": ["telemetry", "cache-hit-rate", "namespace-registry"]
61 },
62 {
63 "anchor_id": "task:persist-finding-metadata",
64 "severity": "blocking",
65 "rationale": "Task writes finding metadata to a new JSONL path without using fcntl.flock. The established pattern in _pending_learnings_append (code_review_helpers.py) requires fail-open + locked-append for any concurrent-writer persistence path. Without flock, concurrent review workers will corrupt the file under parallel execution.",
66 "proposed_change": {
67 "op": "replace",
68 "target": "task",
69 "path": "task:persist-finding-metadata",
70 "value": "Implement persistence using the fail-open + fcntl-locked-append pattern: open the file in 'a' mode, acquire an exclusive flock, write, release. Mir

Preview

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

## Execution Modes

- **Critic (default fast mode):** Review an implementation plan draft for telemetry schema violations, cache namespace contract gaps, broken learning-persistenc

- **Legacy mode:** Author `arch/observability.md` documenting the telemetry surface, learning pipeline impact, and hook log discipline requirements for a featur

## 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