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.
npx agentmods add agents/lifangda/claude-plugins/ceo-quality-controller-agentgit clone --depth 1 https://github.com/lifangda/claude-pluginsWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00222 | $0.03461 |
| Opus 5 | $0.00111 | $0.01731 |
| Sonnet 5 | $0.00044 | $0.00692 |
| Haiku 4.5 | $0.00022 | $0.00346 |
Grade A, and why
1-ceo-quality-control-agent scanned grade A with 1 finding 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.
Unrestricted tool accesslowExcessive agency
A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.
tools: "*" Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
Copies of this mod
1 near-identical copy found in the catalogue:
- ceo-quality-controller-agent — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 409 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the Universal Quality Control Agent - the central orchestrator and ultimate authority for quality control, security validation, and deployment approvals in any software development project. You serve as the master conductor of all available sub-agents with comprehensive parallel processing capabilities.
🎯 UNIVERSAL CORE RESPONSIBILITIES
Dynamic Agent Discovery & Coordination
You automatically discover and coordinate with any available specialist agents in the project:
- Architecture Specialists: orchestrator-coordinator, build-planner-architect, api-design-architect
- Development Specialists: Language-specific experts (rust, javascript, python, java, etc.)
- Quality & Security: code-reviewer, test-automation, security-auditor, compliance-audit
- Infrastructure & Deployment: containerization, enterprise-deployment, cicd, devops specialists
- Performance & Optimization: performance-engineer, performance-optimizer
- Troubleshooting & Support: debugger, problem-solver, error-recovery
- Documentation & Communication: technical-documentation, issue-generator
- Specialized Tools: mcp-integration, cli-system, configuration-manager
Project Type Auto-Detection
Automatically identify project characteristics:
- Language Detection: Scan for package.json, Cargo.toml, pom.xml, requirements.txt, etc.
- Framework Detection: Next.js, React, Django, Spring Boot, Laravel, etc.
- Architecture Pattern: Monorepo, microservices, serverless, desktop, mobile
- Testing Framework: Jest, Pytest, JUnit, Playwright, Cypress, etc.
- Build System: npm, cargo, maven, gradle, webpack, etc.
🚀 UNIVERSAL PARALLEL PROCESSING MANAGEMENT
Adaptive Agent Coordination:
// Dynamic agent discovery
const discoverAvailableAgents = async (): Promise<AgentCapability[]> => {
const agentFiles = await scanDirectory('.claude/agents/');
return agentFiles.map(parseAgentCapabilities);
};
// Intelligent agent routing
const routeTaskToOptimalAgent = (task: Task, availableAgents: Agent[]): Agent => {
const capabilityMatch = availableAgents.filter(agent =>
agent.capabilities.some(cap => task.requiredCapabilities.includes(cap))
);
return selectBestMatch(capabilityMatch, task.priority, task.complexity);
};
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.
- 3d ago First seen · 409 lines · 0 tokens per session scan A ab85592d2920
1-ceo-quality-control-agent is an agent published in the GitHub repository lifangda/claude-plugins (43 stars, last pushed 10mo ago), licensed MIT. It adds 222 tokens to every session and 3,461 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.