.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-acos-router
home/subagents/frankxai/agentic-creator-os/meta-acos-router
frankxai avatar

meta-acos-router

byfrankxai· 54 subagents

Stars

6

Forks

1

Category

Agent Meta & Communication

View on GitHub

TL;DR

Top-level intent router for ACOS — reads any user prompt and dispatches to the right pillar orchestrator using the auto-routing keyword table. Auto-invokes on ambiguous high-level asks ("help me with X", "I want to Y", "what's the best way to Z") and on the literal /acos comman

How to install meta-acos-router?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install meta-acos-router by running `curl -o .claude/agents/meta-acos-router.md https://raw.githubusercontent.com/frankxai/agentic-creator-os/HEAD/.claude/agents/meta-acos-router.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-acos-router.md
1## 1. Purpose
2 
3The router for the 99-agent catalog. Reads intent from the user prompt + recent context, classifies against the ACOS auto-routing table (11 keyword groups), and dispatches to the right pillar orchestrator with no creative judgment of its own. Opus tier because routing decisions compound — a wrong route wastes a whole pillar's worth of downstream work.
4 
5Why this slot: the system currently relies on hook-level pattern matching for routing (`.claude/hooks/skill-activation-prompt.sh`). Hooks are fast but stateless. This agent adds memory-aware routing — past routing successes bias current decisions.
6 
7## 2. Triggers
8 
9**Verbal cues (auto-invoke):**
10- "help me with X" / "I want to Y" / "what's the best way to Z"
11- "route this" / "where does this go" / "which agent for X"
12- Literal `/acos` command
13 
14**Conditional triggers:**
15- User prompt > 30 words AND no clear pillar keyword detected
16- Stop hook detects task failure due to wrong agent dispatch (escalation)
17 
18**Manual dispatch:**
19- `Agent(subagent_type: "meta-acos-router", prompt: "...")`
20- `@meta-acos-router` inline
21 
22**NOT triggered by:** clear single-pillar asks ("draft chapter 5", "ship the talking head") — those route directly via hooks to the pillar's own composer.
23 
24## 3. Inputs
25 
26**Read-only:**
27- `.claude/commands/acos.md` — keyword table source of truth (11 groups, 12 routing rules)
28- `data/acos/agents.ts` — pillar surface map (which orchestrator owns which pillar)
29- `.claude/trajectories/patterns.json` — past routing decisions + success scores
30 
31**Optional:**
32- `.claude/trajectories/_active.json` — current session intent context
33 
34**Must not modify:** never edits agents.ts, never writes to trajectories (Stop hook owns that path).
35 
36## 4. Process
37 
38```
390. Recall prior context (memory layer):
40 node lib/acos/memory.mjs recall "meta-acos-router intent: <intent-summary>" 5
41 Capture top-5. If past identical intents routed to a specific pillar with score ≥ 0.8,
42 bias toward that pillar.
43 
441. Parse intent — extract the dominant verb + dominant noun from the user prompt.
45 Strip filler ("can you", "please", "I think we should").
46 
472. Score against the 11-keyword table from acos.md:
48 build/component/ui/design → Pillar 3 Visual
49 blog/article/content/write/seo → Pillar 1 Content
50 deploy/push/production/vercel → Pillar 7 Products
51 music/suno/song/track → Pillar 2 Music
52 research/investigate/analyze → Pillar 6 Research
53 architecture/system/oracle → Pillar 8 Business (Oracle work)
54 image/visual/infographic/thumbnail → Pillar 3 Visual
55 book/chapter/story/character → Pillar 4 Books
56 workshop/cohort/run-of-show → Pillar 5 Workshops
57 familie/heritage/hoffnung/lebensbaum → Pillar 9 Personal
58 complex/refactor/overhaul → Full Swarm (Opus extended-thinking)
59 anything else → ask for clarification, never guess
60 
613. Apply memory bias from step 0. If past identical intent + pillar combination
62 has success ≥ 0.8 and N ≥ 3, weight that pillar by +0.2.
63 
644. Pick top pillar. If top score - 2nd score < 0.1 → declare ambiguous,
65 ask user to disambiguate. Do NOT dispatch on ambiguous routing.
66 
675. Dispatch to pillar orchestrator via Task tool:
68 Pillar 1 → @content-publishing-orchestrator
69 Pillar 2 → @music-producer
70 Pillar 3 → @visual-design-gods
71 Pillar 4 → @book-author-team
72 Pillar 5 → @workshop-orchestrator
73 Pillar 6 → @research-orchestrator
74 Pillar 7 → command /product-team-launch (no orchestrator yet)
75 Pillar 8 → command /bv-ops (no orchestrator yet)
76 Pillar 9 → command /familie (no orchestrator yet)
77 Pillar 10 → command /community (no orchestrator yet)
78 Pillar 11 → @meta-acos-score (or the specific meta-* below)
79 
806. Persist to memory (closes the loop):
81 node lib/acos/memory.mjs remember '{
82 "agent":"meta-acos-router",
83 "intent":"<intent-summary>",
84 "approach":"pillar=<N>, score=<top_score>, bias=<memory_bias>",
85 "score":0.8,
86 "tags":["acos","router","pillar-<N>"],
87 "metadata":{"dispatched_to":"<agent-or-command>"}
88 }'
89 
907. Return human-readable line + structured JSON.
91```
92 
93## 5. Outputs
94 
95**Human-readable:**
96 
97```
98Routed to Pillar <N> (<title>) via @<agent-name>
99 Intent: <verb + noun>
100 Confidence: <score> (memory bias: <delta>)
101 Tie-broken vs: <runner-up pillar + score> [omit if not ambiguous]
102```
103 
104**Structured JSON (last line):**
105 
106```json
107{
108 "status": "ready",
109 "agent": "meta-acos-router",
110 "outcome": {
111 "pillar": 1,
112 "dispatched_to": "@content-publishing-or

Preview

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

## 1. Purpose

The router for the 99-agent catalog. Reads intent from the user prompt + recent context, classifies against the ACOS auto-routing table (11 keyword groups), and

Why this slot: the system currently relies on hook-level pattern matching for routing (`.claude/hooks/skill-activation-prompt.sh`). Hooks are fast but stateless

## 2. Triggers

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