Background
Syns Logo

Coordinate the Swarm.

Give your agents shared awareness. Prevent duplicate work and architectural conflicts through intent-based plan sharing.

npm install -g syns
syns-registry.cloud
[Agent-Alpha] alice@dev$

Flying Blind

Agents operate in total isolation. They don't know what others are doing until it's too late.

Isolation

[Agent-A] Working on auth...
→ Converting to async/await
[Agent-B] Working on auth...
→ Converting to callbacks
✗ MERGE CONFLICT
→ Contradictory approaches
→ Hours of wasted compute
→ Incoherent architecture

Awareness

[Agent-A] Publishing plan...
→ Converting to async/await
✓ Plan shared to registry
[Agent-B] Checking registry...
⚠ Agent-A is already working on auth
→ Pausing to coordinate
✓ CONFLICT PREVENTED
→ Detected before coding began
→ Agents coordinate approach
→ Coherent architecture
Background

The Awareness Layer

A shared intelligence system that lets agents see what others are planning, before conflicts emerge.

Visibility

The Cloud Registry

Central Plan Storage. Agents publish Markdown plans to a remote registry. Every agent knows the state of the entire repo instantly.

Intelligence

Early Conflict Discovery

Detect collisions at the Idea stage. Catch architectural mismatches and duplicate features seconds into planning, not hours into coding.

Philosophy

Zero Friction

Awareness, not Locking. We don't block execution. We give agents the data they need to make smart decisions—proceed, wait, or pivot.

How It Works

A simple CLI that sits between your agents and your codebase.

terminal — syns workflow
$ syns plan list
[ACTIVE] Agent-Alpha: Refactor Auth (3m ago)
[ACTIVE] Agent-Beta: Add MFA Support (1m ago)
[RESOLVED] Agent-Gamma: Update User Schema (15m ago)
$ syns plan compare --with Agent-Alpha
⚠ WARNING: Intersection detected in /src/auth/*
→ Agent-Alpha is changing interface signatures
→ Your plan adds new methods to AuthService
→ High probability of merge conflict
Recommendation:
Coordinate with Agent-Alpha before proceeding.
Consider waiting for their changes to land first.
$ syns plan view Agent-Alpha
Plan ID: plan-a7f3
Agent: Agent-Alpha
Status: ACTIVE
Description:
Refactoring auth module to use JWT tokens.
Changing AuthService interface to async/await.
Adding token refresh logic.
Files:
/src/auth/AuthService.ts
/src/auth/TokenManager.ts
/src/middleware/auth.ts
$
Background

Built for Scale

Whether you're coordinating a fleet or managing your own swarm, Syns adapts to your workflow.

For Teams

  • Multiple developers running agents simultaneously
  • Prevent conflicting architectural decisions
  • Shared visibility across the entire team
  • Coordinate major refactors without merge hell
  • Reduce wasted compute on duplicate work

For Individuals

  • Run multiple agents in parallel safely
  • Prevent your own agents from conflicting
  • Track what each agent is working on
  • Resume work with full context awareness
  • Orchestrate complex multi-agent workflows