Skip to content

Commit 1597cfa

Browse files
authored
Merge pull request #10 from drompincen/feature/claude-companion-features
Remove executable scripts, add instruction files
2 parents ccaf304 + 766ff39 commit 1597cfa

24 files changed

Lines changed: 1082 additions & 618 deletions

.claude/hooks/edit-log.sh

Lines changed: 0 additions & 15 deletions
This file was deleted.

.claude/hooks/enrich-check.sh

Lines changed: 0 additions & 26 deletions
This file was deleted.

.claude/hooks/memory-sync.sh

Lines changed: 0 additions & 43 deletions
This file was deleted.

.claude/hooks/session-end.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

.claude/hooks/statusline.sh

Lines changed: 0 additions & 90 deletions
This file was deleted.

.claude/hooks/track-agents.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

.claude/hooks/validate-plan.sh

Lines changed: 0 additions & 89 deletions
This file was deleted.

.claude/settings.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@
66
"hooks": [
77
{
88
"type": "command",
9-
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/.claude/hooks/edit-log.sh\"",
9+
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/scripts/local/hooks/edit-log.sh\"",
1010
"timeout": 3000
1111
},
1212
{
1313
"type": "command",
14-
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/.claude/hooks/validate-plan.sh\"",
14+
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/scripts/local/hooks/validate-plan.sh\"",
15+
"timeout": 3000
16+
},
17+
{
18+
"type": "command",
19+
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/scripts/local/hooks/javaducker-index.sh\"",
1520
"timeout": 3000
1621
}
1722
]
@@ -21,7 +26,7 @@
2126
"hooks": [
2227
{
2328
"type": "command",
24-
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/.claude/hooks/track-agents.sh\"",
29+
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/scripts/local/hooks/track-agents.sh\"",
2530
"timeout": 3000
2631
}
2732
]
@@ -32,13 +37,8 @@
3237
"hooks": [
3338
{
3439
"type": "command",
35-
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/.claude/hooks/memory-sync.sh\"",
40+
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/scripts/local/hooks/memory-sync.sh\"",
3641
"timeout": 5000
37-
},
38-
{
39-
"type": "command",
40-
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/.claude/hooks/enrich-check.sh\"",
41-
"timeout": 10000
4242
}
4343
]
4444
}
@@ -48,7 +48,7 @@
4848
"hooks": [
4949
{
5050
"type": "command",
51-
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/.claude/hooks/session-end.sh\"",
51+
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/scripts/local/hooks/session-end.sh\"",
5252
"timeout": 3000
5353
}
5454
]
@@ -57,7 +57,7 @@
5757
},
5858
"statusLine": {
5959
"type": "command",
60-
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/.claude/hooks/statusline.sh\""
60+
"command": "bash \"${CLAUDE_PROJECT_DIR:-.}/scripts/local/hooks/statusline.sh\""
6161
},
6262
"permissions": {
6363
"allow": [

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ temp/
1111
*.duckdb.wal
1212
.claude/.state/
1313
.claude/edit-log.jsonl
14+
.mcp.json
15+
.claude/.javaducker/
16+
scripts/local/

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
Code and content intelligence server for Claude Code. Indexes source files, documents, plans, notes, and threads into DuckDB with semantic search, dependency graphs, content classification, session history, and Reladomo support — all accessible via 49 MCP tools and 59 REST endpoints.
88

9+
> **New here?** See [start-here.md](start-here.md) for setup instructions including how to recreate local scripts.
10+
911
## Tech Stack
1012

1113
- **Java 21** + **Spring Boot 3.2**

0 commit comments

Comments
 (0)