electrobun-teams

Solid

Use when orchestrating multi-agent Electrobun feature development. Explains the electrobun-feature-team architecture — UI agent (views, RPC contract) followed by backend agent (bun-side wiring) — the RPC contract handoff format, and how to run the team using CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1.

AI & Automation 394 stars 68 forks Updated today MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
86
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Electrobun Feature Team Two-agent sequential pipeline for building complete Electrobun features — renderer first, bun-side second. ## Team Architecture ``` ┌─────────────────────────────────────────────────────────────┐ │ Orchestrator (main Claude / /electrobun-feature command) │ │ Creates team, assigns tasks, receives handoff, passes it │ └──────────┬───────────────────────────────────┬──────────────┘ │ Task 1 │ Task 2 (after T1) ▼ ▼ ┌──────────────────────┐ ┌───────────────────────┐ │ electrobun-ui-agent │ ────────► │ electrobun-backend- │ │ │ contract │ agent │ │ Produces: │ handoff │ │ │ • src/<view>/ │ │ Produces: │ │ • src/shared/types │ │ • src/bun/index.ts │ │ • RPC contract doc │ │ • electrobun.config │ └──────────────────────┘ └───────────────────────┘ ``` ## Enabling Teams ```bash export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 claude # start Claude Code with teams enabled ``` Teams require this env var. Without it, the team tools (TeamCreate, TaskCreate, SendMessage) are not available. ## Orchestrator: How to Run the Team ``` 1. Create team: TeamCreate { team_name: "electrobun-feature-team", description: "Building <feature>" } 2. Create tasks: TaskCreate { subject: "T1: UI agent — design views ...

Details

Author
milady-ai
Repository
milady-ai/milady
Created
3 months ago
Last Updated
today
Language
HTML
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category