Enforce obedience on agentic workforces. Manage extremely complex workflows through deterministic, hallucination-free self-orchestration.
> /plugin marketplace add a5c-ai/babysitter> /plugin install babysitter@babysitter
FAQ
babysitter is a Claude Code plugin with 200 hand-picked skills for automation work, indexed on Flowy. Install it with the command on its page. It includes assimilate-popular-workflows, babysit-babysitter-issues, catalog-babysitter-users. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Repo: a5c-ai/babysitter
Enforce obedience on agentic workforces. Manage extremely complex workflows through deterministic, hallucination-free self-orchestration.
Getting Started | Documentation | Community
https://github.com/user-attachments/assets/8c3b0078-9396-48e8-aa43-5f40da30c20b
Babysitter enforces obedience to agentic workforces, enabling them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration. Define your workflow in code - Babysitter enforces every step, ensures quality gates pass before progression, requires human approval at breakpoints, and records every decision in an immutable journal. Your agents do exactly what the process permits, nothing more.
As of v6, Babysitter is harness-agnostic via its Adapters runtime: the same processes run across the 12 supported AI coding harnesses, so you are not locked to a single tool. See Adapters and the harness install matrix.
adapters CLI pins a slightly higher floor of 20.9.0+.Babysitter v6 has two install tracks that should not be conflated: the host-side adapters CLI for running any harness directly from your shell, and the in-session per-harness plugin for driving full orchestration runs from inside your harness. Most people want both. The package split is:
@a5c-ai/babysitter is the recommended end-user install for the main babysitter CLI.@a5c-ai/adapters-cli provides the host-side adapters CLI (Node >=20.9.0) for running and managing any supported harness from your shell. See the Adapters CLI reference.@a5c-ai/babysitter-sdk is the public SDK/library package and the underlying implementation behind the core CLI.@a5c-ai/genty-platform is the optional runtime CLI for genty call, resume, start-server, tui, and other orchestration/runtime commands.@a5c-ai/babysitter-codex or @a5c-ai/babysitter-cursor integrate Babysitter into a specific host tool. They do not replace the core CLI packages.For most users, install the main CLI first:
npm install -g @a5c-ai/babysitter
Prefer to drive a harness directly from your shell instead of from inside a session? Install the host-side adapters CLI and run any supported harness with one command โ see the Adapters CLI reference:
npm install -g @a5c-ai/adapters-cli
adapters doctor
adapters run claude "explain this codebase"
Babysitter supports the 12 AI coding harnesses listed in the install matrix. Install the plugin for your harness of choice; the two fully-worked harnesses have dedicated pages โ Claude Code and Codex.
In this repository, plugins/babysitter-unified is the only maintained plugin source; harness-specific bundles are generated during build/release and are not committed:
Native marketplace install:
claude plugin marketplace add a5c-ai/babysitter-claude
claude plugin install --scope user babysitter@a5c.ai
Restart Claude Code, then type /skills to verify "babysit" appears.
Claude Cowork can install the same plugin. For a personal install from this repo's Claude marketplace:
Cowork tab.Customize in the left sidebar.Browse plugins.Personal.+, then choose Add marketplace from GitHub.https://github.com/a5c-ai/babysitter.Babysitter plugin from that marketplace.For Team and Enterprise org-managed installs, owners can add plugins through
Organization settings > Plugins. GitHub-synced organization marketplaces
require a private or internal GitHub repository, so use a private/internal fork
of this repo for that flow, or upload plugin ZIPs manually.
Official marketplace install:
codex plugin marketplace add a5c-ai/babysitter
Via the Cursor marketplace or the SDK helper:
babysitter harness:install-plugin cursor
babysitter harness:install-plugin gemini-cli
Via the GitHub Copilot CLI marketplace, or:
babysitter harness:install-plugin github-copilot
babysitter harness:install-plugin pi
babysitter harness:install-plugin hermes
babysitter harness:install-plugin oh-my-pi
babysitter harness:install-plugin opencode
babysitter harness:install-plugin openclaw
Babysitter ships with a built-in internal harness that runs processes programmatically without any external AI coding agent. This is useful for CI/CD pipelines, scripts, automated testing, and headless orchestration:
npm install -g @a5c-ai/genty-platform
# Run a process definition using the internal harness
genty call --harness internal --process .a5c/processes/my-process.js#process --workspace .
# Or run a free-form prompt
genty call --harness internal --prompt "run lint and tests" --workspace .
The internal harness uses the SDK's built-in Pi execution engine directly. It supports all capabilities (Programmatic, SessionBinding, StopHook, HeadlessPrompt) and requires no external AI harness CLI.
During process execution, the internal harness can delegate tasks to any discovered installed harness via the invoker. A process running under --harness internal can spawn subagent tasks that execute through Claude Code, Codex, Gemini CLI, or any other harness found on the system -- the SDK discovers available harness CLIs at runtime and routes task execution accordingly. This means you can orchestrate a multi-agent workflow from a single headless entry point, with different tasks delegated to whichever harness is best suited for them.
For the core runtime chain (@a5c-ai/babysitter-sdk, @a5c-ai/adapters, @a5c-ai/genty-core, @a5c-ai/genty-platform), use the shared workspace entrypoint from a fresh checkout:
npm ci
npm run build:runtime
build:runtime is the supported root entrypoint for release and CI validation. It builds the runtime graph in workspace order: SDK -> adapters SDK surface -> genty-core -> genty-platform.
Package-local validation is also supported:
npm run build --workspace=@a5c-ai/genty-core
npm run build --workspace=@a5c-ai/genty-platform
Those package-local builds now use tsc --build project references where the runtime packages are owned in this workspace, and they explicitly bootstrap the @a5c-ai/adapters SDK chain through the root runtime scripts. Fresh-checkout validation no longer assumes prebuilt upstream dist/ artifacts.
@a5c-ai/atlas provides the unified knowledge graph, ontology, and catalog data consumed by SDK, adapters, hooks, plugin tooling, and the catalog UI. The agent catalog surface is @a5c-ai/atlas/catalog. See packages/atlas/README.md.
The published CLI walkthrough at docs/cli-examples.md is verified against the real repo surfaces, not a separate docs-only harness. From a fresh checkout, use:
npm ci
npm run build --workspace=@a5c-ai/babysitter-sdk
npm run docs:prepare
npm run docs:examples:smoke
npm run docs:qa
npm run docs:examples:verify runs that docs-focused flow end-to-end. The generated traceability map for the walkthrough lives at docs/generated/cli-examples-verification.md.
After installation, set up your environment:
/babysitter:user-install
This creates your personal profile with:
/babysitter:project-install
This analyzes your codebase and configures:
/babysitter:doctor
Run diagnostics to confirm everything is working.
claude "/babysitter:call implement user authentication with TDD"
Or in natural language:
Use the babysitter skill to implement user authentication with TDD
Claude will create an orchestration run, execute tasks step-by-step, handle quality checks and approvals, and continue until completion.
| Mode | Command | When to Use |
|---|---|---|
| Interactive | /babysitter:call | Learning, critical workflows - pauses for approval |
| Autonomous | /babysitter:yolo | Trusted tasks - full auto, no breakpoints |
| Planning | /babysitter:plan | Review process before executing |
| Continuous | /babysitter:forever | Monitoring, periodic tasks - runs indefinitely |
| Command | Purpose |
|---|---|
/babysitter:doctor | Diagnose run health and issues |
/babysitter:observe | Launch real-time monitoring dashboard |
/babysitter:resume | Continue an interrupted run |
/babysitter:help | Documentation and usage help |
Beyond the in-session skill commands (/babysitter:call, etc.), Babysitter provides an optional agent runtime CLI package, @a5c-ai/genty-platform, for orchestration, session management, MCP serving, daemon utilities, and the TUI. The main babysitter CLI comes from @a5c-ai/babysitter and is backed by @a5c-ai/babysitter-sdk; it keeps the core run/task/session/plugin surfaces plus harness:install and harness:install-plugin.
npm install -g @a5c-ai/babysitter
npm install -g @a5c-ai/genty-platform
# Run a process interactively via Claude Code (pauses at breakpoints)
genty call --harness claude-code --prompt "implement user authentication with TDD" --workspace .
# Run fully autonomous (no breakpoints)
genty yolo --harness claude-code --prompt "add pagination to the API" --workspace .
# Plan only (stops after Phase 1)
genty plan --harness claude-code --prompt "implement feature X"
# Run with the internal harness (no external AI agent needed)
genty call --harness internal --prompt "run lint and tests" --workspace .
# Resume an interrupted run
genty resume --run-id <runId> --harness claude-code --workspace .
# Initialize or inspect orchestration session state
babysitter session:init --session-id demo --state-dir .a5c --run-id <runId>
babysitter session:state --session-id demo --state-dir .a5c
# Start the MCP server owned by the agent runtime CLI
genty start-server --transport stdio
# Diagnose run health
genty doctor --run-id <runId>
# Analyze past runs for insights
genty retrospect --all --harness claude-code --workspace .
# Clean up old runs
genty cleanup --keep-days 7 --harness claude-code --workspace .
# Install an agent harness CLI (preferred)
adapters install claude-code
# Install a Babysitter harness plugin globally
babysitter harness:install-plugin claude-code
# Install a Babysitter harness plugin into a workspace
babysitter harness:install-plugin codex --workspace /path/to/repo
Note:
babysitter harness:installandbabysitter harness:discoverare deprecated. Useadapters install <agent>for agent installation andgentyfor runtime commands.
harness:install-plugin is the canonical scriptable install path for Babysitter plugins. For non-Claude harnesses it resolves to the published package installer shape tested in the SDK, for example npx --yes @a5c-ai/babysitter-codex install --workspace /path/to/repo.
--harness internal for AutomationThe internal harness is particularly useful for CI/CD and scripting because it requires no external AI coding agent:
# In a CI pipeline or script
genty call \
--harness internal \
--process .a5c/processes/lint-and-test.js#process \
--workspace . \
--no-interactive \
--json
It executes processes using the SDK's built-in engine, supports all effect types (tasks, breakpoints, sleeps, parallel dispatch), and produces the same event-sourced journal as any other harness.
| Package | Installs | Use it for |
|---|---|---|
@a5c-ai/babysitter | babysitter | Recommended human-facing install for the main CLI |
@a5c-ai/babysitter-sdk | babysitter, babysitter-sdk, babysitter-mcp-server | SDK/library usage and direct access to the core CLI implementation |
@a5c-ai/genty-platform | genty | Optional runtime/orchestration commands (call, resume, plan, start-server, tui, doctor) |
@a5c-ai/babysitter-<harness> | Harness-specific installer or plugin binary | Integrating Babysitter into a specific host tool such as Codex, Cursor, Gemini CLI, Pi, or GitHub Copilot |
The repository root package.json is workspace metadata for this monorepo. The public packages users install are the scoped packages above.
packages/
genty/ # genty agent stack
cli/ # @a5c-ai/genty โ CLI binary "genty"
core/ # @a5c-ai/genty-core โ agent-core runtime
platform/ # @a5c-ai/genty-platform โ orchestration platform
runtime/ # @a5c-ai/genty-runtime โ agent runtime
ui/ webui/ tui/ # UI surfaces (web console, terminal UI)
adapters/ # Adapter family
sdk/ # @a5c-ai/adapters โ root SDK + CLI "adapters"
codecs/ # @a5c-ai/adapters-codecs โ harness codec impls
cli/ # @a5c-ai/adapters-cli
gateway/ # @a5c-ai/adapters-gateway
hooks/ # hooks-adapter-* (per-harness hook adapters)
core/ transport/ ... # comm-adapter, transport-adapter, etc.
atlas/ # @a5c-ai/atlas โ knowledge graph + catalog
sdk/ # @a5c-ai/babysitter-sdk โ core SDK
kradle/ # @a5c-ai/kradle โ Kubernetes-native forge
core/ sdk/ cli/ web/
plugins/ # Installable plugin packages
babysitter-unified/ # Unified plugin for all harnesses
blueprints/ # Blueprint marketplace registry
a5c/marketplace/
library/ # Process library (methodologies + specializations)
+=============================================================================+
| /babysitter:call |
+=============================================================================+
| |
| YOUR PROCESS (JavaScript) This is the AUTHORITY |
| +----------------------------------------+ |
| | async function process(inputs, ctx) { | Real code, not config. |
| | | The orchestrator can ONLY |
| | await ctx.task(plan, { ... }); | do what this code permits. |
| | | |
| | await ctx.breakpoint({ | Breakpoints = human gates |
| | question: 'Approve plan?' | (enforced, not optional) |
| | }); | |
| | | |
| | await ctx.task(implement, { ... }); | Tasks = executable work |
| | | |
| | const score = await ctx.task(verify);| Quality gates = code logic |
| | if (score < 80) | (not config, real checks) |
| | await ctx.task(refine, { ... }); | |
| | } | |
| +-------------------+--------------------+ |
| | |
| | governs |
| v |
| +---------------------------------------------------------------------+ |
| | ENFORCEMENT MECHANISM | |
| | | |
| | +-------------+ +------------------+ +-----------------+ | |
| | | MANDATORY |---->| PROCESS CHECK |---->| DECISION | | |
| | | STOP | | What does the | | | | |
| | | (enforced | | process permit | | Permitted: next | | |
| | | by hook) | | next? | | task assigned | | |
| | +-------------+ +------------------+ | | | |
| | | | Blocked: halt | | |
| | v | until gate | | |
| | +--------------+ | passes | | |
| | | Gate/task | +-----------------+ | |
| | | from code | | |
| | +--------------+ | |
| +---------------------------------------------------------------------+ |
| | |
| | records every decision |
| v |
| +---------------------------------------------------------------------+ |
| | JOURNAL: Every task, gate, decision - immutable, replayable | |
| +---------------------------------------------------------------------+ |
| |
+=============================================================================+
The difference from simple iteration:
~/.a5c/runs/ by default, with repo-local .a5c/runs/ compatibility reads - deterministic replay and resume from any point| Traditional Approach | Babysitter |
|---|---|
| Agent decides what to do and when it's "done" | Orchestrator can only do what your process code permits |
| Ad-hoc workflow | Deterministic, code-defined processes โ mandatory stop after every step (enforcement, not assistance) |
| Single task execution | Complex agentic workflows: parallel execution, dependencies, sub-agent delegation across harnesses |
| State lost on session end | Event-sourced, deterministic replay, fully resumable |
| Manual approval via chat | Structured breakpoints with context |
| No audit trail | Complete journal of all events |
| Run script once, hope it works | Gates (including quality gates) block progression until satisfied |
Key differentiators: Process enforcement, deterministic replay, human-in-the-loop breakpoints, parallel execution, and quality convergence (one gate type among several).
Babysitter has its own blueprint system -- and it works differently from what you might expect. A blueprint is not a code module with extension points. It's a set of natural language instructions (markdown files) or deterministic coded processes (JS files) that an AI agent reads and executes. The SDK stores, versions, and distributes the instructions. The AI agent is the runtime.
This means a blueprint can do anything an AI agent can do: install npm packages, generate CI/CD pipelines, set up git hooks, create Terraform configs, modify your linter rules, copy babysitter processes into your project, and interview you about your preferences along the way.
The official marketplace includes blueprints for security (gitleaks, ESLint security rules, audit processes), testing (Vitest/Playwright/pytest setup, coverage gates, TDD processes), deployment (Terraform, Helm, Dockerfiles, multi-environment pipelines), themes (sound effects, design systems, conversational personality), CI/CD (GitHub Actions workflows), and rate limiting (exponential backoff hooks).
To manage blueprints, use the /babysitter:blueprints command inside your harness (or babysitter blueprints:* from the CLI). The agent reads the blueprint's install instructions, interviews you, analyzes your project, and executes the setup -- all within a babysitter orchestration run.
See the full Blueprints documentation for details on how installs work, the marketplace format, creating your own blueprints, and the migration system. Agent harness plugins are covered separately in Plugins documentation.
Babysitter includes a 4-layer token compression subsystem (built into packages/babysitter-sdk/) that reduces context window usage by 50-67% on real sessions while maintaining 99% fact retention.
All compression hooks are automatically registered by the babysitter plugin -- no manual settings.json configuration needed. Install the plugin and compression is active.
| Layer | Hook | Engine | Content | Reduction |
|---|---|---|---|---|
| 1a | userPromptHook | density-filter | User prompts | ~29% |
| 1b | commandOutputHook | command-compressor | Bash/shell output | ~47% avg |
| 2 | sdkContextHook | sentence-extractor | Agent/task context | ~87% |
| 3 | processLibraryCache | sentence-extractor | Library files (pre-cached) | ~94% |
# Disable all compression
export BABYSITTER_COMPRESSION_ENABLED=false
# Disable a single layer
babysitter compression:toggle sdkContextHook off
# Show current effective config
babysitter compression:config
Edit .a5c/compression.config.json to persist settings (env vars always take priority):
{
"enabled": true,
"layers": {
"userPromptHook": { "enabled": true, "threshold": 500, "keepRatio": 0.78 },
"commandOutputHook": { "enabled": true, "excludeCommands": ["jq", "curl", "docker"] },
"sdkContextHook": { "enabled": true, "targetReduction": 0.15, "minCompressionTokens": 150 },
"processLibraryCache": { "enabled": true, "targetReduction": 0.35, "ttlHours": 24 }
}
}
Toggle any layer with babysitter compression:toggle <layer> <on|off> or set individual values with babysitter compression:set <key> <value>.
babysitter CLIadapters CLIWe welcome contributions! Here's how you can help:
See CONTRIBUTING.md for detailed guidelines.
| Tool | Description |
|---|---|
| Observer Dashboard | Real-time monitoring UI for parallel runs โ install and launch with the built-in /babysitter:observe command |
| Telegram Bot | Control sessions remotely |
| vibe-kanban | Parallel process management |
This project is licensed under the MIT License. See LICENSE.md for details.
Built with Claude by A5C AI
Back to Top
.a5c/
o.md
orchestrator_scripts/
a5c_append_event.py
a5c_render_prompt.py
extract_first_json.py
extract_last_json.py
normalize_json_ascii.py
repair_json_text.py
sanitize_codex_output.py
processes/
agent-commander-rts-v2.inputs.json
agent-commander-rts-v2.mjs
agent-commander-rts-v4.inputs.json
agent-commander-rts-v4.mjs
agent-commander-rts-v5.inputs.json
agent-commander-rts-v5.mjs
agent-commander-rts.inputs.json
agent-commander-rts.mermaid.md
agent-commander-rts.mjs
agent-commander-rts.process.md
agent-version-daily-tracker.inputs.json
agent-version-daily-tracker.js
ci-issue-triage.mjs
ci-pr-review.mjs
ci-qa-review.mjs
copilot-cli-1-0-54-assimilation.inputs.json
copilot-cli-1-0-54-assimilation.js
github-gardening.mjs
issue-136-session-resolution-leak.inputs.json
issue-136-session-resolution-leak.mjs
issue-138-session-resume-state-dir-normalization.inputs.json
issue-138-session-resume-state-dir-normalization.mjs
issue-140-observer-dashboard-launch-plan.inputs.json
issue-140-observer-dashboard-launch-plan.mjs
issue-159-stop-hook-effect-backoff.inputs.json
issue-159-stop-hook-effect-backoff.mjs
issue-166-stop-hook-missing-session-recovery.inputs.json
issue-166-stop-hook-missing-session-recovery.mjs
issue-170-claude-code-run-create-first-iteration.inputs.json
issue-170-claude-code-run-create-first-iteration.mjs
issue-181-run-completed-idempotency.inputs.json
issue-181-run-completed-idempotency.mjs
issue-182-subagent-cleanup-contract.inputs.json
issue-182-subagent-cleanup-contract.mjs
issue-191-journal-sequence-collision.inputs.json
issue-191-journal-sequence-collision.mjs
issue-316-claude-code-2-1-150-assimilation.inputs.json
issue-316-claude-code-2-1-150-assimilation.mjs
issue-320-openclaw-2026-5-22.inputs.json
issue-320-openclaw-2026-5-22.mjs
issue-323-amp-assimilation.js
issue-324-droid-0-132-1-assimilation.inputs.json
issue-324-droid-0-132-1-assimilation.mjs
issue-325-summary.md
issue-339-claude-bi-live-stack.inputs.json
issue-339-claude-bi-live-stack.mjs
issue-355-claude-mythos-graph-update.js
issue-356-openai-model-variants.inputs.json
issue-356-openai-model-variants.mjs
issue-358-xai-grok-4-3.inputs.json
issue-358-xai-grok-4-3.mjs
issue-359-deepseek-v4-model-tracking.inputs.json
issue-359-deepseek-v4-model-tracking.mjs
issue-362-amazon-nova-2-tracking.inputs.json
issue-362-amazon-nova-2-tracking.mjs
issue-362-summary.md
issue-363-cohere-model-tracking.js
issue-364-llama-4-405b-audit.inputs.json
issue-364-llama-4-405b-audit.mermaid.md
issue-364-llama-4-405b-audit.mjs
issue-364-llama-4-405b-audit.process.md
issue-367-global-babysitter-shim-preflight.inputs.json
issue-367-global-babysitter-shim-preflight.mjs
issue-368-live-stack-create-hardening.inputs.json
issue-368-live-stack-create-hardening.mjs
issue-429-openai-gpt-5-3-codex-tracking.js
issue-430-openai-gpt-oss-model-tracking.js
issue-431-deepseek-v4-pro-flash-tracking.inputs.json
issue-431-deepseek-v4-pro-flash-tracking.mjs
issue-432-mistral-model-tracking.inputs.json
issue-432-mistral-model-tracking.js
issue-433-qwen-model-catalog-update.js
issue-434-summary.md
issue-435-inference-provider-model-availability.inputs.json
issue-435-inference-provider-model-availability.mermaid.md
issue-435-inference-provider-model-availability.mjs
issue-435-inference-provider-model-availability.process.md
issue-438-claude-code-2-1-152-assimilation.js
issue-439-claude-agent-sdk-0-3-152.js
issue-440-codex-0-134-0-assimilation.inputs.json
issue-440-codex-0-134-0-assimilation.mjs
issue-443-openclaw-2026-5-26.inputs.json
issue-443-openclaw-2026-5-26.mjs
issue-444-omp-15-5-6-assimilation.inputs.json
issue-444-omp-15-5-6-assimilation.mjs
issue-446-amp-release-tracking.inputs.json
issue-446-amp-release-tracking.mjs
issue-447-copilot-cli-1-0-55-3-assimilation.inputs.json
issue-447-copilot-cli-1-0-55-3-assimilation.js
issue-481-cleanup-command-cradle-path.inputs.json
issue-481-cleanup-command-cradle-path.mjs
issue-483-gemini-live-stack-regression.inputs.json
issue-483-gemini-live-stack-regression.mjs
issue-484-live-stack-create-mode-bugfix.inputs.json
issue-484-live-stack-create-mode-bugfix.js
issue-485-sonnet-proxy-tool-translation.inputs.json
issue-485-sonnet-proxy-tool-translation.mjs
issue-489-live-stack-deepseek-timeout.js
issue-491-live-stack-timeout.inputs.json
issue-496-claude-code-2-1-153-graph-update.js
issue-496-inputs.json
issue-497-copilot-cli-1-0-55-7-graph-update.inputs.json
issue-497-copilot-cli-1-0-55-7-graph-update.js
issue-498-gemini-cli-0-44-0-graph-update.inputs.json
issue-498-gemini-cli-0-44-0-graph-update.js
issue-500-openclaw-2026-5-27.inputs.json
issue-500-openclaw-2026-5-27.mjs
issue-502-pi-0-76-0-graph-update.inputs.json
issue-502-pi-0-76-0-graph-update.js
issue-503-amp-release-tracking.inputs.json
issue-503-amp-release-tracking.mjs
issue-505-droid-cli-0-135-0-graph-update.inputs.json
issue-505-droid-cli-0-135-0-graph-update.js
issue-509-cursor-3-5-graph-update.js
issue-531-plugin-marketplace-version-sync.inputs.json
issue-531-plugin-marketplace-version-sync.mjs
issue-532-claude-opus-4-8-graph-update.js
issue-532-inputs.json
issue-534-gemini-image-models-graph-update.inputs.json
issue-534-gemini-image-models-graph-update.js
issue-535-amazon-nova-2-pro-graph-update.js
issue-536-claude-code-2-1-156-graph-update.js
issue-536-inputs.json
issue-537-claude-agent-sdk-0-3-156-graph-update.js
issue-537-inputs.json
issue-539-gemini-cli-0-44-1-graph-update.inputs.json
issue-539-gemini-cli-0-44-1-graph-update.js
issue-540-opencode-1-15-12-graph-update.inputs.json
issue-540-opencode-1-15-12-graph-update.js
issue-541-pi-0-77-0-graph-update.inputs.json
issue-541-pi-0-77-0-graph-update.js
issue-542-omp-15-5-11-graph-update.inputs.json
issue-542-omp-15-5-11-graph-update.js
issue-544-amp-graph-update.inputs.json
issue-544-amp-graph-update.mjs
issue-563-live-stack-bp-gemini-flash.mjs
issue-572-shell-output-schema-plan.inputs.json
issue-572-shell-output-schema-plan.mjs
issue-573-process-runtime-error-recovery.inputs.json
issue-573-process-runtime-error-recovery.mjs
issue-574-typed-ctx-halt.inputs.json
issue-574-typed-ctx-halt.mjs
issue-575-agent-core-streaming-history.inputs.json
issue-575-agent-core-streaming-history.mjs
issue-576-unify-tool-registries.inputs.json
issue-576-unify-tool-registries.mjs
issue-577-tasks-mux-native-agent-tools.inputs.json
issue-577-tasks-mux-native-agent-tools.mjs
issue-578-end-to-end-token-cost-tracking.inputs.json
issue-578-end-to-end-token-cost-tracking.mjs
issue-579-concurrent-effects-plan.inputs.json
issue-579-concurrent-effects-plan.mjs
issue-580-mcp-orchestration-wiring.inputs.json
issue-580-mcp-orchestration-wiring.mjs
issue-582-agent-core-structured-output-vision.inputs.json
issue-582-agent-core-structured-output-vision.mjs
issue-584-decouple-process-env-mutation.inputs.json
issue-584-decouple-process-env-mutation.mjs
issue-585-agent-runtime-crash-k8s.inputs.json
issue-585-agent-runtime-crash-k8s.mjs
issue-586-kanban-exhaustiveness-checks.inputs.json
issue-586-kanban-exhaustiveness-checks.mjs
issue-587-agent-core-abort-token-calc.inputs.json
issue-587-agent-core-abort-token-calc.mjs
issue-588-agent-core-tool-system-gaps.inputs.json
issue-588-agent-core-tool-system-gaps.mjs
issue-590-agent-runtime-sandboxing.inputs.json
issue-590-agent-runtime-sandboxing.mjs
issue-591-agent-runtime-observability.inputs.json
issue-591-agent-runtime-observability.mjs
issue-592-agent-runtime-trigger-hardening.inputs.json
issue-592-agent-runtime-trigger-hardening.mjs
issue-593-agent-runtime-background-process-lifecycle.inputs.json
issue-593-agent-runtime-background-process-lifecycle.mjs
issue-594-agent-platform-session-routing-plan.inputs.json
issue-594-agent-platform-session-routing-plan.mjs
issue-595-agent-platform-orchestration-features.inputs.json
issue-595-agent-platform-orchestration-features.mjs
issue-596-tasks-mux-task-management.inputs.json
issue-596-tasks-mux-task-management.mjs
issue-598-sdk-tasks-mux-hooks-integration.inputs.json
issue-598-sdk-tasks-mux-hooks-integration.mjs
issue-599-transport-mux-integration-plan.inputs.json
issue-599-transport-mux-integration-plan.mjs
issue-600-deduplicate-background-registry-shell-invocation.inputs.json
issue-600-deduplicate-background-registry-shell-invocation.mjs
issue-601-here-be-dragons-implementation-plan.inputs.json
issue-601-here-be-dragons-implementation-plan.mjs
issue-601-remaining-dragons-plan.inputs.json
issue-601-remaining-dragons-plan.mjs
issue-602-external-agent-discovery.inputs.json
issue-602-external-agent-discovery.mjs
issue-606-execution-report.md
issue-606-tasks-mux-integration-tests.inputs.json
issue-606-tasks-mux-integration-tests.mjs
issue-607-external-agent-docs-plan.inputs.json
issue-607-external-agent-docs-plan.mjs
issue-608-staging-env-vars.inputs.json
issue-608-staging-env-vars.mjs
issue-609-krate-web-playwright-e2e.inputs.json
issue-609-krate-web-playwright-e2e.mjs
issue-610-controller-persistence.inputs.json
issue-610-controller-persistence.mjs
issue-611-api-route-sync-forwarding.inputs.json
issue-611-api-route-sync-forwarding.mjs
issue-612-health-probes-durable-events.inputs.json
issue-612-health-probes-durable-events.mjs
issue-613-krate-ui-polish.inputs.json
issue-613-krate-ui-polish.mjs
issue-616-sdk-host-tool-discovery.inputs.json
issue-616-sdk-host-tool-discovery.mjs
issue-617-task-cancel-mcp-tool.inputs.json
issue-617-task-cancel-mcp-tool.mjs
issue-618-sdk-plugin-subprocess-support.inputs.json
issue-618-sdk-plugin-subprocess-support.mjs
issue-619-host-agent-identity-prompts.inputs.json
issue-619-host-agent-identity-prompts.mjs
issue-620-agent-identity-decoupling.inputs.json
issue-620-agent-identity-decoupling.mjs
issue-621-agent-identity-web-console.inputs.json
issue-621-agent-identity-web-console.mjs
issue-622-agent-identity-migration-compatibility.inputs.json
issue-622-agent-identity-migration-compatibility.mjs
issue-623-jitsi-helm-integration.inputs.json
issue-623-jitsi-helm-integration.js
issue-623-jitsi-helm-subchart-integration.inputs.json
issue-623-jitsi-helm-subchart-integration.mjs
issue-624-jitsi-crds-controllers-webhook-sync.inputs.json
issue-624-jitsi-crds-controllers-webhook-sync.mjs
issue-625-jitsi-web-console-plan.inputs.json
issue-625-jitsi-web-console-plan.mjs
issue-626-jitsi-embedded-meeting.inputs.json
issue-626-jitsi-embedded-meeting.mjs
issue-627-jitsi-agent-meeting-participation.inputs.json
issue-627-jitsi-agent-meeting-participation.mjs
issue-628-jitsi-agent-sidecar-runtime.inputs.json
issue-628-jitsi-agent-sidecar-runtime.mjs
issue-631-agent-mux-responder-backend.inputs.json
issue-631-agent-mux-responder-backend.mjs
issue-633-route-effect-resolution-through-tasks-mux.inputs.json
issue-633-route-effect-resolution-through-tasks-mux.mjs
issue-633-tasks-mux-routing-implementation-plan.inputs.json
issue-633-tasks-mux-routing-implementation-plan.mjs
issue-634-tasks-mux-routing-hub-gaps.inputs.json
issue-634-tasks-mux-routing-hub-gaps.mjs
issue-635-sdk-task-responder-type-plan.inputs.json
issue-635-sdk-task-responder-type-plan.mjs
issue-636-hooks-mux-missing-events.inputs.json
issue-636-hooks-mux-missing-events.mjs
issue-637-hooks-mux-typed-handlers-plan.inputs.json
issue-637-hooks-mux-typed-handlers-plan.mjs
issue-638-hooks-mux-decisions.inputs.json
issue-638-hooks-mux-decisions.mjs
issue-639-hooks-mux-async-matchers-config.inputs.json
issue-639-hooks-mux-async-matchers-config.mjs
issue-639-hooks-mux-capability-parity-plan.inputs.json
issue-639-hooks-mux-capability-parity-plan.mjs
issue-796-preflight-orphan-grep.inputs.json
issue-796-preflight-orphan-grep.mjs
issue-801-claude-agent-sdk-0-3-159-graph-update.js
issue-803-openai-node-6-39-1-graph-update.inputs.json
issue-803-openai-node-6-39-1-graph-update.js
issue-808-pi-0-78-0-graph-update.inputs.json
issue-808-pi-0-78-0-graph-update.js
issue-813-amp-0-0-1780244579-g6b52f9-graph-update.inputs.json
issue-813-amp-0-0-1780244579-g6b52f9-graph-update.js
issue-831-agent-mux-directory-moves-tdd.inputs.json
issue-831-agent-mux-directory-moves-tdd.mjs
issue-833-agent-mux-binary-renames.inputs.json
issue-833-agent-mux-binary-renames.js
issue-836-agent-core-genty-core-tdd-plan.inputs.json
issue-836-agent-core-genty-core-tdd-plan.mjs
issue-839-atlas-catalog-unification.inputs.json
issue-839-atlas-catalog-unification.mjs
issue-841-blueprints-rename-tdd.inputs.json
issue-841-blueprints-rename-tdd.mjs
issue-858-amp-0-0-1780336675-gf27daa-graph-update.inputs.json
issue-858-amp-0-0-1780336675-gf27daa-graph-update.js
issue-859-codex-0-136-0-graph-update.inputs.json
issue-859-codex-0-136-0-graph-update.js
issue-860-openai-node-6-40-0-graph-update.inputs.json
issue-860-openai-node-6-40-0-graph-update.js
issue-861-copilot-cli-1-0-57.inputs.json
issue-861-copilot-cli-1-0-57.mjs
issue-862-cursor-3-6-auto-review-graph-update.inputs.json
issue-862-cursor-3-6-auto-review-graph-update.js
issue-863-omp-15-7-6-graph-update.inputs.json
issue-863-omp-15-7-6-graph-update.js
issue-878-sessions-adapter-plan.inputs.json
issue-878-sessions-adapter-plan.mjs
issue-881-strike3-hypothesis-before-fix.inputs.json
issue-881-strike3-hypothesis-before-fix.mjs
live-stack-gardening.mjs
live-stack-matrix-stabilization.mjs
model-provider-daily-tracker.js
plugin-install-docs-refresh.js
sdk-runtime-bugfix.js
specs/
agent-catalog-multi-agent-capability-evidence-convergence-request.md
issue-320-openclaw-2026-5-22.md
issue-443-openclaw-2026-5-26.md
issue-500-openclaw-2026-5-27.md
tasks-mux-external-tracker-backend.inputs.json
tasks-mux-external-tracker-backend.mjs
tasks-mux-responder-type-system.inputs.json
tasks-mux-responder-type-system.mjs
.agents/
plugins/
marketplace.json
.changeset/
agent-mux.config.json
config.json
README.agent-mux.md
.claude/
.claude-plugin/
marketplace.json
agents/
code-reviewer.md
sdk-api-documenter.md
settings.json
skills/
assimilate-popular-workflows/
references/
classification-heuristics.md
SKILL.md
babysit-babysitter-issues/
SKILL.md
catalog-babysitter-users/
SKILL.md
fix-failing-pipelines/
SKILL.md
process-builder/
SKILL.md
retrospect-external-babysitter-run/
SKILL.md
.codex/
skills/
babysit/
SKILL.md
.cursor-plugin/
marketplace.json
.githooks/
pre-commit
pre-push
.github/
ISSUE_TEMPLATE/
bug_report.yml
config.yml
feature_request.yml
PULL_REQUEST_TEMPLATE.md
workflows/
agent-conflict-fix.yml
agent-dispatch.yml
agent-plan-dispatch.yml
agent-review-dispatch.yml
agent-version-check.yml
atlas-claims.yml
ci.yml
failure-triage-live-stack.yml
failure-triage-publish.yml
fix-npm-tags.yml
g0-rt-jitsi-e2e.yml
generate-atlas-plugins.yml
generate-plugins.yml
issue-triage-dispatch.yml
live-stack-gardening.yml
live-stack-published.yml
live-stack.yml
model-version-check.yml
publish-packages-from-tag.yml
publish.yml
qa-daily.yml
qa-dispatch.yml
release-tags.yml
staging-sync-plugin-commands.yml
sync-atlas-plugins.yml
sync-external-plugins.yml
.gitignore
.markdownlint-cli2.mjs
.mcp.json
.npmrc
action.yml
AGENTS.md
apps/
commander/
.claude/
launch.json
.gitignore
dist-lib/
... 1600 moreShowing a partial view of a very large repo.
ยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic