Generic Constructor-Pattern agent kit for Claude Code. Zero personal data, fully English, MIT-licensed. Contents: - 34 reusable blocks (baseline, rules, stack/deploy/domain/api/scraper) - 14 cross-project agent manifests (code/ml/infra/researcher/critic/...) - 6 portable skills (/new-agent, /research, /test-gen, /debug-deep, /pr-review, /refactor) - Rust assembler (single binary, ~500 KB) - 3 hooks (auto-reassemble, pre-commit validate, no-hand-edit) - install.sh (idempotent, cargo-builds on first run) - MIT LICENSE All 6 sanity greps pass: 0 Russian text, 0 specific project names, 0 incident numbers, 0 user paths, 0 hardcoded IPs, 0 API keys. cargo check + assemble --validate: both pass on 14 manifests. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
1 KiB
Bash
Executable file
38 lines
1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# PreToolUse(Bash) — validate all agent manifests before `git commit` in ~/.claude.
|
|
#
|
|
# Trigger: Bash command contains "git commit" AND current directory is under ~/.claude.
|
|
# On validation failure: print FAIL list to stderr, exit 1 → Claude Code blocks the commit.
|
|
#
|
|
# Stdin: JSON with tool_input.command
|
|
|
|
set -eu
|
|
|
|
ASSEMBLER="$HOME/.claude/agents/_assembler/target/release/assemble"
|
|
[ -x "$ASSEMBLER" ] || exit 0
|
|
|
|
CMD=$(cat | jq -r '.tool_input.command // empty')
|
|
|
|
# Only act on git commit inside ~/.claude
|
|
case "$CMD" in
|
|
*"git commit"*) ;;
|
|
*) exit 0 ;;
|
|
esac
|
|
|
|
# Check cwd is under ~/.claude
|
|
case "$PWD" in
|
|
"$HOME/.claude"*) ;;
|
|
*) exit 0 ;;
|
|
esac
|
|
|
|
OUTPUT=$("$ASSEMBLER" --validate 2>&1 || true)
|
|
if echo "$OUTPUT" | grep -q '^FAIL'; then
|
|
echo "[assemble-validate] agent manifest validation FAILED:" >&2
|
|
echo "$OUTPUT" | grep -E '^(FAIL|OK)' | grep '^FAIL' >&2
|
|
echo "" >&2
|
|
echo "Fix manifests in ~/.claude/agents/_manifests/ before committing." >&2
|
|
echo "Run: $ASSEMBLER --validate" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|