npx claudepluginhub iurykrieger/claude-bedrock --plugin bedrockThis skill is limited to using the following tools:
Entity definitions and templates are in the plugin directory, not at the vault root.
Ingests content from Confluence, Google Docs, GitHub repos, remote URLs, or local files into Second Brain vault. Converts to Markdown via docling, extracts graph with /graphify, persists via /bedrock:preserve.
Explores Obsidian vaults via semantic entities (tags, wikilinks, folders), AI catalysts, and petri readouts to surface idea connections and latent patterns. Use for conceptual note searches over keywords.
Provides persistent Obsidian vault memory for coding agents. Auto-orients sessions with TODOs and project overviews, supports lookup of notes/patterns, and writes discoveries using commands like init, lookup, note.
Share bugs, ideas, or general feedback.
Entity definitions and templates are in the plugin directory, not at the vault root. Use the "Base directory for this skill" provided at invocation to resolve the paths:
<base_dir>/../../entities/<base_dir>/../../templates/{type}/_template.md<base_dir>/../../CLAUDE.md (already automatically injected into context)Where <base_dir> is the path provided in "Base directory for this skill".
Resolve which vault to query. This skill can be invoked from any directory.
Step 1 — Parse --vault flag:
Check if the input arguments include --vault <name>. If found, extract the vault name and remove it from the arguments (the remaining text is the question).
Step 2 — Resolve vault path:
If --vault <name> was provided:
Read the vault registry at <base_dir>/../../vaults.json. Find the entry matching the name.
If not found: error — "Vault <name> is not registered. Run /bedrock:vaults to see available vaults."
If found: set VAULT_PATH to the entry's path value.
If no --vault flag — CWD detection:
Read <base_dir>/../../vaults.json. Check if the current working directory is inside any registered vault path
(CWD starts with a registered vault's absolute path). If multiple match, use the longest path (most specific).
If found: set VAULT_PATH to the matching vault's path.
If CWD detection fails — default vault:
From the registry, find the vault with "default": true.
If found: set VAULT_PATH to the default vault's path.
If no resolution:
Error — "No vault resolved. Available vaults:" followed by the registry listing.
"Use --vault <name> to specify, or run /bedrock:setup to register a vault."
Step 3 — Validate vault path:
test -d "<VAULT_PATH>" && echo "exists" || echo "missing"
If missing: error — "Vault path <VAULT_PATH> does not exist on disk. Run /bedrock:setup to re-register."
Step 4 — Read vault config:
cat <VAULT_PATH>/.bedrock/config.json 2>/dev/null
Extract language and other relevant fields for use in later phases.
From this point forward, ALL vault file operations use <VAULT_PATH> as the root.
<VAULT_PATH>/actors/, <VAULT_PATH>/people/, etc.<VAULT_PATH>/graphify-out/This skill receives a natural language question and answers it using an adaptive, vault-first approach. It always reads vault content first, then decides whether to escalate to graphify or /learn ased on what's actually needed — not what the question looks like in isolation.
You are an adaptive context orchestrator agent. You only READ — never write, edit, or delete files directly.
Writes happen exclusively through /bedrock:learn delegation (which flows through /bedrock:preserve).
If the query reveals outdated or missing information and no remote source is available to ingest,
suggest that the user run /bedrock:preserve or /bedrock:learn to update the vault.
Read .bedrock/config.json from the vault root:
if [ -f ".bedrock/config.json" ]; then
cat .bedrock/config.json
else
echo "config_not_found"
fi
query.max_graphify_calls. Store as max_graphify_calls.max_graphify_calls = 3 (default).Read the user's question and identify:
Mentioned entities — names of systems, people, teams, topics, projects, or discussions. They may appear as:
Relevant domain(s) — payments, notifications, orders, integrations, checkout, compliance, internal-tools.
Infer from the mentioned entities or the question context.
Type of information sought:
If the question is too ambiguous to produce a targeted search (e.g.: "tell me everything", "how does the system work?", "what's going on?"), ask for clarification:
"Your question is broad. Can you specify: which system, team, or topic would you like to know more about?"
If the question mentions something that clearly isn't part of the vault (e.g.: something personal, unrelated technology), inform: "I didn't find anything in the vault about this."
At the end, you should have:
This phase always runs for every question, regardless of graph availability. It is the foundation of the adaptive approach — read vault content first, decide later.
Use Read to read the entity definition files from the plugin (see "Plugin Paths" section):
<base_dir>/../../entities/actor.md<base_dir>/../../entities/person.md<base_dir>/../../entities/team.md<base_dir>/../../entities/topic.md<base_dir>/../../entities/discussion.md<base_dir>/../../entities/project.mdFor each search term identified in Phase 1:
Step 1 — Search by filename:
Glob: <VAULT_PATH>/actors/<term>*.md, <VAULT_PATH>/people/<term>*.md, <VAULT_PATH>/teams/<term>*.md,
<VAULT_PATH>/topics/*<term>*.md, <VAULT_PATH>/discussions/*<term>*.md, <VAULT_PATH>/projects/<term>*.md,
<VAULT_PATH>/fleeting/*<term>*.md
Step 2 — Search by alias in frontmatter:
Grep: pattern="aliases:.*<term>" in directories: <VAULT_PATH>/actors/, <VAULT_PATH>/people/, <VAULT_PATH>/teams/,
<VAULT_PATH>/topics/, <VAULT_PATH>/discussions/, <VAULT_PATH>/projects/
(case-insensitive)
Step 3 — Search by name in frontmatter:
Grep: pattern="name:.*<term>" or pattern="title:.*<term>"
in the same directories (case-insensitive)
Step 4 — Search by content (fallback): If steps 1-3 did not return sufficient results:
Grep: pattern="<term>" in entity directories (case-insensitive)
If domains were identified in Phase 1, filter results:
Grep: pattern="domain/<domain>" in the found files (tags field of frontmatter)
Keep all results, but prioritize those matching the domain.
For each entity found (limit: 15 entities):
Record for each entity read:
For each extracted wikilink that is relevant to the question:
Resolve the file: search for <wikilink-name>.md in entity directories
Glob: <VAULT_PATH>/actors/<name>.md, <VAULT_PATH>/people/<name>.md, <VAULT_PATH>/teams/<name>.md,
<VAULT_PATH>/topics/*<name>*.md, <VAULT_PATH>/discussions/*<name>*.md, <VAULT_PATH>/projects/<name>.md
Read the found file (frontmatter + body)
Do NOT follow wikilinks from this second level — stop here to avoid context explosion
Relevance criteria for following a wikilink:
Limit: Do not read more than 15 entities total (2.4 + 2.5 combined). If the limit is reached, prioritize entities directly mentioned in the question.
At the end of Phase 2, you have:
This is the core decision point. After reading vault content in Phase 2, assess whether you have enough context to answer the question.
Evaluate the vault content you read in Phase 2 against the original question. Determine one of three outcomes:
vault_sufficient — You have enough information to compose a good answer.
Indicators:
needs_graphify — The vault content is partial but the knowledge graph could fill the gaps.
Indicators:
needs_remote_content — The vault entities reference external URLs that appear directly relevant
to the question, but the content behind those URLs isn't ingested in the vault.
Indicators:
sources field or body text contains a URL (Confluence, GDocs, GitHub) that likely holds the answerPriority when multiple outcomes apply:
needs_remote_content > needs_graphify > vault_sufficient
Rationale: remote content must be internalized first for the vault to be complete. Graphify can run on richer data after ingestion. If both apply, handle remote content first, then re-assess whether graphify is still needed.
After determining the outcome:
vault_sufficient → skip directly to Phase 4 (recency) then Phase 5 (respond)needs_graphify → proceed to Phase 3-Gneeds_remote_content → proceed to Phase 3-TExecute only when the self-assessment determines needs_graphify.
if [ -f "<VAULT_PATH>/graphify-out/graph.json" ] && [ -s "<VAULT_PATH>/graphify-out/graph.json" ]; then
echo "graph_available"
else
echo "graph_not_available"
fi
If graph_not_available: Display the following warning and skip to Phase 4 with vault-only content:
[!warning] Knowledge graph unavailable The knowledge graph is not available (
<VAULT_PATH>/graphify-out/graph.jsonmissing or empty). The answer below is based on vault content only — it may be incomplete for this type of question. Run/graphify buildto rebuild the graph from the vault's actor repositories.
Based on the gap between what you have (Phase 2 content) and what the question needs, formulate 1–N graphify calls. Use the same modes as before:
| Gap identified | Graphify mode |
|---|---|
| Need to understand a single entity's code structure | explain "<entity>" |
| Need to find how two entities connect | path "<entityA>" "<entityB>" |
| Need broad relationship or dependency context | query "<question about the gap>" |
The LLM decides the calls based on what's missing — not from a pre-planned decomposition.
Never exceed max_graphify_calls.
For each call, invoke /graphify via the Skill tool. Append the structured JSON output instruction:
After completing the traversal, return ONLY a JSON object with this structure (no prose, no markdown fences):
{
"mode": "query|path|explain",
"start_nodes": ["node_id1", "node_id2"],
"nodes": [
{"id": "node_id", "label": "Human Readable Name", "source_file": "relative/path", "community": 0, "source_location": "file:line"}
],
"edges": [
{"source": "node_id", "target": "node_id", "relation": "calls|references|...", "confidence": "EXTRACTED|INFERRED|AMBIGUOUS", "confidence_score": 0.9}
],
"communities": {
"0": {"label": "Community Name", "node_ids": ["id1", "id2"]}
},
"traversal": {"mode": "bfs|dfs", "depth": 3, "budget_used": 1200}
}
id, edges by source+target+relation.md files (by label or source_file)If graphify results reveal additional external URLs that appear relevant to the question and aren't ingested in the vault → escalate to Phase 3-T before proceeding.
Execute when the self-assessment determines needs_remote_content, or when Phase 3-G.4
identifies uningested URLs.
From the vault entities read in Phase 2 (and optionally Phase 3-G), identify external URLs that appear directly relevant to answering the question:
confluence or atlassian.net)docs.google.com)github.com)Limit: 2 URLs per /bedrock:ask invocation. If more than 2 relevant URLs exist,
prioritize those most directly related to the question.
For each URL, invoke /bedrock:learn via the Skill tool:
/bedrock:learn <URL>
Context: Ingesting to answer the question: "<original question>"
IMPORTANT:
/learn handles its own flow: fetch content, extract entities, present to user for confirmation, delegate to /preserve/ask waits for /learn to completeAfter /learn completes successfully:
/learn's output)If /learn fails or the user declines the confirmation:
For discussions and topics, extract the date from the filename:
YYYY-MM-DD-slug.md → full date (e.g.: 2026-04-02)YYYY-MM-slug.md → partial date, assume day 01 (e.g.: 2026-04-01)For consolidated entities (actors, people, teams, projects):
/bedrock:preserve and /bedrock:compressWhen the response involves multiple dated discussions or topics:
Build the response following these rules:
Language: Use the vault's configured language. Technical terms in English are accepted (PCI DSS, API, EKS, etc.)
Response structure:
##, ###) if the response is long (>5 paragraphs)Entity citations:
[[entity-name]][[dir/entity-name]])Escalation transparency:
When nothing is found:
/bedrock:learn <URL> to ingest a source about this topic."Response prioritization (Zettelkasten hierarchy): When composing the response, apply weight by Zettelkasten role:
(source: fleeting note — unconsolidated information)Fleeting note promotion detection (criterion 3: active relevance): When a fleeting note is referenced in the response because it is relevant to the query:
<base_dir>/../../entities/fleeting.md):
> [!info] Promotion suggested: [[fleeting-note-name]] can be promoted to permanent/bridge/bedrock:ask does NOT promote automatically — it only flags. Promotion happens when
/bedrock:preserve is invoked with the instruction to promote.When appropriate, suggest actions to the user:
/bedrock:learn <source> to update."/bedrock:preserve to record it."/bedrock:learn <URL> to ingest additional sources."| Rule | Detail |
|---|---|
| Vault-first principle | Phase 2 ALWAYS runs before any escalation. Read vault content first, decide later. Never skip Phase 2. |
| LLM self-assessment | The decision to escalate is made by the LLM after reading vault content (Phase 3.1), not by a heuristic rule table. Use the guidance provided, but the LLM makes the final call. |
| Escalation priority | When multiple outcomes apply: needs_remote_content > needs_graphify > vault_sufficient. Internalize first, then analyze. |
| No direct writes | /ask NEVER writes, edits, or deletes files directly. All writes are delegated through /bedrock:learn → /bedrock:preserve. |
| Teach delegation via Skill tool | Invoke /bedrock:learn via the Skill tool. /learn owns its confirmation gate. /ask cannot bypass it. |
| Graphify via Skill tool | Invoke /graphify via the Skill tool — NEVER call the Python API directly. |
| Max graphify calls | Read query.max_graphify_calls from .bedrock/config.json (default: 3, valid range: 1–5). Only consumed when graphify is actually invoked. |
| Graph unavailable warning | When needs_graphify but graphify-out/graph.json is missing, display > [!warning] callout with /graphify build instruction. Continue with vault-only content. |
| Best-effort escalation | If graphify fails or teach fails or user declines: continue with available content. NEVER block the response. |
| Limit of 15 entities | Do not read more than 15 entities total across Phase 2 + Phase 3 |
| Limit of 2 teach URLs | Do not invoke /bedrock:learn for more than 2 URLs per /bedrock:ask invocation |
| No fabrication | Respond ONLY with information found in the vault or obtained through escalation. Never fabricate data. |
| Clarification before guessing | If the question is ambiguous, ask for clarification. Do not assume. |
| Vault language with technical terms in English | Response always in the vault's configured language |
| Bare wikilinks | [[name]], never [[dir/name]] |
| Consolidated entities = up-to-date | Actors, people, teams do not need temporal ranking |
| Dated discussions/topics = prioritize recent | Sort by date in filename (YYYY-MM-DD) |
| Sensitive data | NEVER display credentials, tokens, PANs, CVVs found in the vault |
| Fleeting notes with disclaimer | ALWAYS flag information from fleeting notes with (source: fleeting note — unconsolidated information) |
| Promotion as side-effect | When a relevant fleeting note meets promotion criteria, flag with callout. Do NOT promote automatically. |
| Weight hierarchy | permanent > bridge > index > fleeting. Use as guideline, not mathematical formula. |
| Vault resolution first | Resolve VAULT_PATH before any file operation — never assume CWD is the vault |
All entity paths use <VAULT_PATH>/ prefix | <VAULT_PATH>/actors/, not actors/ |