Files
brain/user-level-files/hooks/economy-verifier.py
T
Дмитрий ed9bade863 feat: extract brain artifacts from Liderra + ~/.claude/
project-files/:
- CLAUDE.md.template (266 lines)
- docs/Pravila_raboty_Claude.template.md (720 lines)
- docs/Plugin_stack_rules.template.md (916 lines)
- docs/Tooling.template.md (613 lines)
- docs/CHANGELOG_claude_md.template.md
- docs/visualizations/hooks-skills-plugins-map.html (3122 lines)
- .mcp.json.template (universal: playwright/github/semgrep; laravel-boost dropped)

user-level-files/:
- hooks/ (10 Python files: skill-marker, skill-check, economy-* x8)
- settings-fragment.json (enabledPlugins + permissions + hooks only)
- marketplaces.json (3 sources)
- plugins-manifest.json (4 plugins pinned with gitCommitSha)
- mcp-user.template.json (magic with <<MAGIC_API_KEY>> placeholder)

Gitleaks scan: 0 findings.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-11 00:46:51 +03:00

50 lines
1.3 KiB
Python

"""Stop hook wrapper for Sonnet 4.6 agent verifier.
The actual agent prompt + decision logic is in settings.json (type: agent).
This script exists as fallback test harness + to satisfy self-check
infrastructure expectations."""
import json
import os
import sys
import tempfile
try:
sys.stdin.reconfigure(encoding="utf-8", errors="replace")
except Exception:
pass
def main() -> None:
try:
data = json.load(sys.stdin)
except Exception:
return
sid = data.get("session_id")
if not sid:
return
state_path = os.path.join(tempfile.gettempdir(), f"claude-economy-{sid}.json")
if not os.path.exists(state_path):
return
try:
with open(state_path, encoding="utf-8") as f:
state = json.load(f)
except Exception:
return
level = state.get("level")
if level is None or level == 100:
return
# Agent-type hook is configured in settings.json. This wrapper emits
# a marker indicating verifier should fire for this level.
out = {
"hookSpecificOutput": {
"hookEventName": "Stop",
"additionalContext": f"Verifier marker: economy level {state.get('label', level)} active",
}
}
sys.stdout.write(json.dumps(out, ensure_ascii=True))
if __name__ == "__main__":
main()