Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

Commit d29c3da

Browse files
committed
chore: update plugin and config files
- marketplace.json: version bump - plugin.json: cleanup unused fields - hooks.json: adjust hook configurations - otel-collector-config.yaml: simplify OTLP settings
1 parent 9ea6e0e commit d29c3da

4 files changed

Lines changed: 10 additions & 15 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"name": "memory-capture",
1313
"description": "Git-backed memory system for Claude Code. Captures decisions, learnings, and context as git notes with semantic search and automatic recall.",
1414
"version": "1.0.0",
15-
"source": "./"
15+
"source": "./../"
1616
}
1717
]
1818
}

.claude-plugin/plugin.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,5 @@
1515
"semantic-search",
1616
"context",
1717
"recall"
18-
],
19-
"commands": "./commands/",
20-
"skills": "./skills/"
18+
]
2119
}

.claude/hooks.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"event": "PostToolUse",
88
"matcher": "Write|Edit|str_replace_editor",
99
"type": "command",
10-
"command": "cd /Users/AllenR1_1/Projects/zircote/git-notes-memory && uv run ruff format $CLAUDE_FILE_PATHS 2>/dev/null || true",
10+
"command": "cd \"$CLAUDE_PROJECT_DIR\" && uv run ruff format $CLAUDE_FILE_PATHS 2>/dev/null || true",
1111
"conditions": {
1212
"fileExtensions": [".py", ".pyi"]
1313
}
@@ -18,7 +18,7 @@
1818
"event": "PostToolUse",
1919
"matcher": "Write|Edit|str_replace_editor",
2020
"type": "command",
21-
"command": "cd /Users/AllenR1_1/Projects/zircote/git-notes-memory && uv run ruff check $CLAUDE_FILE_PATHS --output-format=concise 2>/dev/null | head -20 || true",
21+
"command": "cd \"$CLAUDE_PROJECT_DIR\" && uv run ruff check $CLAUDE_FILE_PATHS --output-format=concise 2>/dev/null | head -20 || true",
2222
"conditions": {
2323
"fileExtensions": [".py", ".pyi"]
2424
}
@@ -29,7 +29,7 @@
2929
"event": "PostToolUse",
3030
"matcher": "Write|Edit|str_replace_editor",
3131
"type": "command",
32-
"command": "cd /Users/AllenR1_1/Projects/zircote/git-notes-memory && uv run mypy $CLAUDE_FILE_PATHS 2>&1 | grep -E 'error:' | head -10 || true",
32+
"command": "cd \"$CLAUDE_PROJECT_DIR\" && uv run mypy $CLAUDE_FILE_PATHS 2>&1 | grep -E 'error:' | head -10 || true",
3333
"conditions": {
3434
"fileExtensions": [".py", ".pyi"]
3535
}
@@ -40,7 +40,7 @@
4040
"event": "PostToolUse",
4141
"matcher": "Write|Edit|str_replace_editor",
4242
"type": "command",
43-
"command": "cd /Users/AllenR1_1/Projects/zircote/git-notes-memory && uv run bandit -ll $CLAUDE_FILE_PATHS 2>/dev/null | grep -E '^>>' | head -10 || true",
43+
"command": "cd \"$CLAUDE_PROJECT_DIR\" && uv run bandit -ll $CLAUDE_FILE_PATHS 2>/dev/null | grep -E '^>>' | head -10 || true",
4444
"conditions": {
4545
"fileExtensions": [".py"]
4646
}
@@ -51,7 +51,7 @@
5151
"event": "PreToolUse",
5252
"matcher": "Bash",
5353
"type": "command",
54-
"command": "if echo \"$CLAUDE_TOOL_INPUT\" | grep -qE 'git commit'; then cd /Users/AllenR1_1/Projects/zircote/git-notes-memory && make quality; fi",
54+
"command": "if echo \"$CLAUDE_TOOL_INPUT\" | grep -qE 'git commit'; then cd \"$CLAUDE_PROJECT_DIR\" && make quality; fi",
5555
"blocking": true
5656
}
5757
]

docker/otel-collector-config.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,9 @@ exporters:
6565
# Export logs to Loki
6666
loki:
6767
endpoint: http://loki:3100/loki/api/v1/push
68-
labels:
69-
attributes:
70-
service.name: "service"
71-
level: "level"
72-
resource:
73-
deployment.environment: "environment"
68+
default_labels_enabled:
69+
exporter: false
70+
job: true
7471

7572
# Debug output (disable in production)
7673
debug:

0 commit comments

Comments
 (0)