Compare commits
11 Commits
perplexity
...
research/r
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1806ab6c42 | ||
| 07a9b91a6f | |||
| 9becaa65e7 | |||
| b51a27ff22 | |||
| 8e91e114e6 | |||
| cb95b2567c | |||
| dcf97b5d8f | |||
|
|
4beae6e6c6 | ||
| 9aaabb7d37 | |||
| ac812179bf | |||
| 0cc91443ab |
@@ -209,7 +209,7 @@ skills:
|
||||
#
|
||||
# fallback_model:
|
||||
# provider: openrouter
|
||||
# model: anthropic/claude-sonnet-4
|
||||
# model: google/gemini-2.5-pro # was anthropic/claude-sonnet-4 — BANNED
|
||||
#
|
||||
# ── Smart Model Routing ────────────────────────────────────────────────
|
||||
# Optional cheap-vs-strong routing for simple turns.
|
||||
|
||||
75
docs/HERMES_MAXI_MANIFESTO.md
Normal file
75
docs/HERMES_MAXI_MANIFESTO.md
Normal file
@@ -0,0 +1,75 @@
|
||||
# Hermes Maxi Manifesto
|
||||
|
||||
_Adopted 2026-04-12. This document is the canonical statement of the Timmy Foundation's infrastructure philosophy._
|
||||
|
||||
## The Decision
|
||||
|
||||
We are Hermes maxis. One harness. One truth. No intermediary gateway layers.
|
||||
|
||||
Hermes handles everything:
|
||||
- **Cognitive core** — reasoning, planning, tool use
|
||||
- **Channels** — Telegram, Discord, Nostr, Matrix (direct, not via gateway)
|
||||
- **Dispatch** — task routing, agent coordination, swarm management
|
||||
- **Memory** — MemPalace, sovereign SQLite+FTS5 store, trajectory export
|
||||
- **Cron** — heartbeat, morning reports, nightly retros
|
||||
- **Health** — process monitoring, fleet status, self-healing
|
||||
|
||||
## What This Replaces
|
||||
|
||||
OpenClaw was evaluated as a gateway layer (March–April 2026). The assessment:
|
||||
|
||||
| Capability | OpenClaw | Hermes Native |
|
||||
|-----------|----------|---------------|
|
||||
| Multi-channel comms | Built-in | Direct integration per channel |
|
||||
| Persistent memory | SQLite (basic) | MemPalace + FTS5 + trajectory export |
|
||||
| Cron/scheduling | Native cron | Huey task queue + launchd |
|
||||
| Multi-agent sessions | Session routing | Wizard fleet + dispatch router |
|
||||
| Procedural memory | None | Sovereign Memory Store |
|
||||
| Model sovereignty | Requires external provider | Ollama local-first |
|
||||
| Identity | Configurable persona | SOUL.md + Bitcoin inscription |
|
||||
|
||||
The governance concern (founder joined OpenAI, Feb 2026) sealed the decision, but the technical case was already clear: OpenClaw adds a layer without adding capability that Hermes doesn't already have or can't build natively.
|
||||
|
||||
## The Principle
|
||||
|
||||
Every external dependency is temporary falsework. If it can be built locally, it must be built locally. The target is a $0 cloud bill with full operational capability.
|
||||
|
||||
This applies to:
|
||||
- **Agent harness** — Hermes, not OpenClaw/Claude Code/Cursor
|
||||
- **Inference** — Ollama + local models, not cloud APIs
|
||||
- **Data** — SQLite + FTS5, not managed databases
|
||||
- **Hosting** — Hermes VPS + Mac M3 Max, not cloud platforms
|
||||
- **Identity** — Bitcoin inscription + SOUL.md, not OAuth providers
|
||||
|
||||
## Exceptions
|
||||
|
||||
Cloud services are permitted as temporary scaffolding when:
|
||||
1. The local alternative doesn't exist yet
|
||||
2. There's a concrete plan (with a Gitea issue) to bring it local
|
||||
3. The dependency is isolated and can be swapped without architectural changes
|
||||
|
||||
Every cloud dependency must have a `[FALSEWORK]` label in the issue tracker.
|
||||
|
||||
## Enforcement
|
||||
|
||||
- `BANNED_PROVIDERS.md` lists permanently banned providers (Anthropic)
|
||||
- Pre-commit hooks scan for banned provider references
|
||||
- The Swarm Governor enforces PR discipline
|
||||
- The Conflict Detector catches sibling collisions
|
||||
- All of these are stdlib-only Python with zero external dependencies
|
||||
|
||||
## History
|
||||
|
||||
- 2026-03-28: OpenClaw evaluation spike filed (timmy-home #19)
|
||||
- 2026-03-28: OpenClaw Bootstrap epic created (timmy-config #51–#63)
|
||||
- 2026-03-28: Governance concern flagged (founder → OpenAI)
|
||||
- 2026-04-09: Anthropic banned (timmy-config PR #440)
|
||||
- 2026-04-12: OpenClaw purged — Hermes maxi directive adopted
|
||||
- timmy-config PR #487 (7 files, merged)
|
||||
- timmy-home PR #595 (3 files, merged)
|
||||
- the-nexus PRs #1278, #1279 (merged)
|
||||
- 2 issues closed, 27 historical issues preserved
|
||||
|
||||
---
|
||||
|
||||
_"The clean pattern is to separate identity, routing, live task state, durable memory, reusable procedure, and artifact truth. Hermes does all six."_
|
||||
70
docs/RUNBOOK_INDEX.md
Normal file
70
docs/RUNBOOK_INDEX.md
Normal file
@@ -0,0 +1,70 @@
|
||||
# Operational Runbook Index
|
||||
|
||||
Last updated: 2026-04-13
|
||||
|
||||
Quick-reference index for common operational tasks across the Timmy Foundation infrastructure.
|
||||
|
||||
## Fleet Operations
|
||||
|
||||
| Task | Location | Command/Procedure |
|
||||
|------|----------|-------------------|
|
||||
| Deploy fleet update | fleet-ops | `ansible-playbook playbooks/provision_and_deploy.yml --ask-vault-pass` |
|
||||
| Check fleet health | fleet-ops | `python3 scripts/fleet_readiness.py` |
|
||||
| Agent scorecard | fleet-ops | `python3 scripts/agent_scorecard.py` |
|
||||
| View fleet manifest | fleet-ops | `cat manifest.yaml` |
|
||||
|
||||
## the-nexus (Frontend + Brain)
|
||||
|
||||
| Task | Location | Command/Procedure |
|
||||
|------|----------|-------------------|
|
||||
| Run tests | the-nexus | `pytest tests/` |
|
||||
| Validate repo integrity | the-nexus | `python3 scripts/repo_truth_guard.py` |
|
||||
| Check swarm governor | the-nexus | `python3 bin/swarm_governor.py --status` |
|
||||
| Start dev server | the-nexus | `python3 server.py` |
|
||||
| Run deep dive pipeline | the-nexus | `cd intelligence/deepdive && python3 pipeline.py` |
|
||||
|
||||
## timmy-config (Control Plane)
|
||||
|
||||
| Task | Location | Command/Procedure |
|
||||
|------|----------|-------------------|
|
||||
| Run Ansible deploy | timmy-config | `cd ansible && ansible-playbook playbooks/site.yml` |
|
||||
| Scan for banned providers | timmy-config | `python3 bin/banned_provider_scan.py` |
|
||||
| Check merge conflicts | timmy-config | `python3 bin/conflict_detector.py` |
|
||||
| Muda audit | timmy-config | `bash fleet/muda-audit.sh` |
|
||||
|
||||
## hermes-agent (Agent Framework)
|
||||
|
||||
| Task | Location | Command/Procedure |
|
||||
|------|----------|-------------------|
|
||||
| Start agent | hermes-agent | `python3 run_agent.py` |
|
||||
| Check provider allowlist | hermes-agent | `python3 tools/provider_allowlist.py --check` |
|
||||
| Run test suite | hermes-agent | `pytest` |
|
||||
|
||||
## Incident Response
|
||||
|
||||
### Agent Down
|
||||
1. Check health endpoint: `curl http://<host>:<port>/health`
|
||||
2. Check systemd: `systemctl status hermes-<agent>`
|
||||
3. Check logs: `journalctl -u hermes-<agent> --since "1 hour ago"`
|
||||
4. Restart: `systemctl restart hermes-<agent>`
|
||||
|
||||
### Banned Provider Detected
|
||||
1. Run scanner: `python3 bin/banned_provider_scan.py`
|
||||
2. Check golden state: `cat ansible/inventory/group_vars/wizards.yml`
|
||||
3. Verify BANNED_PROVIDERS.yml is current
|
||||
4. Fix config and redeploy
|
||||
|
||||
### Merge Conflict Cascade
|
||||
1. Run conflict detector: `python3 bin/conflict_detector.py`
|
||||
2. Rebase oldest conflicting PR first
|
||||
3. Merge, then repeat — cascade resolves naturally
|
||||
|
||||
## Key Files
|
||||
|
||||
| File | Repo | Purpose |
|
||||
|------|------|---------|
|
||||
| `manifest.yaml` | fleet-ops | Fleet service definitions |
|
||||
| `config.yaml` | timmy-config | Agent runtime config |
|
||||
| `ansible/BANNED_PROVIDERS.yml` | timmy-config | Provider ban enforcement |
|
||||
| `portals.json` | the-nexus | Portal registry |
|
||||
| `vision.json` | the-nexus | Vision system config |
|
||||
94
docs/WASTE_AUDIT_2026-04-13.md
Normal file
94
docs/WASTE_AUDIT_2026-04-13.md
Normal file
@@ -0,0 +1,94 @@
|
||||
# Waste Audit — 2026-04-13
|
||||
|
||||
Author: perplexity (automated review agent)
|
||||
Scope: All Timmy Foundation repos, PRs from April 12-13 2026
|
||||
|
||||
## Purpose
|
||||
|
||||
This audit identifies recurring waste patterns across the foundation's recent PR activity. The goal is to focus agent and contributor effort on high-value work and stop repeating costly mistakes.
|
||||
|
||||
## Waste Patterns Identified
|
||||
|
||||
### 1. Merging Over "Request Changes" Reviews
|
||||
|
||||
**Severity: Critical**
|
||||
|
||||
the-door#23 (crisis detection and response system) was merged despite both Rockachopa and Perplexity requesting changes. The blockers included:
|
||||
- Zero tests for code described as "the most important code in the foundation"
|
||||
- Non-deterministic `random.choice` in safety-critical response selection
|
||||
- False-positive risk on common words ("alone", "lost", "down", "tired")
|
||||
- Early-return logic that loses lower-tier keyword matches
|
||||
|
||||
This is safety-critical code that scans for suicide and self-harm signals. Merging untested, non-deterministic code in this domain is the highest-risk misstep the foundation can make.
|
||||
|
||||
**Corrective action:** Enforce branch protection requiring at least 1 approval with no outstanding change requests before merge. No exceptions for safety-critical code.
|
||||
|
||||
### 2. Mega-PRs That Become Unmergeable
|
||||
|
||||
**Severity: High**
|
||||
|
||||
hermes-agent#307 accumulated 569 commits, 650 files changed, +75,361/-14,666 lines. It was closed without merge due to 10 conflicting files. The actual feature (profile-scoped cron) was then rescued into a smaller PR (#335).
|
||||
|
||||
This pattern wastes reviewer time, creates merge conflicts, and delays feature delivery.
|
||||
|
||||
**Corrective action:** PRs must stay under 500 lines changed. If a feature requires more, break it into stacked PRs. Branches older than 3 days without merge should be rebased or split.
|
||||
|
||||
### 3. Pervasive CI Failures Ignored
|
||||
|
||||
**Severity: High**
|
||||
|
||||
Nearly every PR reviewed in the last 24 hours has failing CI (smoke tests, sanity checks, accessibility audits). PRs are being merged despite red CI. This undermines the entire purpose of having CI.
|
||||
|
||||
**Corrective action:** CI must pass before merge. If CI is flaky or misconfigured, fix the CI — do not bypass it. The "Create merge commit (When checks succeed)" button exists for a reason.
|
||||
|
||||
### 4. Applying Fixes to Wrong Code Locations
|
||||
|
||||
**Severity: Medium**
|
||||
|
||||
the-beacon#96 fix #3 changed `G.totalClicks++` to `G.totalAutoClicks++` in `writeCode()` (the manual click handler) instead of `autoType()` (the auto-click handler). This inverts the tracking entirely. Rockachopa caught this in review.
|
||||
|
||||
This pattern suggests agents are pattern-matching on variable names rather than understanding call-site context.
|
||||
|
||||
**Corrective action:** Every bug fix PR must include the reasoning for WHY the fix is in that specific location. Include a before/after trace showing the bug is actually fixed.
|
||||
|
||||
### 5. Duplicated Effort Across Agents
|
||||
|
||||
**Severity: Medium**
|
||||
|
||||
the-testament#45 was closed with 7 conflicting files and replaced by a rescue PR #46. The original work was largely discarded. Multiple PRs across repos show similar patterns of rework: submit, get changes requested, close, resubmit.
|
||||
|
||||
**Corrective action:** Before opening a PR, check if another agent already has a branch touching the same files. Coordinate via issues, not competing PRs.
|
||||
|
||||
### 6. `wip:` Commit Prefixes Shipped to Main
|
||||
|
||||
**Severity: Low**
|
||||
|
||||
the-door#22 shipped 5 commits all prefixed `wip:` to main. This clutters git history and makes bisecting harder.
|
||||
|
||||
**Corrective action:** Squash or rewrite commit messages before merge. No `wip:` prefixes in main branch history.
|
||||
|
||||
## Priority Actions (Ranked)
|
||||
|
||||
1. **Immediately add tests to the-door crisis_detector.py and crisis_responder.py** — this code is live on main with zero test coverage and known false-positive issues
|
||||
2. **Enable branch protection on all repos** — require 1 approval, no outstanding change requests, CI passing
|
||||
3. **Fix CI across all repos** — smoke tests and sanity checks are failing everywhere; this must be the baseline
|
||||
4. **Enforce PR size limits** — reject PRs over 500 lines changed at the CI level
|
||||
5. **Require bug-fix reasoning** — every fix PR must explain why the change is at that specific location
|
||||
|
||||
## Metrics
|
||||
|
||||
| Metric | Value |
|
||||
|--------|-------|
|
||||
| Open PRs reviewed | 6 |
|
||||
| PRs merged this run | 1 (the-testament#41) |
|
||||
| PRs blocked | 2 (the-door#22, timmy-config#600) |
|
||||
| Repos with failing CI | 3+ |
|
||||
| PRs with zero test coverage | 4+ |
|
||||
| Estimated rework hours from waste | 20-40h |
|
||||
|
||||
## Conclusion
|
||||
|
||||
The project is moving fast but bleeding quality. The biggest risk is untested code on main — one bad deploy of crisis_detector.py could cause real harm. The priority actions above are ranked by blast radius. Start at #1 and don't skip ahead.
|
||||
|
||||
---
|
||||
*Generated by Perplexity review sweep, 2026-04-13
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
# Let Gemini-Timmy configure itself as Anthropic fallback.
|
||||
# Hermes CLI won't accept --provider custom, so we use hermes setup flow.
|
||||
# But first: prove Gemini works, then manually add fallback_model.
|
||||
# Configure Gemini 2.5 Pro as fallback provider.
|
||||
# Anthropic BANNED per BANNED_PROVIDERS.yml (2026-04-09).
|
||||
# Sets up Google Gemini as custom_provider + fallback_model for Hermes.
|
||||
|
||||
# Add Google Gemini as custom_provider + fallback_model in one shot
|
||||
python3 << 'PYEOF'
|
||||
@@ -39,7 +39,7 @@ else:
|
||||
with open(config_path, "w") as f:
|
||||
yaml.dump(config, f, default_flow_style=False, sort_keys=False)
|
||||
|
||||
print("\nDone. When Anthropic quota exhausts, Hermes will failover to Gemini 2.5 Pro.")
|
||||
print("Primary: claude-opus-4-6 (Anthropic)")
|
||||
print("Fallback: gemini-2.5-pro (Google AI)")
|
||||
print("\nDone. Gemini 2.5 Pro configured as fallback. Anthropic is banned.")
|
||||
print("Primary: kimi-k2.5 (Kimi Coding)")
|
||||
print("Fallback: gemini-2.5-pro (Google AI via OpenRouter)")
|
||||
PYEOF
|
||||
|
||||
63
research/03-rag-vs-context-framework.md
Normal file
63
research/03-rag-vs-context-framework.md
Normal file
@@ -0,0 +1,63 @@
|
||||
# Research: Long Context vs RAG Decision Framework
|
||||
|
||||
**Date**: 2026-04-13
|
||||
**Research Backlog Item**: 4.3 (Impact: 4, Effort: 1, Ratio: 4.0)
|
||||
**Status**: Complete
|
||||
|
||||
## Current State of the Fleet
|
||||
|
||||
### Context Windows by Model/Provider
|
||||
| Model | Context Window | Our Usage |
|
||||
|-------|---------------|-----------|
|
||||
| xiaomi/mimo-v2-pro (Nous) | 128K | Primary workhorse (Hermes) |
|
||||
| gpt-4o (OpenAI) | 128K | Fallback, complex reasoning |
|
||||
| claude-3.5-sonnet (Anthropic) | 200K | Heavy analysis tasks |
|
||||
| gemma-3 (local/Ollama) | 8K | Local inference |
|
||||
| gemma-3-27b (RunPod) | 128K | Sovereign inference |
|
||||
|
||||
### How We Currently Inject Context
|
||||
1. **Hermes Agent**: System prompt (~2K tokens) + memory injection + skill docs + session history. We're doing **hybrid** — system prompt is stuffed, but past sessions are selectively searched via `session_search`.
|
||||
2. **Memory System**: holographic fact_store with SQLite FTS5 — pure keyword search, no embeddings. Effectively RAG without the vector part.
|
||||
3. **Skill Loading**: Skills are loaded on demand based on task relevance — this IS a form of RAG.
|
||||
4. **Session Search**: FTS5-backed keyword search across session transcripts.
|
||||
|
||||
### Analysis: Are We Over-Retrieving?
|
||||
|
||||
**YES for some workloads.** Our models support 128K+ context, but:
|
||||
- Session transcripts are typically 2-8K tokens each
|
||||
- Memory entries are <500 chars each
|
||||
- Skills are 1-3K tokens each
|
||||
- Total typical context: ~8-15K tokens
|
||||
|
||||
We could fit 6-16x more context before needing RAG. But stuffing everything in:
|
||||
- Increases cost (input tokens are billed)
|
||||
- Increases latency
|
||||
- Can actually hurt quality (lost in the middle effect)
|
||||
|
||||
### Decision Framework
|
||||
|
||||
```
|
||||
IF task requires factual accuracy from specific sources:
|
||||
→ Use RAG (retrieve exact docs, cite sources)
|
||||
ELIF total relevant context < 32K tokens:
|
||||
→ Stuff it all (simplest, best quality)
|
||||
ELIF 32K < context < model_limit * 0.5:
|
||||
→ Hybrid: key docs in context, RAG for rest
|
||||
ELIF context > model_limit * 0.5:
|
||||
→ Pure RAG with reranking
|
||||
```
|
||||
|
||||
### Key Insight: We're Mostly Fine
|
||||
Our current approach is actually reasonable:
|
||||
- **Hermes**: System prompt stuffed + selective skill loading + session search = hybrid approach. OK
|
||||
- **Memory**: FTS5 keyword search works but lacks semantic understanding. Upgrade candidate.
|
||||
- **Session recall**: Keyword search is limiting. Embedding-based would find semantically similar sessions.
|
||||
|
||||
### Recommendations (Priority Order)
|
||||
1. **Keep current hybrid approach** — it's working well for 90% of tasks
|
||||
2. **Add semantic search to memory** — replace pure FTS5 with sqlite-vss or similar for the fact_store
|
||||
3. **Don't stuff sessions** — continue using selective retrieval for session history (saves cost)
|
||||
4. **Add context budget tracking** — log how many tokens each context injection uses
|
||||
|
||||
### Conclusion
|
||||
We are NOT over-retrieving in most cases. The main improvement opportunity is upgrading memory from keyword search to semantic search, not changing the overall RAG vs stuffing strategy.
|
||||
Reference in New Issue
Block a user