agentsclimarketplace

Context failure classifier

Skill AnthonyAlcaraz/agentic-graph-rag-skills/skills/crisis/context-failure-classifier

Companion repo for Agentic Graph RAG (O'Reilly, Anthony Alcaraz & Sam Julien) — 50 runnable skills + 8 pedagogical notebooks covering all eight chapters, on one moto-mocked AWS DevOps scenario

Install
npx -y skills add AnthonyAlcaraz/agentic-graph-rag-skills --skill context-failure-classifier

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Classify an observed agent symptom into Ch1's context-failure taxonomy. Given a sentence describing what an agent did wrong, name the agent-level failure mode (action blindness / memory fragmentation / planning paralysis / context drift / tool chaos), the architectural root cause among the five fatal flaws, and the curing graph capability. Batch mode aggregates a post-mortem's symptoms into a prioritized cure list, surfacing Ch1's cascade point — that the failure modes reinforce one another. Use to triage why an enterprise agent is failing and decide what to build next. NOT for general bug triage (it only knows retrieval/context failures), NOT for model-quality issues (Ch1: the flaws are architectural, not the model).

SKILL.md

7.2 KB, as published. Nobody here has run it

Context-Failure-Mode Classifier

Overview

Ch1 argues the symptoms enterprises see — an agent that breaks dependencies, forgets, reverts to dead configs, can't connect facts, guesses the wrong API — are not independent bugs. They are the surface of five fatal flaws of naive vector RAG, and at the agent level each flaw "compounds into agent failure," "reinforcing others, creating a cascade of agent incompetence."

This skill maps a free-text symptom to that taxonomy. It answers three questions for each symptom:

  1. Which agent-level failure mode is this? Action blindness, memory fragmentation, planning paralysis, context drift, or tool chaos.
  2. What is the architectural root cause? One of the five fatal flaws.
  3. What cures it? The specific graph capability (entity relationships, evolving memory, temporal evolution, multi-hop reasoning, tool orchestration).

Batch mode reads a list of symptoms (e.g. a post-mortem's bullets) and returns a cure list ordered by how many symptoms each cure resolves — operationalizing Ch1's claim that closing one root flaw often relieves several symptoms because they cascade.

When to Use

  • Triaging why a deployed enterprise agent produces wrong / unsafe outputs
  • Turning a post-mortem's narrative into a prioritized architecture backlog
  • Deciding which graph capability to build first given observed failures
  • Teaching the difference between symptom (agent behavior) and root cause (architecture)

Phrases: "why did my agent break dependencies", "agent forgot context", "classify this failure", "agent reverted to old config", "agent picked the wrong tool", "what should we fix first".

When NOT to Use

  • General software bug triage — this taxonomy only covers retrieval/context failures
  • Model-quality complaints (hallucination from a weak model, refusals) — Ch1 is explicit the five flaws are architectural, not model quality
  • Latency / cost / infra incidents with no context-failure behavior

Process

StepInputActionOutputVerification
1one symptom sentencelib.classify(symptom)primary mode + root flaw + cure + candidatesmatched signals justify the chosen mode
2symptom with multiple signalslib.classify(symptom)cascade_modes populatedsecondary modes surfaced (the cascade)
3list of symptomslib.classify_batch(list)per-symptom + aggregateflaw counts sum to classified count
4aggregateread prioritized_curescures ordered by symptom coveragetop cure resolves the most symptoms

Rationalizations

Agent rationalizationDocumented rebuttal
"These are five separate bugs, fix them one at a time."Ch1: "Each failure mode reinforces others, creating a cascade of agent incompetence." The classifier surfaces cascade_modes so you fix the shared root flaw, not five symptoms.
"The agent hallucinated; we need a better model."Ch1: the flaws "cannot be addressed by optimizing search or tweaking embedding models." If the symptom matches the taxonomy, the cure is a graph capability, not a model upgrade.
"It picked the wrong tool because the prompt was bad."Anthropic's failure mode (Ch1, tool chaos): bloated tool sets where "a human engineer can't definitively say which tool should be used." That is tool_chaos, cured by tool orchestration, not by prompt polishing.
"Just retrieve more chunks and it'll connect the facts."Planning paralysis comes from the associativity gap — transitive relationships "simply don't exist in isolated embeddings" (Ch1, the associativity gap). More chunks don't create the missing edges.

Red Flags

  • A real context-failure symptom returns unclassified. Re-state it in behavioral terms (what the agent did), not infrastructure terms; the classifier keys on observed behavior.
  • Everything classifies as one mode. Either the symptoms genuinely share a root flaw (legitimate, check the cascade), or the symptom text is too generic to discriminate — add the specific wrong behavior.
  • Cure list recommends building all five capabilities at once. Ch1's cascade point means start with the highest-coverage cure; building all five before validating one is the "three-car garage" anti-pattern.

Non-Negotiable Verification

  1. Run the benchmark battery. python cli.py benchmark must report:
    • each of the five modes classifies from its distinctive signal
    • each primary carries the correct root-flaw and cure mapping
    • an irrelevant symptom is reported unclassified, not forced
    • batch mode aggregates flaw counts and orders cures by coverage
    • every taxonomy mode maps to a known fatal flaw
  2. Verify CLI help. python cli.py --help exits 0 and prints the SKILL.md description.

Security Posture

  • Prompt injection. Symptom sentences are untrusted free text (often pasted from post-mortems). The classifier only tokenizes them against a fixed signal vocabulary and returns taxonomy labels; instructions embedded in a symptom are never executed and can at most mis-classify that one symptom.
  • Data exfiltration. No network calls, no file writes. Post-mortem text may contain incident details; it stays in-process and appears only in the stdout report the caller owns.
  • Privilege escalation. No shell invocation, no eval, no dynamic import. The cure list is advisory text - it grants nothing; the humans who read the prioritized backlog decide what gets built.

Source Attribution

Distilled from Agentic GraphRAG (O'Reilly) by Anthony Alcaraz and Sam Julien — Ch1: The Crisis of Agentic AI, specifically the five-fatal-flaws opening and the "Consequences for vector-based agents" section (action blindness / memory fragmentation / planning paralysis / context drift, and the cascade that reinforces them). Tool-chaos failure mode anchored in Anthropic's "Effective Context Engineering for Agents"; local-vs-global query failure in Microsoft's "From Local to Global: A GraphRAG Approach."

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.