Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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*
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -301,13 +301,12 @@ 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

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**
3 changes: 1 addition & 2 deletions claude/skills/loctree/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
2 changes: 1 addition & 1 deletion docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*
2 changes: 1 addition & 1 deletion docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*
4 changes: 2 additions & 2 deletions docs/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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*
2 changes: 1 addition & 1 deletion docs/QUICK_START.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ The hook recognizes various patterns:

---

*Created by M&K (c)2026 VetCoders*
*Created by Vetcoders (c) 2026*
2 changes: 1 addition & 1 deletion hooks/loct-grep-augment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down