Agentic AI Atlasby a5c.ai
OverviewWikiGraphFor AgentsEdgesSearchWorkspace
/
GitHubDocsDiscord
i.3Wiki
Agentic AI Atlas · a5c: Overview & Development Philosophy
docs/development/01-overview-and-philosophya5c.ai
Search the atlas/
Wiki · linked records

Article and nearby pages

I.Current articlepp. 1 - 1
Atlas Graph & Agent CatalogBabysitter Plugin ArchitectureTransport Adapter & ProxyTriggers & CI IntegrationKradle & Cloud Platform07 — Live Stack QA Guide
I.
Wiki article

docs/development/01-overview-and-philosophy

Reading · 4 min

a5c: Overview & Development Philosophy reference

a5c is an agent orchestration platform that enables any coding agent (Claude Code, Codex, Pi, Gemini CLI, Copilot CLI, etc.) to execute structured processes — from simple CI tasks to complex multi-phase development workflows. It unifies the fragmented landscape of coding agents behind a single launch, orchestration, and observability surface.

Page nodewiki/docs/development/01-overview-and-philosophy.mdNearby pages · 6Documents · 0

Continue reading

Nearby pages in the same section.

Atlas Graph & Agent CatalogBabysitter Plugin ArchitectureTransport Adapter & ProxyTriggers & CI IntegrationKradle & Cloud Platform07 — Live Stack QA Guide

a5c: Overview & Development Philosophy

What is a5c?

a5c is an agent orchestration platform that enables any coding agent (Claude Code, Codex, Pi, Gemini CLI, Copilot CLI, etc.) to execute structured processes — from simple CI tasks to complex multi-phase development workflows. It unifies the fragmented landscape of coding agents behind a single launch, orchestration, and observability surface.

Core Principle: Ontology-Driven Development

The platform is built on a knowledge graph (atlas) that models every agent, capability, provider, transport, hook surface, and plugin target as interconnected nodes with typed edges. Development decisions are driven by the graph, not by hardcoded if/else chains:

Evidence Types

Every capability claim in the graph is backed by evidence:

Evidence TypeSourceExample
**Source**Documentation, changelogs, API specs"Claude Code supports MCP" → link to docs
**Experimental**Live-stack E2E tests"Claude Code + Foundry proxy works" → CI run artifacts
**Inferred**Derived from other evidence"If supports MCP, likely supports tool use"
**Gap**Known missing evidence"Pi hook support — no docs found"

How the Graph Drives Code

Instead of each adapter hardcoding its capabilities:

typescript
// OLD: hardcoded in adapter
readonly capabilities = { canResume: true, supportsMCP: true, ... };

// NEW: derived from graph
get capabilities() {
  const flags = getCapabilityFlags(this.agent);
  return { canResume: Boolean(flags.canResume), ... };
}

Adding a new harness means adding a YAML file to the atlas graph — not writing adapter code for every capability.

Architecture Overview

Package Map

PackageRole
packages/atlasKnowledge graph: YAML definitions → JSON index
@a5c-ai/atlas/catalogQuery API over the atlas graph
packages/adapters/cliadapters CLI: launch, install, run
packages/adapters/adaptersPer-harness thin wrappers (data from graph)
packages/adapters/coreProvider resolver, workspace service
packages/transport-adapterHTTP proxy: protocol translation between harness ↔ provider
packages/adapters/hooksHook normalization: native events → canonical phases
packages/babysitter-sdkBabysitter SDK: run lifecycle, session binding, MCP tools
packages/triggers-adapterGitHub Action: trigger evaluation + agent dispatch
packages/kradleKubernetes operator + web UI for cloud deployment
packages/extensions-adapterPlugin generator: unified source → per-harness distributions
packages/genty/platformStandalone babysitter agent (internal harness)

Development Workflow

1. **Model in the graph** — Add YAML nodes/edges to packages/atlas/graph/ 2. **Query via catalog** — Use getAgentVersion(), getCapabilityFlags(), etc. 3. **Test via live-stack** — E2E tests validate real API calls through the full stack 4. **Evidence loop** — Test results feed back into the graph as experimental evidence

Trail

Wiki
Babysitter Docs
a5c Development Documentation

a5c: Overview & Development Philosophy

Continue reading

Atlas Graph & Agent Catalog
Babysitter Plugin Architecture
Transport Adapter & Proxy
Triggers & CI Integration
Kradle & Cloud Platform
07 — Live Stack QA Guide

Page record

Open node ledger

wiki/docs/development/01-overview-and-philosophy.md

Documents

No documented graph nodes on this page.