aco-system: An Entire Company OS for Claude That Writes User Stories, Breaks Tasks, Reviews PRs

Someone posted on r/ClaudeAI about aco-system, an open-source framework that turns a single GitHub issue into a complete, reviewed pull request — all driven by Claude without manual intervention. The post describes the workflow:
The user typed into Claude: "Add Stripe payments with webhook support. Use aco-system." From there, the system autonomously:
- Wrote the user story
- Broke it into 8 tasks with estimates
- Validated the plan (checking for secrets, missing criteria, bad config) — would have stopped if validation failed
- Wrote the code once validation passed
- Created a branch and opened a PR with a meaningful description
- Reviewed the PR, added comments, flagged tests
The user only had to approve the final PR. The experience was described as "less like running a tool and more like having a junior team that doesn't sleep and doesn't need standup."
The project is available at github.com/aniketkarne/aco-system.
📖 Read the full source: r/ClaudeAI
👀 See Also

A 7-File Governance Layer to Prevent LLM Session Drift
A developer created a governance layer with seven files to prevent Claude from silently undoing architectural decisions across sessions. The system includes active_context.md, contracts.md, and decisions.md files with a strict execution loop.

SuperHQ: Run AI coding agents in isolated microVM sandboxes
SuperHQ is an open source Rust/GPUI app that runs AI coding agents (Claude Code, OpenAI Codex, Pi) in isolated microVM sandboxes. Each agent gets a full Debian VM, mounts project dirs read-only, and never sees host API keys — they're injected via an auth gateway proxy.

Claude Code documentation includes excessive React components inflating token counts
Analysis of Claude Code's LLM documentation reveals that MDX files contain massive inlined React components, with context-window.md using 18,501 tokens but only 551 tokens of actual documentation content.

Microsoft BitNet: 1-bit LLM inference framework for CPU and GPU
Microsoft released BitNet, an inference framework for 1-bit LLMs that achieves 1.37x to 6.17x speedups on CPUs and reduces energy consumption by 55.4% to 82.2%. It can run a 100B parameter model on a single CPU at 5-7 tokens per second.