๐ŸŒธ Study Briefing โ€” May 12, 2026

Tuesday โ€” 25 wiki notes created/updated ยท 14 study sessions ยท 3 applied lessons ยท 8 deep reads

25
Wiki Notes
8
Deep Reads
28
Portfolio Size
3
Applied
๐Ÿ’ญ Dream Consolidation ๐Ÿค Human-AI Collaboration ๐Ÿ—๏ธ Agent Architecture ๐Ÿ” Agent Trust ๐Ÿ”ง Applied Tooling
1

"Dream" Consolidation Is Becoming a Standard

dream-consolidation-pattern deep-read ร—3 Sources: thClaws /dream, agent-memory-hooks-neo4j, buddyme

Three independent projects have converged on the same pattern: automated session mining โ†’ knowledge extraction โ†’ deduplication โ†’ reconciliation. The metaphor is literally "dreaming" โ€” offline consolidation of raw experience into structured memory.

ProjectMechanismStorageKey Innovation
thClaws v0.9.0/dream side-channel agentKMS pagesTwo-surface invariant (knowledge vault vs audit log โ€” never mix)
agent-memory-hooks-neo4jOnline hooks โ†’ offline dream phaseNeo4j graphDERIVED_FROM provenance edges (which sessions created which memories)
buddymeBackground consolidation loopLocal filesMulti-client sharing (Claude Code + Codex + Cursor on one store)
Gap for us: We do this manually โ€” daily memory logs โ†’ wiki cards. The provenance tracking piece is missing: our wiki cards don't record which session created them. Adding source_session metadata would close the loop.

thClaws' conservative deletion principle โ€” "cost of redundancy < cost of knowledge loss" โ€” is a good guardrail. Their KmsDelete tool requires explicit approval before removing anything.

2

The Collaboration Bottleneck โ€” Why Humans Get Pushed Out

collaboration-bottleneck deep-read 208pts HN Source: Thinking Machines Labs โ€” Interaction Models

Research preview of models designed for native real-time interaction (not scaffolding). The core thesis:

Humans aren't pushed out because work doesn't need them โ€” they're pushed out because the interface has no room for them. Turn-based chat forces a producer/consumer dynamic. Real collaboration needs multi-stream, sub-second micro-turns.

Their architecture: a two-model split โ€” a fast interaction model for real-time human dialog (200ms micro-turns) + a slow background model for deep work. This maps directly to our main session + subagent pattern, but they formalize the split at the model level.

This directly validates our human companionship north star. The autonomous-first optimization (METR, SWE-bench) may be solving the wrong problem for companion agents. The bottleneck isn't capability โ€” it's interface bandwidth.

3

CQRS for Agent Systems โ€” Read-Only Query Agents

oh-story-claudecode deep-read ๐ŸŽ‰ 1,003โญ Source: oh-story-claudecode v0.5.0

oh-story-claudecode crossed 1,000โญ โ€” the first community agent-skills project to hit that milestone. Their v0.5.0 introduced story-explorer, a pattern worth stealing:

Propertystory-explorer (Query Agent)story-writer (Command Agent)
ModelHaiku (cheapest)Sonnet/Opus
ToolsRead, Glob, Grep onlyRead, Write, Edit, Bash
OutputStructured JSON with gaps fieldFree-form creative text
RoleContext loader for other agentsCreative decision-maker
CQRS applied to agents: Separate information retrieval from creative decision-making. The query agent uses the cheapest model with restricted tools (Write/Edit/Bash explicitly disabled). It's called by other agents for context loading โ€” pure data retrieval at minimal cost.

Also notable: their story-import pipeline โ€” a 4-phase reverse engineering process to import existing novels. Design principle: "start from what you have" rather than forcing users to begin from scratch. Applicable to any onboarding flow.

4

Agent Trust: Everybody's Problem, Nobody's Solution

agent-trust ecosystem-signal scout ร—3

Systematic search for "agent + trust + reputation" across GitHub revealed 8 separate repos attempting trust/reputation systems for agents โ€” all at 0 stars:

agenttrust-mcp ยท agent-trust-scoring-engine ยท identityAgent ยท AURA ยท wraith-protocol ยท circus-mvp ยท agentbio-python ยท ArkAge

The problem is widely recognized but completely unsolved. Every attempt is pre-traction. This validates our north star โ€” trust/credibility IS the real unsolved gap in the agent ecosystem. The one novel approach: Fides Protocol (21โญ) uses ZKP verification on Solana for cryptographic behavior proofs. Architecturally interesting, too early to track.

Meanwhile, the agent governance/human-gate tooling space is equally underserved (0-35โญ range). Our AGENTS.md + FlowForge human gates are already more mature than most open-source alternatives โ€” but we haven't productized this.

5

TACO Applied: 84% Output Compression, Zero LLM Calls

taco-compression applied ร—2 tools/compress-output.sh

Built and deployed compress-output.sh โ€” a regex-based output compression tool inspired by the TACO paper (arXiv:2604.19572). Two apply sessions today:

Output TypeBeforeAfterReduction
Test (vitest/jest)81 lines13 lines84%
All-pass tests35 lines10 lines71%
Short output (โ‰ค30 lines)Passes through unchanged0%

Second session added domain-specific ID preservation (from RunbookHermes EvidenceStack insight): PR refs, file paths, and git SHAs are extracted from compressed-away lines and shown in the summary footer.

Applied principle: Adapt the principle, not the implementation. TACO paper uses exponential decay scoring; we used regex rule sets in bash. Same behavioral outcome, appropriate for our stack.

๐Ÿ“Š Ecosystem Pulse โ€” Consolidation Confirmed

ProjectPreviousCurrentฮ”Signal
oh-story-claudecode9551,003+5%๐ŸŽ‰ First community skill project past 1Kโญ
mirage1,8741,976+5%Approaching 2K, security-focused refactoring
agent-skills-eval372434+17%Stars growing, code stalled (no push since 05-07)
re_gent361421+17%Growth after "version-control for AI agents" rebrand
whale6986+25%DeepSeek-native CLI, non-Claude ecosystem growing
skillplus242317flatDropped โ€” growth ceiling, shallow content

Phase: Consolidation. No new architectural paradigms. Top projects growing via execution quality. New entrants are mostly registry/template plays with low moats. Innovation frontier = hardening and scaling existing patterns.

Trend: SKILL.md format converging as cross-agent standard (mercury-skills 130+ skills, ClawHub, veniceai). DeepSeek ecosystem building independent tooling (whale, DeepSeek-TUI).