53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
#!/usr/bin/env python3
|
|
# ============================================================
|
|
# SessionStart Hook: auto-breath on session start
|
|
# 对话开始钩子:自动浮现最高权重的未解决记忆
|
|
#
|
|
# On SessionStart, this script calls the Ombre Brain MCP server's
|
|
# breath tool (empty query = surfacing mode) via HTTP and prints
|
|
# the result to stdout so Claude sees it as session context.
|
|
#
|
|
# This works for OMBRE_TRANSPORT=streamable-http deployments.
|
|
# For local stdio deployments, the script falls back gracefully.
|
|
#
|
|
# Config:
|
|
# OMBRE_HOOK_URL — override the server URL (default: http://localhost:8000)
|
|
# OMBRE_HOOK_SKIP — set to "1" to disable the hook temporarily
|
|
# ============================================================
|
|
|
|
import os
|
|
import sys
|
|
import urllib.request
|
|
import urllib.error
|
|
|
|
def main():
|
|
# Allow disabling the hook via env var
|
|
if os.environ.get("OMBRE_HOOK_SKIP") == "1":
|
|
sys.exit(0)
|
|
|
|
base_url = os.environ.get("OMBRE_HOOK_URL", "http://localhost:8000").rstrip("/")
|
|
|
|
req = urllib.request.Request(
|
|
f"{base_url}/breath-hook",
|
|
headers={"Accept": "text/plain"},
|
|
method="GET",
|
|
)
|
|
|
|
try:
|
|
with urllib.request.urlopen(req, timeout=8) as response:
|
|
raw = response.read().decode("utf-8")
|
|
output = raw.strip()
|
|
if output:
|
|
print(output)
|
|
except (urllib.error.URLError, OSError):
|
|
# Server not available (local stdio mode or not running) — silent fail
|
|
pass
|
|
except Exception:
|
|
# Any other error — silent fail, never block session start
|
|
pass
|
|
|
|
sys.exit(0)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|