Files
ZacharyZhang-NY 6f31415ed6 §9 acceptance: grep-zero sweep — every internal x.ai/grok identifier renamed
The PRD's first acceptance gate now holds: grep -RinE '\bx\.ai\b|grok'
crates/ --include='*.rs' → 0 matches (exempt: NOTICE and third-party
license archives, README provenance, and the required 'Based on Grok
Build Open Source' attribution, now sourced from version_attribution.txt).

Wire-visible renames (both sides in this repo, changed in lockstep):
- Auth method id 'grok.com' → 'kimi-code' (AuthMethodKind::KimiCode).
- Every x.ai/* and _x.ai/* ACP ext method and meta key → kigi/* /
  _kigi/* (~200 names; grokShell → kigiShell). Session-file replay keeps
  a read-side alias for the legacy '_x.ai/session/update' method so
  existing updates.jsonl histories load; writes emit only the new name
  (both directions test-pinned).
- Agent types grok-build* → kigi* with a documented legacy-prefix alias
  at resolution time so persisted sessions keep resolving.
- ToolNamespace/BuiltinAgentName GrokBuild* → Kigi* (wire snake_case
  kigi/kigi_concise/kigi_hashline; schema regenerated); grok_build
  implementation dirs renamed to kigi*.
- x-grok-* headers → x-kigi-*, __GROK_* sentinels → __KIGI_*, themes
  grokday/groknight → kigiday/kiginight (old persisted values fall back
  to the default theme), web_fetch allowlist xAI hosts → kimi.com +
  moonshot platforms, changelog CDN → this repo, grok-build changelog
  archives deleted.
- BYOK default endpoint removed: [endpoints] api_base_url is now truly
  optional with NO default — consumers fail fast with the flag name when
  unset (no silent x.ai egress). Mock harnesses inject it explicitly.
- System-prompt identity fixed: 'released by xAI' → 'an unofficial
  community CLI for Kimi' (template + regenerated encrypted form).

Also repaired pre-existing grok-era test debt found by the sweep: the
stale trace_classify default-model pin, the grok-pager UA label test,
pty-harness stale-binary reuse and non-hermetic moonshot routing (a PTY
test could previously reach the real api.moonshot.cn), and the outdated
oauth fixture scope key.

Gates: §9 grep 0; fmt clean; workspace check/clippy 0/0 (-D warnings);
FULL cargo test --workspace: 234 suites, 21,961 passed, 0 failed;
deny advisories ok.
2026-07-18 02:48:46 -04:00

119 lines
3.5 KiB
Markdown

# Hook Examples
Sample hooks for Kigi. Copy to `~/.kigi/hooks/` to enable globally, or to `<project>/.kigi/hooks/` for project-scoped hooks (requires `/hooks-trust`).
## Available Examples
### 1. Safe Shell Guard (`safe-shell.json`)
**Type:** blocking (`PreToolUse`)
Denies obviously destructive shell commands before they execute:
- `rm -rf /`, `sudo rm -rf`, `mkfs`, `dd` to devices, fork bombs
**Install:**
```sh
mkdir -p ~/.kigi/hooks/bin
cp examples/hooks/safe-shell.json ~/.kigi/hooks/
cp examples/hooks/bin/safe-shell-guard.sh ~/.kigi/hooks/bin/
chmod +x ~/.kigi/hooks/bin/safe-shell-guard.sh
```
### 2. No Recursive Grep (`no-recursive-grep.json`)
**Type:** blocking (`PreToolUse`)
Denies recursive `grep` invocations in the shell before they execute:
- `grep -r`, `grep -R`, `grep --recursive`, `grep --dereference-recursive`,
`grep -d recurse`, clustered flags (`grep -rn`, `grep -nri`), and `rgrep`
Recursive grep walks an entire directory tree into memory and can OOM-kill the
agent process on large repos. The system prompt already steers the model away from
this, but a prompt is advisory — this hook makes it a hard, deterministic block.
Point the model at the dedicated search tool (ripgrep-backed) instead.
It is careful to avoid false positives: `ls -R | grep foo` (the `-R` belongs to
`ls`), `grep -e -r file` (`-r` is the pattern), and `grep -- -r file` are all
allowed.
**Install:**
```sh
mkdir -p ~/.kigi/hooks/bin
cp examples/hooks/no-recursive-grep.json ~/.kigi/hooks/
cp examples/hooks/bin/no-recursive-grep-guard.py ~/.kigi/hooks/bin/
chmod +x ~/.kigi/hooks/bin/no-recursive-grep-guard.py
```
(Requires `python3` on `PATH`.)
### 3. Session Audit Log (`session-log.json`)
**Type:** passive (`SessionStart` + `SessionEnd`)
Appends session metadata to `~/.kigi/session-audit.log` — event, session ID, cwd, timestamp.
**Install:**
```sh
mkdir -p ~/.kigi/hooks/bin
cp examples/hooks/session-log.json ~/.kigi/hooks/
cp examples/hooks/bin/session-log.sh ~/.kigi/hooks/bin/
chmod +x ~/.kigi/hooks/bin/session-log.sh
```
### 4. Tool Activity Logger (`tool-logger.json`)
**Type:** passive (`PreToolUse` + `PostToolUse`)
Logs all tool calls to `~/.kigi/tool-activity.log` — tool name, event type, effective tool name, backgrounded status.
**Install:**
```sh
mkdir -p ~/.kigi/hooks/bin
cp examples/hooks/tool-logger.json ~/.kigi/hooks/
cp examples/hooks/bin/tool-logger.sh ~/.kigi/hooks/bin/
chmod +x ~/.kigi/hooks/bin/tool-logger.sh
```
## Format
Hook files use the Claude-compatible JSON format:
```json
{
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{ "type": "command", "command": "bin/check.sh", "timeout": 5 }
]
}
]
}
}
```
- **Event names:** `SessionStart`, `PreToolUse`, `PostToolUse`, `SessionEnd`
- **Matcher:** regex on tool name. Claude names like `Bash`, `Read`, `Edit` are auto-expanded to also match Kigi names (`run_terminal_cmd`, `read_file`, `search_replace`)
- **Timeout:** in seconds (default: 5)
- **Command:** path to script (relative to hook file directory) or inline shell command
## Script Contract
Scripts receive the hook event envelope as JSON on **stdin** and should write a response to **stdout**:
**For blocking hooks (`PreToolUse`):**
```json
{"decision":"allow"}
```
or
```json
{"decision":"deny","reason":"Explanation for the user"}
```
**Exit codes:** `0` = allow, `2` = deny, other = fail-open.
**For passive hooks:** stdout is informational only. Exit `0` for success.
## Uninstall
Remove the JSON file from `~/.kigi/hooks/`. The hook stops running on the next session.