Skip to content

HiAudrey/SynOrg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

SynOrg

A goal-driven multi-agent system with an exploration–execution architecture.

SynOrg is not a role-based AI company simulator. It is a system where ideas are explored through a swarm of agents, then refined and executed through a structured organizational layer.

In short:

Swarm explores. SynOrg decides. SynOrg executes. The loop learns.


Why this exists

Most multi-agent systems fall into two extremes:

  • Too rigid → role-based pipelines that behave like scripts
  • Too chaotic → free-form agents that never converge

SynOrg sits between them.

It separates:

  • Exploration (Swarm layer) → generate and evolve ideas
  • Execution (Org layer) → select, refine, and ship results

Core idea

A single goal drives everything.

Example:

“Build a journaling app for anxiety”

Instead of assigning fixed roles immediately, the system:

  1. Generates multiple possible directions
  2. Lets them compete and improve through critique
  3. Selects the strongest direction
  4. Refines it through structured agents
  5. Produces an executable result

Then repeats with feedback.


System design

1. Swarm Layer (Exploration Engine)

No roles. No hierarchy. Just iterative thinking.

Agents in this layer:

  • propose solutions
  • critique other solutions
  • merge and mutate ideas

Key behavior:

  • diversity first
  • competition through scoring
  • convergence through selection pressure

2. SynOrg Layer (Execution System)

Once a direction is selected, structure takes over.

Agents:

  • PM → clarifies scope and constraints
  • Engineer → validates feasibility and implementation
  • Designer → simplifies user experience
  • HR → checks clarity, alignment, and stops ambiguity

Key behavior:

  • reduce complexity
  • enforce constraints
  • turn ideas into something buildable

3. Feedback Loop

Execution results are fed back into the swarm.

The system learns:

  • what worked
  • what failed
  • what should change next time

Architecture overview

        Goal
         ↓
   Swarm Layer
 (generate + evolve)
         ↓
   Selection Step
         ↓
   SynOrg Layer
 (refine + execute)
         ↓
      Output
         ↓
   Feedback Memory
         ↺

What makes this different

Not a role-play system

Agents are not fixed identities doing fixed jobs.

Not a pipeline

There is iteration, conflict, and revision.

Not purely autonomous chaos

There is structure where it matters: selection and execution.


Demo concept (GhostCompany mode)

Input:

build a simple journaling app

What happens:

  • multiple solution paths are generated
  • agents critique and reshape them
  • weak ideas are discarded
  • a final direction is selected
  • structured agents refine and implement
  • system produces a minimal working version

Then it reflects and improves.


Running the system

git clone https://github.com/yourname/synorg.git
cd synorg
pip install -r requirements.txt
python run.py --demo

Demo modes

Standard run

python run.py --idea "build a journaling app"

Exploration-heavy (more swarm behavior)

python run.py --idea "launch a productivity tool" --swarm-intensity high

Execution-heavy (more structured output)

python run.py --idea "simple todo app" --strict

Roadmap

Phase 1 — Core loop

  • Swarm generation
  • Critique + scoring system
  • Basic SynOrg execution layer

Phase 2 — Stability

  • Memory system
  • Better selection logic
  • Controlled convergence

Phase 3 — Learning system

  • Feedback-based improvement
  • Repeated task optimization
  • Emergent strategy patterns

Research directions

  • Exploration vs execution balance in AI systems
  • Emergent coordination without fixed roles
  • Multi-agent convergence dynamics
  • LLM-based evolutionary optimization

Philosophy

This system is built around a simple idea:

Intelligence is not a role structure. It is a cycle of exploration, conflict, and refinement.


License

MIT

About

An AI-native organization powered by multi-agent systems

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors