Initializes the standard Interlateral agent mesh.
Install
mkdir -p .claude/skills/init-dazzaji && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16523" && unzip -o skill.zip -d .claude/skills/init-dazzaji && rm skill.zipInstalls to .claude/skills/init-dazzaji
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Initialize the standard Interlateral two-agent CLI mesh from a bootstrap agent by running me.sh, launching Claude Opus 4.7 plus Codex 5.5, proving live ACK, and waiting for "Reporting for Duty!". The bootstrap agent is not part of the mesh.Key capabilities
- →Launch Claude Code in `ia-claude`
- →Launch Codex in `ia-codex`
- →Confirm detected CLI versions
- →Verify live acknowledgement between agents
- →Inspect telemetry logs for startup failures
- →Shut down launcher-owned agent sessions
How it works
The skill executes `me.sh` to launch Claude and Codex agents, establishes their communication, and verifies their readiness. It provides commands to inspect the setup and handle startup failures.
Inputs & outputs
When to use init
- →Initialize agent mesh
- →Bootstrap Interlateral duo
- →Set up agent communication mesh
About this skill
Init
Purpose
Use this skill when a fresh bootstrap agent is asked to initialize the normal Interlateral CLI mesh.
This skill starts exactly the standard duo:
- Claude Code in
ia-claude - Codex in
ia-codex
It does not launch Gemini CLI, Antigravity CLI, Antigravity Desktop, desktop inbox peers, or extra workers. Those peers are opt-in only when Principal Human explicitly selects them outside the standard init flow.
The agent running this skill is the bootstrap operator. It is not a mesh peer and should not claim a mesh identity.
Boundaries
Do not use this skill for:
- desktop peers
- quartet teams
- extra workers
- Gemini or Antigravity peers
- sprint role assignment
- long-running collaboration patterns
For desktop peers, use desktop-mesh-peer.
For transport details, live comms mechanics, ACK proof, direct-send rules, and troubleshooting, use mesh-comms-core.
For quartet work, use ready-rock-quartet.
init is the normal CLI bootstrap entrypoint. It also orients operators to the rest of the live-comms skill map: desktop-mesh-peer for Claude Desktop or Codex Desktop, and mesh-comms-core for the shared tmux/direct-injection substrate.
Defaults
me.sh owns the launch mechanics and prints the exact commands before starting the sessions.
Defaults:
- Claude model:
claude-opus-4-7 - Codex model:
gpt-5.5 - Ready phrase:
Reporting for Duty! - tmux socket:
/tmp/interlateral-agents-tmux.sock
Model and argument defaults are configurable with environment variables:
CLAUDE_MODEL=claude-opus-4-7 CODEX_MODEL=gpt-5.5 ./me.sh
CLAUDE_ARGS="..." CODEX_ARGS="..." ./me.sh
Procedure
- Change to the agents repo:
cd path/to/interlateral_agents
- Run the standard initializer:
./me.sh
Use ./me.sh --force only when the human explicitly accepts replacing attached ia-claude or ia-codex windows.
- Read the preflight output before the sessions launch.
Confirm it prints:
- detected CLI versions
- actual Claude launch command
- actual Codex launch command
- the configured ready phrase
- Wait for both sessions to report:
Reporting for Duty!
- Verify the ACK path if either side looks uncertain:
tmux -S /tmp/interlateral-agents-tmux.sock list-sessions
tail -40 interlateral_dna/comms.md
The comms log should contain a stamped Claude ACK to Codex and a stamped Codex ACK to Claude.
Failure Handling
If startup fails:
- Inspect the printed launch command and the relevant pane output.
- Check
interlateral_dna/claude_telemetry.logandinterlateral_dna/codex_telemetry.log. - If the run produced half-started sessions, shut down only the launcher-owned duo:
source scripts/tmux-config.sh
run_tmux kill-session -t "$CC_SESSION" 2>/dev/null || true
run_tmux kill-session -t "$CODEX_SESSION" 2>/dev/null || true
Do not use scripts/shutdown.sh for this scoped cleanup. That script intentionally tears down every session on the shared socket.
- Retry once with corrected model or argument environment variables.
Do not improvise new mesh topology inside this skill. Escalate if the standard duo cannot boot cleanly after one controlled retry.
Report Format
When complete, report:
INIT_STATUS: READY
BOOTSTRAP_AGENT_IN_MESH: no
SOCKET: /tmp/interlateral-agents-tmux.sock
CLAUDE_SESSION: ia-claude
CODEX_SESSION: ia-codex
READY_PHRASE: Reporting for Duty!
ACK_STATUS: direct plus ledger confirmed
When not to use it
- →For desktop peers
- →For quartet teams or extra workers
- →For Gemini or Antigravity peers
Prerequisites
Limitations
- →The bootstrap agent is not part of the mesh
- →Does not launch Gemini CLI, Antigravity CLI, or Antigravity Desktop
- →Does not support improvising new mesh topology
How it compares
This skill specifically initializes a predefined two-agent CLI mesh with live ACK verification, unlike a generic script that might only launch processes.
Compared to similar skills
init side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| init (this skill) | 0 | 2mo | Review | Intermediate |
| swarm-advanced | 7 | 4mo | Review | Advanced |
| windsurf-mcp-integration | 1 | 2mo | Review | Advanced |
| agent-hierarchical-coordinator | 0 | 6mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by dazzaji
View all by dazzaji →You might also like
swarm-advanced
ruvnet
Advanced swarm orchestration patterns for research, development, testing, and complex distributed workflows
windsurf-mcp-integration
jeremylongshore
Manage integrate MCP servers with Windsurf for extended capabilities. Activate when users mention "mcp integration", "model context protocol", "external tools", "mcp server", or "cascade tools". Handles MCP server configuration and integration. Use when working with windsurf mcp integration functionality. Trigger with phrases like "windsurf mcp integration", "windsurf integration", "windsurf".
agent-hierarchical-coordinator
ruvnet
Agent skill for hierarchical-coordinator - invoke with $agent-hierarchical-coordinator
agent-quorum-manager
ruvnet
Agent skill for quorum-manager - invoke with $agent-quorum-manager
create-mcp-server
appliedcognetics
Scaffold a local MCP server with synthetic data for agentic system development. Use when creating a new data source, building tool endpoints, or generating test data for agents to consume.
blocks-network
blocksnetwork
Non-linear reference for managing Blocks Network agents — features, configuration, CLI, IO schemas, streaming, consumer SDK, publishing, invites, troubleshooting. Use when working with an existing agent, modifying, deploying, calling agents from a script, or looking up a Blocks feature.