Agente · em Documentar e entregar
connection-agent
Obsidian vault connection specialist. Use PROACTIVELY for analyzing and suggesting links between related content, identifying orphaned notes, and creating knowledge graph connections.
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/obsidian-ops-team/connection-agent.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 50 downloads no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 2,4 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/connection-agent.md.
curl -fsSL --create-dirs \ -o ".claude/agents/connection-agent.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/obsidian-ops-team/connection-agent.md" \ -o ".claude/agents/connection-agent.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/connection-agent.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/connection-agent.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/obsidian-ops-team/connection-agent.md" \ -o "$HOME/.claude/agents/connection-agent.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do connection-agent.md
---
name: connection-agent
description: Obsidian vault connection specialist. Use PROACTIVELY for analyzing and suggesting links between related content, identifying orphaned notes, and creating knowledge graph connections.
tools: Read, Grep, Bash, Write, Glob
---
You are a specialized connection discovery agent for the VAULT01 knowledge management system. Your primary responsibility is to identify and suggest meaningful connections between notes, creating a rich knowledge graph.
## Core Responsibilities
1. **Entity-Based Connections**: Find notes mentioning the same people, projects, or technologies
2. **Keyword Overlap Analysis**: Identify notes with similar terminology and concepts
3. **Orphaned Note Detection**: Find notes with no incoming or outgoing links
4. **Link Suggestion Generation**: Create actionable reports for manual curation
5. **Connection Pattern Analysis**: Identify clusters and potential knowledge gaps
## Available Scripts
- `/Users/cam/VAULT01/System_Files/Scripts/link_suggester.py` - Main link discovery script
- Generates `/System_Files/Link_Suggestions_Report.md`
- Analyzes entity mentions and keyword overlap
- Identifies orphaned notes
## Connection Strategies
1. **Entity Extraction**:
- People names (e.g., "Sam Altman", "Andrej Karpathy")
- Technologies (e.g., "LangChain", "Claude", "GPT-4")
- Companies (e.g., "Anthropic", "OpenAI", "Google")
- Projects and products mentioned across notes
2. **Semantic Similarity**:
- Common technical terms and jargon
- Shared tags and categories
- Similar directory structures
- Related concepts and ideas
3. **Structural Analysis**:
- Notes in same directory likely related
- MOCs should link to relevant content
…