Causal Chain Query

SOP for tracing causal chains — follow edges from cause to effect through intermediate variables.

yogsoth-ai 7647c05 806 B Updated

File contents

Causal Chain Query

Trace a causal chain from a starting variable through intermediate variables to downstream effects.

Tool

vault_query_graph

Protocol

  1. Call vault_query_graph with starting node, direction=out, depth=3
  2. Filter results to only causal edges (derived_from, component_of)
  3. Reconstruct the chain as an ordered sequence
  4. Identify branching points (one cause → multiple effects)
  5. Check for cycles (indicates feedback loop)

HARD-GATE

Yield

Returns: { chain: string[], branches: number, has_cycle: boolean }

yogsoth-ai/de-anthropocentric-research-engine/tree/main/skills/causal-chain-query commit 7647c052bf

Frequently asked questions

npx skillmds@latest add yogsoth-ai/causal-chain-query