Surfaced by today's untracked-files audit. None of these are accidents —
multiple are referenced by name in CLAUDE.md and memory files but were
never added.
Categories:
- docs/PHASE_AUDIT_GUIDE.md (106 LOC) — Claude Code phase audit guidance
- ops/systemd/lakehouse-langfuse-bridge.service — Langfuse bridge unit
- package.json — top-level npm manifest
- scripts/e2e_pipeline_check.sh + production_smoke.sh — real test scripts
- reports/kimi/audit-last-week*.md — the "Two reports live" CLAUDE.md cites
- tests/multi-agent/scenarios/ — 44 staffing scenarios (cutover decision A)
- tests/multi-agent/playbooks/ — 102 playbook records
- tests/battery/, tests/agent_test/PRD.md, tests/real-world/* — real tests
- sidecar/sidecar/{lab_ui,pipeline_lab}.py — 888 LOC dev-only UIs that
remain in service post-sidecar-drop (commit ba928b1 explicitly kept them)
Sensitivity check: scenarios use synthetic company names ("Heritage Foods",
"Cornerstone Fabrication"); audit reports describe code findings only;
no PII or secrets surfaced.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
29 lines
1.1 KiB
Desktop File
29 lines
1.1 KiB
Desktop File
[Unit]
|
|
Description=Lakehouse Langfuse → observer bridge — forwards LLM trace metadata to :3800 so KB learns from cost/latency/provider deltas
|
|
Documentation=file:///home/profit/lakehouse/mcp-server/langfuse_bridge.ts
|
|
After=network.target
|
|
# No hard dependency on either Langfuse or observer — if either is down,
|
|
# the bridge retries on the next tick without crashing. That's the
|
|
# whole point of the cursor state file.
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/home/profit/lakehouse
|
|
ExecStart=/home/profit/.bun/bin/bun run /home/profit/lakehouse/mcp-server/langfuse_bridge.ts
|
|
Restart=on-failure
|
|
RestartSec=30
|
|
# Credentials resolved from env. Matches how
|
|
# crates/gateway/src/v1/langfuse_trace.rs reads them so both producer
|
|
# (gateway emitter) and consumer (this bridge) share the same config.
|
|
EnvironmentFile=-/etc/lakehouse/langfuse.env
|
|
Environment=LANGFUSE_URL=http://localhost:3001
|
|
Environment=OBSERVER_URL=http://localhost:3800
|
|
Environment=LANGFUSE_POLL_MS=30000
|
|
Environment=LANGFUSE_BATCH_LIMIT=50
|
|
Environment=LANGFUSE_STATE_FILE=/var/lib/lakehouse-guard/langfuse_last_seen.json
|
|
KillSignal=SIGTERM
|
|
TimeoutStopSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|