Skip to content

Integrations

cyberian integrates with various tools and services to extend its capabilities.

Available Integrations

Claude Code Skill

A Claude Code skill for multi-agent orchestration. Install with:

/plugin marketplace add cyberian-skills

Use the skill to manage cyberian workflows directly from Claude Code.

OpenAI Codex

Integration guide for using cyberian with OpenAI Codex. Covers:

  • Configuration via ~/.codex/config.toml
  • Approval policies and sandbox modes
  • Troubleshooting startup and permission issues
  • Best practices for automated workflows
# Quick start with Codex
cyberian server start codex --skip-permissions

Integration Patterns

Claude Code + cyberian

Use Claude Code to:

  • Author workflows interactively
  • Debug workflow execution
  • Manage server farms
  • Coordinate multiple agents

Multi-Agent Workflows

Coordinate multiple agents via farms:

cyberian farm start farm.yaml

# Run workflows on different agents
cyberian run task1.yaml --port 4000 &
cyberian run task2.yaml --port 4001 &
wait

See Also