T9OS: An AI Orchestration System Built Entirely with Claude Code

T9OS is an AI orchestration system built entirely using Claude Code over three months by a non-developer economics student. The core concept treats ideas as starting from tension—conflicts between desired and existing states—and tracks how that tension becomes concrete or dissolves, with nothing ever deleted.
System Architecture
The system implements:
- 18 production pipelines including Telegram alerts, calendar sync, deadline tracking, AI guardian reviews, and voice transcription
- 61 architecture decisions documented
- A 12-state lifecycle engine
- 3-tier self-amending constitution
- 7 AI "Guardians" that review every output, including 2 that check philosophical consistency
- Multi-session IPC to prevent conflicts between parallel Claude Code instances
Getting Started
Installation and basic usage:
pip install git+https://github.com/HanbeenMoon/t9os.git
t9 init --quick
t9 capture "your first idea"Core features work without requiring any API keys.
The project is available on GitHub at https://github.com/HanbeenMoon/t9os.
📖 Read the full source: r/ClaudeAI
👀 See Also

Tocket CLI: A Context Engineering Framework for AI Coding Agents
Tocket is a CLI tool that creates a .context/ folder with markdown files for AI agents to maintain project memory across sessions. It auto-detects tech stacks from package.json and generates a pre-configured .cursorrules file.

ClawedBack: OpenClaw Port Running Inside Claude Code
ClawedBack is a clean-room port of OpenClaw that runs inside Claude Code, providing first-party prompt caching and rate limits. It matches 19 out of 23 of OpenClaw's built-in tools and is fully ClawHub compatible with mandatory security scans for imports.

SpruceChat Runs 0.5B LLM On-Device on Miyoo Handhelds via llama.cpp
SpruceChat runs Qwen2.5-0.5B entirely on-device on handheld gaming devices using llama.cpp, with no cloud or WiFi required. On a Miyoo A30 (Cortex-A7 quad-core), it loads in ~60 seconds and generates at ~1-2 tokens/second.

ToolLoop: Open-Source Agent Framework for Claude-Style Tools with Any Model
ToolLoop is an open-source Python framework with 11 tools for file operations, code search, shell access, and sub-agents that works with any LLM through LiteLLM. The 2,700-line framework allows switching models mid-conversation with shared context.