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

meta-memory-guardian

byfrankxai· 54 subagents

Stars

6

Forks

1

Category

Agent Meta & Communication

View on GitHub

TL;DR

Pre-flight RAM zone classifier before parallel agent dispatch or heavy builds. Auto-invokes when Claude is about to spawn 3+ Task agents, before npm run build, when SessionStart reports WARN/CRITICAL memory, or when user mentions parallel CC instances. Returns green/yellow/red

How to install meta-memory-guardian?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install meta-memory-guardian by running `curl -o .claude/agents/meta-memory-guardian.md https://raw.githubusercontent.com/frankxai/agentic-creator-os/HEAD/.claude/agents/meta-memory-guardian.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-memory-guardian.md
1## 1. Purpose
2 
3Single-purpose RAM gate that prevents WSL crashes when scaling parallel agents. Wraps `.claude/skills/memory-guardian/SKILL.md` zone rules (Green < 75% / Yellow 75–89% / Red ≥ 90%) into a dispatchable subagent with a deterministic JSON verdict.
4 
5Why this slot: today the memory check runs as a SessionStart hook + skill text — but no subagent surfaces it. Any agent that wants to scale must read the skill itself. This agent makes the check a single dispatch + cacheable result.
6 
7## 2. Triggers
8 
9**Verbal cues (auto-invoke):**
10- "memory check" / "is it safe to scale" / "ram pressure"
11- "spawn 5 agents" / "parallel agents" / "swarm"
12 
13**Tool-pattern triggers:**
14- About to call Task tool with parallel agents ≥ 3
15- About to run `npm run build`, `next build`, `pnpm build`
16- About to spawn another CC instance
17 
18**Manual dispatch:**
19- `Agent(subagent_type: "meta-memory-guardian", prompt: "check before swarm")`
20- `@meta-memory-guardian` inline
21 
22## 3. Inputs
23 
24**Read-only:**
25- `/proc/meminfo` (via `free -m`) — current RAM state
26- `.claude/skills/memory-guardian/SKILL.md` — zone thresholds + recovery commands
27 
28**Optional:**
29- `C:\Users\Frank\.wslconfig` — WSL memory limit + swap config (informational)
30 
31**Must not modify:** never kills processes without explicit user confirmation (see anti-patterns).
32 
33## 4. Process
34 
35```
360. Recall prior context (memory layer):
37 node lib/acos/memory.mjs recall "meta-memory-guardian zone" 3
38 Capture last 3 verdicts to surface trend (degrading? stable?).
39 
401. Probe RAM:
41 free -m | awk '/^Mem:/{printf "%d %d %d\n", $3, $2, $3*100/$2} /^Swap:/{printf "%d %d\n", $3, $2}'
42 Parse: used_mb / total_mb / pct + swap_used / swap_total.
43 
442. Classify zone:
45 pct < 75 → green, parallel-cap = 4, build-safe = true
46 75 ≤ pct < 90 → yellow, parallel-cap = 2, build-safe = false
47 pct ≥ 90 → red, parallel-cap = 1, build-safe = false, recovery-needed = true
48 
493. If red, list top RAM hogs:
50 ps aux --sort=-%mem | head -10
51 Identify Claude/node processes. Do NOT kill anything — just report.
52 
534. Compose verdict:
54 green → "Safe to scale. Parallel cap 4."
55 yellow → "Memory pressure 75–89%. Cap at 2 parallel. Defer builds."
56 red → "Memory critical (≥90%). Sequential only. Suggest closing CC instances."
57 
585. Persist to memory:
59 node lib/acos/memory.mjs remember '{
60 "agent":"meta-memory-guardian",
61 "intent":"meta-memory-guardian zone",
62 "approach":"<zone>: <pct>% used, cap=<n>",
63 "score":<1.0 if green, 0.5 yellow, 0.0 red>,
64 "tags":["memory","gate","ram"],
65 "metadata":{"used_mb":<n>,"total_mb":<n>,"pct":<n>,"swap_mb":<n>}
66 }'
67 
686. Return verdict + JSON.
69```
70 
71## 5. Outputs
72 
73**Human-readable:**
74 
75```
76RAM <green|yellow|red> · <used_mb>/<total_mb> MB (<pct>%) · swap <n>/<total> MB
77Parallel cap: <n> agents · Build safe: <yes|no>
78 
79[if yellow/red] Top hogs:
80 <pid> <user> <mem%> <command>
81 ...
82 
83[if red] Recovery suggestion: <action>
84```
85 
86**Structured JSON (last line):**
87 
88```json
89{
90 "status": "ready",
91 "agent": "meta-memory-guardian",
92 "outcome": {
93 "zone": "green|yellow|red",
94 "used_mb": 8200,
95 "total_mb": 12288,
96 "pct": 67,
97 "parallel_cap": 4,
98 "build_safe": true,
99 "recovery_needed": false
100 },
101 "memory_ids": ["..."]
102}
103```
104 
105## 6. Integration
106 
107**Upstream:** SessionStart hook escalation, pre-Task-tool guard, pre-build hook
108**Memory:** writes intent `"meta-memory-guardian zone"` for trend tracking
109**Downstream:** any agent that scales parallel work reads this verdict before dispatching
110**Luminor Router:** gate dispatched at any `parallel-agent` flow start
111 
112## 7. Smoke eval
113 
114**Functional** (`tests/fixtures/meta-memory-guardian/smoke.mjs`):
115- Mock `free -m` output for each zone, verify correct classification
116- Verify parallel_cap matches zone (4 / 2 / 1)
117- Verify red zone surfaces top-N hogs without killing them
118 
119**Memory round-trip:** shared smoke from `tests/fixtures/memory/smoke.mjs`.
120 
121## 8. Anti-patterns — what this agent does NOT do
122 
123- Does NOT kill processes — only reports. Killing requires explicit user confirmation
124- Does NOT make recommendations beyond zone + cap (no "close VS Code", no "restart WSL")
125- Does NOT cache verdicts longer than 60 seconds — RAM state changes fast
126- Does NOT block on yellow zone — yellow is a cap, not a stop
127- Does NOT run on every tool call — only at parallel-spawn or build-start points
128 
129## 9. Model choice — one sentence
130 
131Haiku: pure classification over a 3-bucket vocabulary (green/yellow/red) from a single number; no reasoning needed.
132 
133## 10. Voice check
134 
135- No

Preview

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

## 1. Purpose

Single-purpose RAM gate that prevents WSL crashes when scaling parallel agents. Wraps `.claude/skills/memory-guardian/SKILL.md` zone rules (Green < 75% / Yellow

Why this slot: today the memory check runs as a SessionStart hook + skill text — but no subagent surfaces it. Any agent that wants to scale must read the skill

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