* feat: Add Claude Code integration plugin Complete port of hindsight-openclaw (v0.4.19) adapted to Claude Code's hook-based plugin architecture. Pure Python stdlib, no external dependencies. - Auto-recall via UserPromptSubmit hook (additionalContext injection) - Auto-retain via async Stop hook (chunked retention with sliding window) - Daemon management (auto-start/stop hindsight-embed via uvx) - Dynamic bank IDs with per-agent/project/channel/user granularity - All 34 configuration options with env var overrides - File-based state persistence with fcntl locking - Graceful degradation on all error paths Works with Claude Code Channels (Telegram, Discord, Slack) and interactive sessions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: Set correct chunked retention defaults (10/2, not 1/0) retainEveryNTurns=10 and retainOverlapTurns=2 are the production-tested values — every 10 turns, retain a 12-turn sliding window. The previous defaults (1/0) would retain every single turn with no overlap, defeating the chunked retention design that prevents API bombardment. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: Align recallBudget and daemonIdleTimeout with Openclaw defaults recallBudget: "low" → "mid" (Openclaw default) daemonIdleTimeout: 300 → 0 (Openclaw default, never auto-stop) As an official Hindsight integration, defaults should match Openclaw. Users can optimize locally via settings.json or env vars. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
187 lines
6.3 KiB
Python
Executable file
187 lines
6.3 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
"""Auto-retain hook for Stop event.
|
|
|
|
Port of: agent_end handler in Openclaw index.js
|
|
Adapted for Claude Code hooks (ephemeral process, JSON stdin/stdout).
|
|
|
|
Flow:
|
|
1. Read hook input from stdin (session_id, transcript_path, cwd)
|
|
2. Read conversation transcript from transcript_path
|
|
3. Apply chunked retention logic (retainEveryNTurns + overlap window)
|
|
4. Resolve API URL (external, existing local, or auto-start daemon)
|
|
5. Derive bank ID and ensure mission
|
|
6. Format transcript (strip memory tags, filter roles)
|
|
7. POST to Hindsight retain API (async)
|
|
|
|
Exit codes:
|
|
0 — always (graceful degradation on any error)
|
|
"""
|
|
|
|
import json
|
|
import os
|
|
import sys
|
|
import time
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
from lib.bank import derive_bank_id, ensure_bank_mission
|
|
from lib.client import HindsightClient
|
|
from lib.config import debug_log, load_config
|
|
from lib.content import (
|
|
prepare_retention_transcript,
|
|
slice_last_turns_by_user_boundary,
|
|
)
|
|
from lib.daemon import get_api_url
|
|
from lib.state import increment_turn_count
|
|
|
|
|
|
def read_transcript(transcript_path: str) -> list:
|
|
"""Read a JSONL transcript file and return list of message dicts.
|
|
|
|
Claude Code transcript format nests messages:
|
|
{type: "user", message: {role: "user", content: "..."}, uuid: "...", ...}
|
|
Also supports flat format for testing:
|
|
{role: "user", content: "..."}
|
|
"""
|
|
if not transcript_path or not os.path.isfile(transcript_path):
|
|
return []
|
|
messages = []
|
|
try:
|
|
with open(transcript_path) as f:
|
|
for line in f:
|
|
line = line.strip()
|
|
if not line:
|
|
continue
|
|
try:
|
|
entry = json.loads(line)
|
|
# Claude Code nested format: {type: "user", message: {role, content}}
|
|
if entry.get("type") in ("user", "assistant"):
|
|
msg = entry.get("message", {})
|
|
if isinstance(msg, dict) and msg.get("role"):
|
|
messages.append(msg)
|
|
# Flat format (testing / future compatibility)
|
|
elif "role" in entry and "content" in entry:
|
|
messages.append(entry)
|
|
except json.JSONDecodeError:
|
|
continue
|
|
except OSError:
|
|
pass
|
|
return messages
|
|
|
|
|
|
def main():
|
|
config = load_config()
|
|
|
|
if not config.get("autoRetain"):
|
|
debug_log(config, "Auto-retain disabled, exiting")
|
|
return
|
|
|
|
# Read hook input from stdin
|
|
try:
|
|
hook_input = json.load(sys.stdin)
|
|
except (json.JSONDecodeError, EOFError):
|
|
print("[Hindsight] Failed to read hook input", file=sys.stderr)
|
|
return
|
|
|
|
debug_log(config, f"Stop hook input keys: {list(hook_input.keys())}")
|
|
|
|
session_id = hook_input.get("session_id", "unknown")
|
|
transcript_path = hook_input.get("transcript_path", "")
|
|
|
|
# Read full transcript
|
|
all_messages = read_transcript(transcript_path)
|
|
if not all_messages:
|
|
debug_log(config, "No messages in transcript, skipping retain")
|
|
return
|
|
|
|
debug_log(config, f"Read {len(all_messages)} messages from transcript")
|
|
|
|
# Chunked retention logic — port of Openclaw's retainEveryNTurns + sliding window
|
|
retain_every_n = max(1, config.get("retainEveryNTurns", 1))
|
|
retain_full_window = False
|
|
messages_to_retain = all_messages
|
|
|
|
if retain_every_n > 1:
|
|
turn_count = increment_turn_count(session_id)
|
|
if turn_count % retain_every_n != 0:
|
|
next_at = ((turn_count // retain_every_n) + 1) * retain_every_n
|
|
debug_log(config, f"Turn {turn_count}/{retain_every_n}, skipping retain (next at turn {next_at})")
|
|
return
|
|
|
|
# Sliding window: N turns + configured overlap
|
|
overlap_turns = config.get("retainOverlapTurns", 0)
|
|
window_turns = retain_every_n + overlap_turns
|
|
messages_to_retain = slice_last_turns_by_user_boundary(all_messages, window_turns)
|
|
retain_full_window = True
|
|
debug_log(
|
|
config,
|
|
f"Turn {turn_count}: chunked retain firing "
|
|
f"(window: {window_turns} turns, {len(messages_to_retain)} messages)",
|
|
)
|
|
|
|
# Format transcript
|
|
retain_roles = config.get("retainRoles", ["user", "assistant"])
|
|
transcript, message_count = prepare_retention_transcript(messages_to_retain, retain_roles, retain_full_window)
|
|
|
|
if not transcript:
|
|
debug_log(config, "Empty transcript after formatting, skipping retain")
|
|
return
|
|
|
|
# Resolve API URL
|
|
def _dbg(*a):
|
|
debug_log(config, *a)
|
|
|
|
try:
|
|
api_url = get_api_url(config, debug_fn=_dbg, allow_daemon_start=True)
|
|
except RuntimeError as e:
|
|
print(f"[Hindsight] {e}", file=sys.stderr)
|
|
return
|
|
|
|
api_token = config.get("hindsightApiToken")
|
|
try:
|
|
client = HindsightClient(api_url, api_token)
|
|
except ValueError as e:
|
|
print(f"[Hindsight] Invalid API URL: {e}", file=sys.stderr)
|
|
return
|
|
|
|
# Derive bank ID and ensure mission
|
|
bank_id = derive_bank_id(hook_input, config)
|
|
ensure_bank_mission(client, bank_id, config, debug_fn=_dbg)
|
|
|
|
# Unique document ID — mirrors Openclaw: {sessionKey}-{timestamp}
|
|
document_id = f"{session_id}-{int(time.time() * 1000)}"
|
|
|
|
debug_log(
|
|
config, f"Retaining to bank '{bank_id}', doc '{document_id}', {message_count} messages, {len(transcript)} chars"
|
|
)
|
|
|
|
# POST to Hindsight retain API
|
|
try:
|
|
response = client.retain(
|
|
bank_id=bank_id,
|
|
content=transcript,
|
|
document_id=document_id,
|
|
context=config.get("retainContext", "claude-code"),
|
|
metadata={
|
|
"retained_at": time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime()),
|
|
"message_count": str(message_count),
|
|
"session_id": session_id,
|
|
},
|
|
timeout=15,
|
|
)
|
|
debug_log(config, f"Retain response: {json.dumps(response)[:200]}")
|
|
except Exception as e:
|
|
print(f"[Hindsight] Retain failed: {e}", file=sys.stderr)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
main()
|
|
except Exception as e:
|
|
print(f"[Hindsight] Unexpected error in retain: {e}", file=sys.stderr)
|
|
try:
|
|
from lib.config import load_config
|
|
|
|
sys.exit(2 if load_config().get("debug") else 0)
|
|
except Exception:
|
|
sys.exit(0)
|