meta-agentic-jujutsu

meta-agentic-jujutsu is an agent for Claude Code from frankxai/agentic-creator-os. It costs 77 tokens per session (1,543 once invoked), scanned A, original, Apache-2.0.

A read-only helper that recalls successful workflow patterns from earlier coding sessions. It uses stored session records to suggest approaches that worked before.

In plain words
What is it for?
Use it at the start of a complex task, when looking for precedent, or before sending work to several parallel agents.
Why use it?
It reduces repeated trial and error and helps the current task benefit from the project's past experience.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node lib/acos/memory.mjs recall "meta-agentic-jujutsu intent: <intent>" 5.

Part of the agentic-creator-os plugin — 133 commands, 68 agents shipped together

Good fit Use it at the start of a complex task, when looking for precedent, or before sending work to several parallel agents.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/frankxai/agentic-creator-os
agentmods
npx agentmods add agents/frankxai/agentic-creator-os/meta-agentic-jujutsu

Made for: Claude Code.

Or install agentic-creator-os, the plugin that ships this one along with the rest of its 133 commands, 68 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for meta-agentic-jujutsu

README.md
[![agentmods](https://agentmods.dev/badge/agents/frankxai/agentic-creator-os/meta-agentic-jujutsu/github.svg)](https://agentmods.dev/agents/frankxai/agentic-creator-os/meta-agentic-jujutsu)
Your own site
<a href="https://agentmods.dev/agents/frankxai/agentic-creator-os/meta-agentic-jujutsu"><img src="https://agentmods.dev/badge/agents/frankxai/agentic-creator-os/meta-agentic-jujutsu/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for meta-agentic-jujutsu

Your own site · 80×15
<a href="https://agentmods.dev/agents/frankxai/agentic-creator-os/meta-agentic-jujutsu"><img src="https://agentmods.dev/badge/agents/frankxai/agentic-creator-os/meta-agentic-jujutsu.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,543 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00077 $0.01543
Opus 5 $0.00039 $0.00772
Sonnet 5 $0.00015 $0.00309
Haiku 4.5 $0.00008 $0.00154

Measured 10d ago against content hash ca54fe823fe4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

meta-agentic-jujutsu scanned grade A with 0 findings 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 10d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/meta-agentic-jujutsu.md · 153 lines

How it starts

The opening of the file, as written. The whole thing — 153 lines — stays where its author put it; the contents beside it link to each section on GitHub.

1. Purpose

The repo's institutional memory layer. Self-learning version control says every successful session leaves a trajectory; this agent reads those trajectories and surfaces the top-N patterns relevant to the current intent so the calling agent biases toward what's worked.

Why this slot: today the Experience Replay system runs as a hook (injects top-2 similar successful trajectories into context). But it's silent — the calling agent doesn't know it received the boost. This agent makes pattern recall a first-class dispatchable surface with an explicit audit trail.

2. Triggers

Verbal cues (auto-invoke):

  • "what's worked before" / "show me patterns" / "any precedent for X"
  • "have we done this" / "is there a pattern" / "previous approaches"

Conditional triggers:

  • Multi-step task (≥4 tool calls planned) with no past memory recall yet this session
  • Before dispatching a parallel-agent swarm (≥3 agents)

Manual dispatch:

  • Agent(subagent_type: "meta-agentic-jujutsu", prompt: "what's worked for L99 audits")
  • @meta-agentic-jujutsu inline
  • Literal /agentic-jujutsu command

3. Inputs

Read-only:

  • .claude/trajectories/patterns.json — extracted n-grams + success rates
  • .claude/trajectories/_operations.jsonl — tool diversity signal (optional)
  • .claude/trajectories/*.json (excluding _active.json, _operations.jsonl, patterns.json) — individual session trajectories for deep-dive

Optional:

  • ReasoningBank via lib/acos/memory.mjs recall — cross-session pattern store

Must not modify: trajectories are owned by the Stop hook. Never writes to that directory.

4. Process

0. Recall prior context (memory layer):
   node lib/acos/memory.mjs recall "meta-agentic-jujutsu intent: <intent>" 5
   Capture top-5 past invocations to surface recall-of-recalls (compound learning).

1. Parse the calling intent. Extract: dominant verb, dominant noun, optional pillar hint.

2. Read patterns.json. Score each pattern by:
   relevance = keyword_match(intent, pattern.name) × pattern.success_rate × log(pattern.occurrences + 1)
   Cap at top 5.

3. For each top pattern, pull example trajectory IDs from patterns.json metadata.
   Read 1 representative trajectory per pattern to extract:
   - tool sequence (e.g., Read > Edit > Bash)
   - approximate duration
   - failure modes if any

4. Compose recommendation:
   "Top pattern: <name> (<success%>, n=<count>) — sequence: <tools>"
   List 2-3 patterns max. No more — advice spray dilutes the signal.

5. If no patterns match (relevance ≤ 0.2 for top-1), return status=no_precedent.
   This is honest and the right answer when the intent is genuinely novel.

6. Persist to memory:
   node lib/acos/memory.mjs remember '{
     "agent":"meta-agentic-jujutsu",
     "intent":"meta-agentic-jujutsu intent: <intent>",
     "approach":"surfaced <N> patterns, top=<name>@<success%>",
     "score":<top_pattern_success_rate>,
     "tags":["patterns","recall","jujutsu"],
     "metadata":{"top_pattern":"<name>","occurrences":<n>}
   }'

7. Return human-readable + JSON.

Read the full file on GitHub · 153 lines

Changes

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.

  1. 10d ago First seen · 153 lines · 77 tokens per session scan A ca54fe823fe4

Subscribe to this mod's changes

meta-agentic-jujutsu is an agent published in the GitHub repository frankxai/agentic-creator-os (10 stars, last pushed today), licensed Apache-2.0. It adds 77 tokens to every session and 1,543 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

discovery-researcher

Runs deep product discovery research: problem framing, JTBD demand-side analysis, assumption mapping, opportunity sizing, and opportunity-solution tree mapping. Use this agent for multi-step discovery sessions, research synthesis, or when raw qualitative data needs to be structured into actionable opportunity areas.…

Productfculty-aipm/PM-Copilot-by-Product-Faculty · 254 tokens

metrics-analyst

Handles quantitative PM work: North Star metric selection, funnel analysis, cohort analysis, A/B test design, dashboard structuring, and SQL generation. Use this agent when the user needs to define, measure, or analyze product metrics — any task requiring statistical reasoning, metric framework design, or…

Productfculty-aipm/PM-Copilot-by-Product-Faculty · 258 tokens

document-writer

Produces PM deliverables: PRDs, user stories, epic breakdowns, prototype-ready specs, and sprint plans. Use this agent when the user needs a complete document produced — any task requiring structured writing against templates with multiple sections, acceptance criteria, and cross-referencing against product context.…

Productfculty-aipm/PM-Copilot-by-Product-Faculty · 247 tokens

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

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.

microsoft/playwright · 151 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens