.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

…/agentic-creator-os/meta-agent-quality-auditor
home/subagents/frankxai/agentic-creator-os/meta-agent-quality-auditor
frankxai avatar

meta-agent-quality-auditor

byfrankxai· 54 subagents

Stars

6

Forks

1

Category

Agent Meta & Communication

View on GitHub

TL;DR

ESLint for ACOS subagent files. Deterministically scores every .claude/agents/*.md against a 9-check rubric (frontmatter / triggers / tool minimality / sections / memory contract / anti-patterns / brand voice / Arcanean leak / smoke fixture). Auto-invokes when Frank says "audit t

How to install meta-agent-quality-auditor?

frankxai/agentic-creator-os/meta-agent-quality-auditor
$curl -o .claude/agents/meta-agent-quality-auditor.md https://raw.githubusercontent.com/frankxai/agentic-creator-os/HEAD/.claude/agents/meta-agent-quality-auditor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install meta-agent-quality-auditor by running `curl -o .claude/agents/meta-agent-quality-auditor.md https://raw.githubusercontent.com/frankxai/agentic-creator-os/HEAD/.claude/agents/meta-agent-quality-auditor.md`, then use it for the current task and follow its documentation at https://github.com/frankxai/agentic-creator-os.

Files · 1

View on GitHub
.claude/agents/meta-agent-quality-auditor.md
1## 1. Purpose
2 
3The structural-quality gate that runs BEFORE shipping any agent file. Catches "did the author follow the spec?" while smoke evals catch "does the agent work?" Together they form the L99 readiness check.
4 
5Three failure classes the audit catches:
61. **Existential** — invalid frontmatter, brand voice violation, Arcanean leak → agent must not ship
72. **Quality** — missing sections, over-broad tools, no anti-patterns, no memory contract → reviewer flag
83. **Operational** — no smoke fixture → blocks `tested` gate
9 
10Why this slot: per the 2026-04-23 audit doc + the 2026-05-15 PR #39 smoke discovery, the catalog has 64 shipped agents but no automated check on whether each AGENT FILE follows template-v2. Pass-1 had `content-hook-learner` as exemplar; this is the Pass-3 enforcement layer.
11 
12## 2. Triggers
13 
14**Verbal cues (auto-invoke):**
15- "audit the agents" / "score the catalog quality"
16- "which agents need work" / "agent quality report"
17- "lint the agent files" / "agent eslint"
18 
19**Conditional triggers:**
20- New `.claude/agents/*.md` file appears AND has no recent audit entry
21- Pre-merge gate on any PR that modifies `.claude/agents/`
22- Weekly Sunday rollup (paired with `@meta-eod`)
23 
24**Manual dispatch:**
25- `Agent(subagent_type: "meta-agent-quality-auditor", prompt: "audit all agents")`
26- `@meta-agent-quality-auditor` inline
27- Slash: `npm run agents:quality` (the deterministic executor)
28 
29## 3. Inputs
30 
31**Read-only:**
32- `.claude/agents/*.md` — the audit target (all files)
33- `lib/voice/frankx-voice.ts` — canonical banned-phrases + Arcanea-quarantine lists
34- `tests/fixtures/<ref>/smoke.mjs` — existence check for gate #9
35- `data/acos/agents.ts` — to cross-reference catalog refs with audit results
36 
37**Optional:**
38- `docs/acos/agent-template-v2.md` — the rubric reference (informational; checks are codified in the script)
39- Prior audit JSON at `.frankx/machine/agent-quality-audit-<date>.json` — for trend comparison
40 
41**Must not modify:** never edits the agent files. Audit only. Revision is a separate sprint per agent.
42 
43## 4. Process
44 
45```
460. Recall prior context (memory layer):
47 node lib/acos/memory.mjs recall "meta-agent-quality-auditor run" 3
48 Surface prior audit scores for trend (improving / regressing / stable).
49 
501. Discover agent files:
51 ls .claude/agents/*.md (excluding CLAUDE.md, README.md, PRODUCT_TEAMS.md)
52 Expect ~66 files.
53 
542. For each file, run the 9-check rubric:
55 
56 Check 1 — Frontmatter complete (EXISTENTIAL):
57 Parse YAML between --- markers.
58 PASS iff name, description, tools, model all present and non-empty.
59 model must be one of: haiku, sonnet, opus.
60 
61 Check 2 — Description with triggers:
62 PASS iff description length ≥ 50 chars AND
63 contains ≥ 1 of: "Auto-invoke", "auto-fire", "use when", "trigger",
64 verbal cue pattern (e.g., "X says"), file pattern (path/**), or
65 conditional ("when N≥M").
66 
67 Check 3 — Tools minimality:
68 Parse declared tools from frontmatter (comma-separated).
69 Scan ## 4. Process section for tool references.
70 PASS iff every declared tool appears in Process (allows over-declared
71 for explicit defaults like Read, but flags when a tool is declared
72 and never referenced).
73 
74 Check 4 — Template-v2 sections present:
75 Look for headings ## 1-10 OR named-section equivalents:
76 Purpose, Triggers, Inputs, Process, Outputs, Integration,
77 Smoke eval, Anti-patterns, Model choice, Voice check.
78 PASS iff ≥ 8 of 10 found.
79 
80 Check 5 — Memory contract:
81 Search Process section for: `memory.mjs recall` AND `memory.mjs remember`.
82 PASS iff both present. (Template-v2 §4 step 0 + step N mandatory.)
83 
84 Check 6 — Anti-patterns block ≥ 4 bullets:
85 Find §8 (## 8 or ## Anti-patterns).
86 PASS iff ≥ 4 bullets AND each starts with negation
87 ("Does NOT", "Never", "Refuses to", "Doesn't").
88 
89 Check 7 — Brand voice clean (EXISTENTIAL):
90 Scan entire file (excluding code blocks + frontmatter) against the
91 DEFINITE-TELLS subset of bannedPhrases from lib/voice/frankx-voice.ts:
92 [delve, dive into, deep dive, it's worth noting, certainly,
93 absolutely, in conclusion, in summary, navigate the landscape,
94 paradigm shift, world-class, best-in-class, cutting-edge,
95 bleeding-edge, seamless, seamlessly, effortless, effortlessly,
96 thought leader, synergy, synergies, inn

Preview

frankxai/agentic-creator-osfrankxai/agentic-creator-os

## 1. Purpose

The structural-quality gate that runs BEFORE shipping any agent file. Catches "did the author follow the spec?" while smoke evals catch "does the agent work?" T

Three failure classes the audit catches:

1. **Existential** — invalid frontmatter, brand voice violation, Arcanean leak → agent must not ship

Repofrankxai/agentic-creator-os
TypeSubagents
CategoryAgent Meta & Communication
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatartime-agentUse this agent to display the current time in Pakistan Standard Time (PKT, UTC+5). (root scope — see agent-teams for Dubai time)SubagentsJul 202664k
  2. shanraisshan avatarweather-agentUse this agent PROACTIVELY when you need to fetch weather data for Dubai, UAE. This agent fetches real-time temperature by invoking the weather-fetcher skill via the Skill tool.SubagentsJul 202664k
  3. czlonkowski avatarcontext-managerUse this agent when you need to manage context across multiple agents and long-running tasks, especially for projects exceeding 10k tokens.SubagentsJul 202622k
  4. tanweai avatarcto-p10P10 CTO/架构委员会 Agent。定义技术战略方向、组织 agent 团队拓扑、建设基础能力。当面对超大型项目(5+ agents, 3+ sprints)、需要战略级架构决策、或需要跨多个 P9 协调时使用。触发词:CTO 模式、P10、战略规划、架构委员会、组织设计、定义技术方向。SubagentsJul 202619k
  5. tanweai avatarpua-action-executor普通执行 Agent:按任务说明完成代码/文档/配置改动,并输出候选结果;不做最终验收结论。SubagentsJul 202619k
  6. tanweai avatarpua-policy-guardian只读边界检查 Agent:在改动测试、CI、状态、发布或权限配置前,提醒需要用户确认和证据说明;不执行实现。SubagentsJul 202619k