Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Whitestone
06f4dbff67 wip: add OpenClaw purge report regression test
Some checks failed
CI / test (pull_request) Failing after 59s
CI / validate (pull_request) Failing after 1m13s
Review Approval Gate / verify-review (pull_request) Successful in 11s
2026-04-15 03:27:13 -04:00
Alexander Whitestone
0a33fbe645 wip: add OpenClaw purge report artifact 2026-04-15 03:26:59 -04:00
2 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# OpenClaw Purge Report — 2026-04-12
Directive: We are Hermes maxis. OpenClaw has been removed from the entire Timmy Foundation stack.
## What was done
### the-nexus (this repo)
- PR #1278 — Removed OpenClaw sidecar reference from README.md (merged)
- PR #1279 — Rewrote Fleet Vocabulary: deprecated Robing pattern, replaced with Hermes-native comms (merged)
- Issue #830 — Updated body to remove OpenClaw references from intelligence briefing scope
- ACTION NEEDED (rockachopa): Update org description at https://forge.alexanderwhitestone.com/Timmy_Foundation — remove `OpenClaw sidecar` from description.
- Current: `Sovereign AI foundation — Hermes harness, canonical Nexus repo, timmy-home training ground, OpenClaw sidecar.`
- New: `Sovereign AI foundation — Hermes harness, canonical Nexus repo, timmy-home training ground.`
### timmy-config (complete)
- PR #487 — 7 files changed: code-claw-delegation.md, allegro-wizard-house.md, automation-inventory.md, capacity-inventory.md, topology.md, son-of-timmy.md, health_check.py (merged)
### timmy-home (complete)
- PR #595 — 3 files changed: USER_AUDIT_2026-04-04.md, two greptard reports with deprecation headers (merged)
- Issue #141 closed (Robing architecture superseded)
- Issue #140 closed (lobster cutover superseded)
## What was preserved
- 27 previously closed OpenClaw issues across repos — left as historical record
- Greptard memory architecture reports — preserved with deprecation headers
- The Robing/Lobster/Unrobed vocabulary entries — marked deprecated, not deleted
## Remaining action
- Org description — needs org owner (rockachopa) to update. The perplexity account lacks org admin permission.
## Architecture going forward
Hermes handles everything: cognitive core, channels, dispatch, memory, cron, health monitoring. No external gateway layer. Two states: Online or Dead. No split-brain failure modes.
Reference: openclaw-purge-2026-04-12

View File

@@ -0,0 +1,28 @@
from pathlib import Path
REPORT = Path("reports/openclaw-purge-2026-04-12.md")
def test_openclaw_purge_report_exists_with_required_sections():
assert REPORT.exists(), "expected OpenClaw purge report artifact to exist"
content = REPORT.read_text()
assert "# OpenClaw Purge Report — 2026-04-12" in content
assert "## What was done" in content
assert "### the-nexus (this repo)" in content
assert "### timmy-config (complete)" in content
assert "### timmy-home (complete)" in content
assert "## What was preserved" in content
assert "## Remaining action" in content
assert "## Architecture going forward" in content
def test_openclaw_purge_report_preserves_core_findings():
content = REPORT.read_text()
assert "PR #1278" in content
assert "PR #1279" in content
assert "PR #487" in content
assert "PR #595" in content
assert "27 previously closed OpenClaw issues across repos" in content
assert "The perplexity account lacks org admin permission." in content
assert "Reference: openclaw-purge-2026-04-12" in content