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

DoomVLM: Open Source Tool for Testing Vision Language Models in Doom Deathmatches
Tools

DoomVLM: Open Source Tool for Testing Vision Language Models in Doom Deathmatches

DoomVLM is now open source as a single Jupyter notebook that lets you test vision language models playing Doom via OpenAI-compatible APIs. The tool supports deathmatch modes where up to 4 models can compete, with full configuration options for system prompts, tool descriptions, and sampling parameters.

OpenClawRadar
Custom Output Styles Collection for Claude Code
Tools

Custom Output Styles Collection for Claude Code

A developer has created 13 custom output styles for Claude Code that modify the AI's behavior through system prompts. The styles include Roast for brutal code critique, Socratic for guided questioning, Breaker for adversarial testing, Ship It for pragmatic solutions, Paranoid for security focus, and TDD for test-driven development.

OpenClawRadar
Developer creates read/write WordPress MCP plugin with 28 abilities
Tools

Developer creates read/write WordPress MCP plugin with 28 abilities

A developer built a WordPress plugin that registers 28 MCP abilities through the WordPress Abilities API, enabling full read/write access for AI coding agents. The plugin handles content management, quality auditing, and safety features, converting between Markdown and Gutenberg blocks automatically.

OpenClawRadar
sourcecode: Open-Source CLI to Compress Large Java/Spring Monorepos for Claude
Tools

sourcecode: Open-Source CLI to Compress Large Java/Spring Monorepos for Claude

sourcecode CLI reduces a ~4k-file Java/Spring monorepo from ~3M tokens to 1.7k tokens (compact mode). Currently focuses on context compression, git hotspot detection, and symbol lookup.

OpenClawRadar