agnes-the-ai-analyst/docs/setup/claude_settings.json
ZdenekSrotyr 7fc5365891
release: 0.46.3 — self-heal session pipeline + clearer diagnose (#220)
## Summary

Verified against production: `claude -p` headless mode doesn't fire SessionEnd hooks (proven via `--output-format stream-json --include-hook-events`: zero `SessionEnd` events), so any session JSONLs from `-p` invocations stay orphaned locally and never reach the server. Fix: add `agnes push --quiet` as a third SessionStart entry — symmetric self-heal alongside the existing `agnes pull` entry. Existing workspaces pick this up on their next `agnes init` via the marker-based migration already in `cli/lib/hooks.py`.

Separately: a colleague's fresh install showed `agnes diagnose` warning "uploads are not being processed", which led them to suspect their `agnes push` was broken. The warning is actually about the LLM-based `verification-detector` backlog (uploads themselves were arriving fine — confirmed by 23+3 JSONLs landed on the server while the warning was firing). Reword the warning to "verification-detector backlog" + add `last_processed` to the diagnose dict so operators don't have to grep logs to confirm.

## Test plan

- [x] `pytest tests/test_lib_hooks.py` — updated count + added `agnes push in SessionStart` assertion.
- [x] `pytest tests/test_setup_hooks_template.py` — updated.
- [x] `pytest tests/test_clean_install_integration.py` — updated.
- [x] `pytest tests/test_health_session_pipeline.py` — updated warning text + asserted `last_processed` field.
<!-- devin-review-badge-begin -->

---

<a href="https://app.devin.ai/review/keboola/agnes-the-ai-analyst/pull/220" target="_blank">
  <picture>
    <source media="(prefers-color-scheme: dark)" srcset="https://static.devin.ai/assets/gh-open-in-devin-review-dark.svg?v=1">
    <img src="https://static.devin.ai/assets/gh-open-in-devin-review-light.svg?v=1" alt="Open in Devin Review">
  </picture>
</a>
<!-- devin-review-badge-end -->
2026-05-07 17:41:22 +02:00

153 lines
4.1 KiB
JSON

{
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "agnes pull --quiet 2>/dev/null || true"
}
]
},
{
"hooks": [
{
"type": "command",
"command": "bash -c \"agnes push --quiet 2>/dev/null || true\""
}
]
}
],
"SessionEnd": [
{
"hooks": [
{
"type": "command",
"command": "agnes push --quiet 2>/dev/null || true"
}
]
}
]
},
"permissions": {
"allow": [
"Bash(git rebase:*)",
"Bash(git add:*)",
"Bash(git checkout:*)",
"Bash(git branch:*)",
"Bash(git cherry-pick:*)",
"Bash(git log:*)",
"Bash(git show:*)",
"Bash(git commit:*)",
"Bash(git fetch:*)",
"Bash(git diff:*)",
"Bash(git status:*)",
"Bash(git remote:*)",
"Bash(git tag:*)",
"Bash(find:*)",
"Bash(ls:*)",
"Bash(tree:*)",
"Bash(head:*)",
"Bash(tail:*)",
"Bash(wc:*)",
"Bash(which:*)",
"Bash(where:*)",
"Bash(pwd:*)",
"Bash(whoami:*)",
"Bash(echo:*)",
"Bash(file:*)",
"Bash(stat:*)",
"Bash(bash server/scripts/*)",
"Bash(python server/scripts/*)",
"Bash(ssh:*)",
"Bash(scp:*)",
"WebFetch(domain:github.com)",
"WebSearch"
],
"deny": [
"Read(**/.env)",
"Read(**/.env.*)",
"Read(**/credentials*)",
"Read(**/*credentials*)",
"Read(**/.credentials*)",
"Read(**/secrets*)",
"Read(**/*secrets*)",
"Read(**/.secrets*)",
"Read(**/*.pem)",
"Read(**/*.key)",
"Read(**/*.p12)",
"Read(**/*.pfx)",
"Read(**/*.keystore)",
"Read(**/*id_rsa*)",
"Read(**/*id_dsa*)",
"Read(**/*id_ecdsa*)",
"Read(**/*id_ed25519*)",
"Read(**/.ssh/*)",
"Read(**/.aws/credentials)",
"Read(**/.aws/config)",
"Read(**/.kube/config)",
"Read(**/.docker/config.json)",
"Read(**/.npmrc)",
"Read(**/.pypirc)",
"Read(**/.netrc)",
"Read(**/.git-credentials)",
"Read(**/master.key)",
"Read(**/config/master.key)",
"Read(**/*.crt)",
"Read(**/*.cer)",
"Read(**/*.jks)",
"Read(**/password*)",
"Read(**/*password*)",
"Read(**/token*)",
"Read(**/*token*)",
"Read(**/apikey*)",
"Read(**/*apikey*)",
"Read(**/.htpasswd)",
"Write(**/.env)",
"Write(**/.env.*)",
"Write(**/credentials*)",
"Write(**/*credentials*)",
"Write(**/secrets*)",
"Write(**/*secrets*)",
"Write(**/*.pem)",
"Write(**/*.key)",
"Write(**/.ssh/*)",
"Edit(**/.env)",
"Edit(**/.env.*)",
"Edit(**/credentials*)",
"Edit(**/*credentials*)",
"Edit(**/secrets*)",
"Edit(**/*secrets*)",
"Edit(**/*.pem)",
"Edit(**/*.key)",
"Edit(**/.ssh/*)",
"Bash(cat:*)",
"Write(server/**)",
"Edit(server/**)"
],
"ask": [
"Bash(rm:*)",
"Bash(git reset:--hard:*)",
"Bash(git clean:*)",
"Bash(git push:--force:*)",
"Bash(git push:-f:*)",
"Bash(npm install:*)",
"Bash(yarn add:*)",
"Bash(pip install:*)",
"Bash(composer install:*)",
"Bash(docker:*)",
"Bash(kubectl:*)",
"Bash(grep:*)",
"Bash(env:*)",
"Write(**/package.json)",
"Edit(**/package.json)",
"Write(**/composer.json)",
"Edit(**/composer.json)",
"Write(**/package-lock.json)",
"Write(**/composer.lock)",
"Write(**/yarn.lock)",
"Write(**/.gitignore)",
"Edit(**/.gitignore)"
]
}
}