Tycono: Open-Source AI Agent Harness with Org Chart and Autonomous Improvement Loops

✍️ OpenClawRadar📅 Published: March 19, 2026🔗 Source
Tycono: Open-Source AI Agent Harness with Org Chart and Autonomous Improvement Loops
Ad

Tycono is an open-source harness that lets you define AI agent roles in YAML format (CTO, engineer, QA, etc.) and have them work together following an organizational chart. The system was built over about 3 weeks using Claude Code as a side project.

How It Works

You define agent roles in YAML configuration files, specifying different roles like CTO, engineer, QA, and CBO. These agents don't just complete tasks and stop - they operate with a CEO Supervisor loop that reviews results, asks C-level agents "what can be improved?", and automatically re-dispatches tasks for refinement.

Example Workflow

When given the directive "build a pixel running game," the system demonstrated this workflow:

  • CTO designed the architecture and broke it into tasks
  • Engineer built the core functionality: running, jumping, obstacles, hearts
  • QA opened a real Chrome browser and tested every collision
  • CBO analyzed the game and suggested "add a Shop system, it'll improve retention"
  • CTO took the feedback, redesigned the architecture, and the cycle restarted

The CBO's business perspective is notable because it's something pure engineering-focused agents wouldn't have produced.

Ad

Performance Metrics

In an overnight test with the pixel running game task:

  • 17 improvement rounds completed
  • 6,796 lines of code generated
  • 43 commits made
  • 125 AI sessions executed

The system runs autonomously - the developer was sleeping during this process.

Key Insight

Each role genuinely thinks differently: CBO sees users, CTO sees architecture, QA breaks things. This isn't just 5 copies of Claude - the org chart structure gives them different perspectives and lenses through which to approach problems.

Getting Started

Install with: npx tycono

You can play the resulting game at: https://tycono.ai/pixel-runner.html

The source code is available on GitHub: https://github.com/seongsu-kang/tycono

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Claude-ETA Plugin Adds Task Timing and Repair Loop Detection to Claude Code
Tools

Claude-ETA Plugin Adds Task Timing and Repair Loop Detection to Claude Code

Claude-ETA is a Claude Code plugin that times tasks, learns your actual velocity, and feeds real data back into Claude before it responds. It also detects repair loops by fingerprinting error content and intervenes after three identical failures.

OpenClawRadar
Octopoda MCP Server Adds Persistent Memory, Loop Detection, and Audit Trails to Claude Code
Tools

Octopoda MCP Server Adds Persistent Memory, Loop Detection, and Audit Trails to Claude Code

A developer built Octopoda, an MCP server that integrates with Claude Code to provide persistent memory, loop detection, audit trails, and shared knowledge spaces for AI agents. The system uses PostgreSQL with pgvector for semantic search, FastAPI, and a React dashboard.

OpenClawRadar
One-Command Docker Setup for OpenClaw with Full-Disk Encryption and Monitoring
Tools

One-Command Docker Setup for OpenClaw with Full-Disk Encryption and Monitoring

A Docker setup for OpenClaw that provides full-disk encryption guides, Tini as PID 1, built-in monitoring tools, and data stored as plain files on the host. Deployment requires just two commands: git clone and ./shell.

OpenClawRadar
Context Routing Layer Reduces Claude Code Token Usage by Tracking Accessed Files
Tools

Context Routing Layer Reduces Claude Code Token Usage by Tracking Accessed Files

A developer saved approximately $80 per month on Claude Code usage by adding a context routing layer that prevents the AI from re-reading the same repository files on follow-up turns. The tool tracks what files have already been accessed to reduce redundant token consumption.

OpenClawRadar