Forked from OpenCode v1.17.4 with multi-agent system: - 5 agents: aircoding, scheduler, worker, architect, reviewer - Deterministic DAG scheduling engine (coordinator_tick) - Tool whitelists as hard enforcement - AirCoding validation plugin - System prompt injection for routing - V1 requirements: C4 docs, ADR, AGENTS.md, debug-log.md - Design documents in docs/
11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
#!/usr/bin/env bun
|
|
import { $ } from "bun"
|
|
|
|
import { resolveChannel } from "./utils"
|
|
|
|
const channel = resolveChannel()
|
|
await $`bun ./scripts/copy-icons.ts ${channel}`
|
|
await $`bun ./scripts/copy-metainfo.ts ${channel}`
|
|
|
|
await $`cd ../opencode && bun script/build-node.ts`
|