diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 2e55a46..91db073 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -3,7 +3,7 @@ "version": "1.0.0", "description": "A holographic map of code for AI agents. When Claude searches, loctree adds semantic context: symbol definitions, dependency graphs, impact analysis, and dead code detection.", "author": { - "name": "VetCoders", + "name": "Vetcoders", "url": "https://github.com/Loctree" }, "license": "MIT", diff --git a/CLAUDE.md b/CLAUDE.md index a98cb90..d375dc7 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -15,7 +15,7 @@ Loctree Plugin is a Claude Code integration that augments search results with se ```bash # Quick install (for users) -curl -fsSL https://raw.githubusercontent.com/VetCoders/loctree-plugin/main/install.sh | bash +curl -fsSL https://raw.githubusercontent.com/Loctree/loctree-plugin/main/install.sh | bash # Verify installation works bash scripts/verify-install.sh @@ -94,4 +94,4 @@ Hooks receive JSON on stdin and must output JSON to stdout: --- -*Created by M&K (c)2026 VetCoders* +*Created by Vetcoders (c) 2026* diff --git a/LICENSE b/LICENSE index 9360acd..62bb1f2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2026 Maciej Gad, Monika Szymanska +Copyright (c) 2026 Vetcoders Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 8e8618a..bb6a149 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ curl -fsSL https://loct.io/install.sh | bash ```bash # Clone the plugin -git clone https://github.com/VetCoders/loctree-plugin.git +git clone https://github.com/Loctree/loctree-plugin.git cd loctree-plugin # Copy hooks to Claude config @@ -301,7 +301,7 @@ Hook overhead: **< 300ms** per augmented search. ## Contributing - [loctree-suite](https://github.com/Loctree/loctree-suite) — Core CLI and MCP server -- [Issues](https://github.com/VetCoders/loctree-plugin/issues) — Bug reports and feature requests +- [Issues](https://github.com/Loctree/loctree-plugin/issues) — Bug reports and feature requests ## License @@ -309,5 +309,4 @@ MIT License — see [LICENSE](LICENSE) --- -**Made with (งಠ_ಠ)ง by the ⌜ Loctree ⌟ 𝖙𝖊𝖆𝖒 (c) 2026 -Maciej & Monika + Klaudiusz (AI) + Mixerka (AI)** +**Made with (งಠ_ಠ)ง by the ⌜ Loctree ⌟ 𝖙𝖊𝖆𝖒 (c) 2026 Vetcoders** diff --git a/claude/skills/loctree/SKILL.md b/claude/skills/loctree/SKILL.md index 2ca1016..8676b5e 100644 --- a/claude/skills/loctree/SKILL.md +++ b/claude/skills/loctree/SKILL.md @@ -151,5 +151,4 @@ loct scan --- -**Made with (งಠ_ಠ)ง by the ⌜ Loctree ⌟ 𝖙𝖊𝖆𝖒 (c) 2026 -Maciej & Monika + Klaudiusz (AI)** +**Made with (งಠ_ಠ)ง by the ⌜ Loctree ⌟ 𝖙𝖊𝖆𝖒 (c) 2026 Vetcoders** diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index 1191212..e289cab 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -256,4 +256,4 @@ The snapshot is automatically created on first query and reused for subsequent q --- -*Created by M&K (c)2026 VetCoders* +*Created by Vetcoders (c) 2026* diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 0cdc84f..4b9d1a2 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -58,4 +58,4 @@ All notable changes to the Loctree Plugin for Claude Code. --- -*Created by M&K (c)2026 VetCoders* +*Created by Vetcoders (c) 2026* diff --git a/docs/FAQ.md b/docs/FAQ.md index f573547..c9dee7d 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -227,4 +227,4 @@ Remove the PostToolUse section from `~/.claude/settings.json` to disable all loc --- -*Created by M&K (c)2026 VetCoders* +*Created by Vetcoders (c) 2026* diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 19160b4..7755018 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -44,7 +44,7 @@ cargo install --path crates/loctree ```bash which loct -# Expected: /Users/yourname/.cargo/bin/loct +# Expected: ~/.cargo/bin/loct # If not found, add to your shell profile: echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> ~/.zshrc @@ -244,4 +244,4 @@ This informational message appears only on the first search. Loctree automatical --- -*Created by M&K (c)2026 VetCoders* +*Created by Vetcoders (c) 2026* diff --git a/docs/QUICK_START.md b/docs/QUICK_START.md index 6c45bc4..df51dc9 100644 --- a/docs/QUICK_START.md +++ b/docs/QUICK_START.md @@ -176,4 +176,4 @@ The hook recognizes various patterns: --- -*Created by M&K (c)2026 VetCoders* +*Created by Vetcoders (c) 2026* diff --git a/hooks/loct-grep-augment.sh b/hooks/loct-grep-augment.sh index 43ab03a..0e48465 100755 --- a/hooks/loct-grep-augment.sh +++ b/hooks/loct-grep-augment.sh @@ -149,7 +149,7 @@ log_claude_search() { # Show filenames printf '%s' "$tool_resp" | jq -r '.filenames[]? // empty' 2>/dev/null | head -10 | while IFS= read -r filepath; do - local short="${filepath##*/Libraxis/}" + local short="${filepath#"$HOME"/}" [[ ${#short} -gt 60 ]] && short="...${short: -57}" log_line " -> $short" done