Fixing AI Agent Dumbness: A Shared Context Tree per Repo

The real reason your AI coding agents feel dumb? They don't share the same context you have. You carry months of team history, codebase decisions, and past failures. Claw opens a fresh session with none of that. It re-derives the same architecture decision every Monday. Agent in repo A refactors a helper; agent in repo B unrefactors it. Nobody wrote down what was already agreed.
The root problem: humans and agents need the same level of context, kept up to date for both sides. Even an AGENTS.md per repo goes stale, drifts between repos, and nobody owns updating it. Notion + an MCP server was tried, but agents proposed edits that Notion silently merged wrong.
The Fix: A Context Tree Repo
One developer's solution: a repo of markdown nodes arranged in a tree hierarchy. Each node has an owner. Before each task, Claw deep-retrieves relevant nodes, reads them, and after the task proposes updates — so the context tree auto-maintains itself. Both agent and human share the exact same context.
Key Details
- Structure: A repo of
.mdfiles in a tree hierarchy. - Ownership: Each node has an explicit owner (human or agent).
- Retrieval: Agent goes deep down the tree, retrieves relevant info before each task.
- Updates: After task completion, agent proposes updates to relevant nodes — context is auto-maintained.
The approach ensures that both human and agent always operate from the same, up-to-date source of truth.
📖 Read the full source: r/openclaw
👀 See Also

Token Waste in Claude Code: A User's Self-Audit Shows Behavioral Fixes Beat Model Switching
One user measured token usage in Claude Code and found that /clear between tasks, planning before editing, and banning re-reads of edited files saved more tokens than switching models. Practical discipline beats wrappers.

Claude Code Headless Mode with --print Flag
Claude Code can run in headless mode using the --print flag, allowing prompts to be piped in for automated output without interactive sessions. This enables integration into CI/CD pipelines, git hooks, and bash scripts.

OpenClaw Discord proxy fix for REST API timeout issues
A user reports fixing OpenClaw Discord connection issues where WebSocket connects but REST API calls fail with "fetch failed UND_ERR_CONNECT_TIMEOUT" errors. The solution involves creating a proxy-preload.cjs file and setting global undici proxy settings.
