nexu-io--open-design
8 行
357 B
Bash
可执行文件
8 行
357 B
Bash
可执行文件
#!/usr/bin/env bash
|
|
# Alias wrapper for opencode-cli — the primary bin name OD resolves for
|
|
# the opencode RuntimeAgentDef (bin: 'opencode-cli', fallbackBins: ['opencode']).
|
|
# Delegates to the same mock as mocks/bin/opencode.
|
|
set -euo pipefail
|
|
HERE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
exec node "$HERE/../mock-agent.mjs" --as opencode "$@"
|