Evaluate: Typed tool hooks (beforeToolCall/afterToolCall) for terraphim-skills
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Idoneità per principianti
- 30/100
Direzione di ricerca
Read ~/.claude/hooks/pre_tool_use.sh and ~/.claude/hooks/post_tool_use.sh to understand the current shell-hook contracts, then review knowledge/claude-agent-sdk-reference.md and the linked Pi hook design. Define a compatible Rust trait, compare shell invocation with Rust dispatch, and prototype the git-safety guard. Done means the benchmark, prototype, and an explicit adopt, retain, or hybrid decision are documented.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Parent Epic
#682 -- Evaluate Pi architectural patterns
Pattern
Pi's agent-core provides typed hooks at the tool execution boundary:
beforeToolCall: async ({ toolCall, args, context }) => {
if (toolCall.name === "bash" && args.command.includes("rm -rf")) {
return { block: true, reason: "Destructive command blocked" };
}
}
afterToolCall: async ({ toolCall, result, isError, context }) => {
return { details: { ...result.details, audited: true } };
}
These hooks:
- Run after argument validation but before execution (beforeToolCall)
- Can block execution with a typed reason
- Can modify tool results before they reach the LLM (afterToolCall)
- Are in-process callbacks with full type safety (not JSON over shell)
Current State
terraphim-skills hooks system:
- PreToolUse (
~/.claude/hooks/pre_tool_use.sh): git safety guard + KG text replacement. Shell script, receives JSON on stdin, returns JSON on stdout. - PostToolUse (
~/.claude/hooks/post_tool_use.sh): learning capture for failed commands. Shell script. - Both are shell commands -- no type safety, JSON parsing overhead, subprocess spawn cost.
Claude Code hooks:
- 22 lifecycle events
- Shell command, HTTP POST, or prompt/agent types
- JSON-based input/output contract
- Exit code 2 for blocking
Claude Agent SDK hooks:
- Callback functions (Python/TypeScript) -- closer to Pi's model
- Typed input objects, structured output
permissionDecision: "deny"for blocking
Evaluation Questions
- Should terraphim-skills adopt typed Rust hooks? Current shell hooks have subprocess overhead (~50ms per invocation). A Rust-native hook system would be sub-millisecond.
- What's the right abstraction? Pi uses
{ block: true, reason }. Claude uses{ permissionDecision: "deny", permissionDecisionReason }. terraphim could use a trait:fn before_tool_call(&self, tool: &ToolCall, args: &Value) -> HookResult. - Does this replace or complement shell hooks? Shell hooks are user-facing (CLAUDE.md configurable). Rust hooks would be for skill/extension developers.
- Integration with terraphim-skills Markdown format: Skills are currently Markdown files. Typed hooks would require a Rust module alongside the Markdown. Is this acceptable complexity?
Acceptance Criteria
- Design a Rust hook trait compatible with terraphim-skills
- Benchmark: shell hook invocation time vs Rust trait dispatch
- Prototype: port git-safety-guard from shell to Rust hook
- Decision: adopt Rust hooks, keep shell-only, or hybrid approach
References
- Pi beforeToolCall/afterToolCall: https://github.com/badlogic/pi-mono/tree/main/packages/agent
- Current shell hooks: ~/.claude/hooks/pre_tool_use.sh, ~/.claude/hooks/post_tool_use.sh
- terraphim-skills: https://github.com/terraphim/terraphim-skills
- Claude Agent SDK hooks: knowledge/claude-agent-sdk-reference.md
- Lingua principale
- Rust
- Stelle
- 62
- Fork
- 5
- Merge medio
- 2h 27m
- PR unite (30g)
- 1
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Altre issue di terraphim/terraphim-ai
-
Difficoltà 5/5 Più di una settimana Idoneità per principianti 25/100
terraphim/terraphim-ai#885 ·
-
Difficoltà 4/5 3-5 giorni Idoneità per principianti 55/100
terraphim/terraphim-ai#871 ·
-
enhancement
Difficoltà 5/5 Più di una settimana Idoneità per principianti 25/100
terraphim/terraphim-ai#810 · 2 commenti ·
-
enhancement
Difficoltà 5/5 Più di una settimana Idoneità per principianti 35/100
terraphim/terraphim-ai#729 ·
-
enhancement
Difficoltà 5/5 Più di una settimana Idoneità per principianti 35/100
terraphim/terraphim-ai#728 ·
Tutte le issue di terraphim/terraphim-ai
Issue simili
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 86/100
kwakseongjae/auto-hwp#319 ·
-
area:cli bug filter-quality good first issue priority:medium
Difficoltà 2/5 1-3 ore Idoneità per principianti 84/100
-
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 72/100
bevyengine/bevy#25861 ·
-
comp-datalake
Difficoltà 2/5 1-3 ore Idoneità per principianti 88/100
ClickHouse/ClickHouse#121222 ·
-
enhancement remote
Difficoltà 2/5 1-3 ore Idoneità per principianti 68/100