11mirror-graph-reasoning

Route relationship questions to graph queries after brain search retrieval.

Updated May 4, 2026
One-click install
npx skills add https://github.com/Postergully/11mirror-plugin --skill 11mirror-graph-reasoning
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 11mirror-graph-reasoning
Source: https://github.com/Postergully/11mirror-plugin/tree/main/skills/11mirror-graph-reasoning
Command: npx skills add https://github.com/Postergully/11mirror-plugin --skill 11mirror-graph-reasoning

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Graph reasoning protocol for 11Mirror agents. Teaches when to use knowledge graph queries (via Cognee/TrustGraph) vs brain search (via fbrain). Route relationship questions to the graph engine; route content retrieval to brain search first.

Core Features & Use Cases

  • Route relationship questions to the graph engine to leverage knowledge graph relationships between entities.
  • Route content retrieval to brain search for direct document or page results.
  • Follow a decision protocol: try brain search first, then graph_query for connections, with fallbacks and source attribution.
  • Use tools like graph_query, entity_search, search, get_page, traverse_graph, get_backlinks to navigate knowledge.

Quick Start

Start by performing a brain search for the entities, then route relationship questions to the graph engine if needed.

Frequently Asked Questions about 11mirror-graph-reasoning

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I route knowledge graph queries versus brain search for agent reasoning?

Knowledge graph routing directs relationship questions to the graph engine while retrieving content via brain search. The decision protocol mandates attempting brain search first, then using graph queries for entity connections and provenance.

When should I use graph_query instead of brain search for entity relationships?

Use graph_query when investigating entity relationships, provenance, or connections across people, vendors, and cost centers. Brain search handles direct content retrieval, while graph traversal maps structural links between documents and entities.

What is the decision protocol for querying a knowledge graph with brain search fallback?

The graph reasoning decision protocol requires attempting brain search first for content. If relationship mapping is needed, route to graph_query, using tools like entity_search and traverse_graph, while never skipping the initial brain search step.

How to traverse a knowledge graph to find provenance and connections across documents?

Traverse the knowledge graph using graph_query and traverse_graph tools to find provenance and connections. Start with a brain search to retrieve base content, then apply graph traversal to map relationships across people, vendors, and documents.

Does this graph reasoning protocol enforce brain search before querying entity relationships?

Yes, the graph reasoning protocol enforces a strict decision rule: attempt brain search first for content retrieval, then use graph_query for relationship mapping. This ensures source attribution and prevents skipping content discovery.

What are the limitations of using graph queries without brain search for relationship routing?

Graph queries alone miss direct content retrieval context. The protocol enforces brain search first because skipping it loses source attribution and document-level content before mapping entity relationships and connections via graph traversal.