AI Skill Hub 推荐使用:开源AI工作流 是一款优质的Agent工作流。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
Totally Free Claude Code inspired terminal coding agent,支持多个提供商,Anthrop等。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
Totally Free Claude Code inspired terminal coding agent,支持多个提供商,Anthrop等。
开源AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:npm 全局安装 npm install -g otherside-cli # 方式二:npx 直接运行(无需安装) npx otherside-cli --help # 方式三:项目依赖安装 npm install otherside-cli # 方式四:从源码运行 git clone https://github.com/daanielcruz/otherside-cli cd otherside-cli npm install npm start
# 命令行使用
otherside-cli --help
# 基本用法
otherside-cli [options] <input>
# Node.js 代码中使用
const otherside_cli = require('otherside-cli');
const result = await otherside_cli.run(options);
console.log(result);
# otherside-cli 配置说明 # 查看配置选项 otherside-cli --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export OTHERSIDE_CLI_CONFIG="/path/to/config.yml"
<img src="assets/banner.png" alt="otherside cli" width="720">
<img src="assets/demo.gif" alt="otherside demo" width="720">
Otherside gives you Claude Code-style AI coding power with multiple providers.
Start TOTALLY FREE with a Google account through the built-in Antigravity provider, add local LLMs through any OpenAI-compatible endpoint, and combine them with Anthropic, Codex, Vertex, Kimi, and DeepSeek in the same workflow. Otherside searches real codebases, edits files, runs commands, verifies results, generates images with Codex, gives even text-only providers the ability to read images via a novel vision side-channel, and keeps the same tools and sessions across providers.
Everything important is built in: provider auth, model switching, persistent sessions, bridge mode, permissions, and diffs. No telemetry, no vendor lock-in, fewer restrictive rails, and full control over where your code goes.
Otherside keeps evolving with battle-tested tools, workflows, and best practices for coding, cybersecurity, infrastructure, automation, and other high-leverage terminal workflows.
| **Complete native toolset** | Built-in shell, search, web, read, edit, write, image-generate, and image-parse tools for real work inside real codebases. The agent acts, verifies, and reports; it doesn't just suggest. |
| **One workflow, many providers** | Built-in support for Anthropic, Codex, Gemini, Antigravity, Vertex, Kimi, DeepSeek, and any OpenAI-compatible endpoint. Combine FREE Google paths, local LLMs, and hosted providers without rebuilding your setup. |
| **Remote session via app** | Pair your terminal session with the companion iOS/Android app over an end-to-end encrypted channel brokered by Supabase. Watch sessions, read live logs, and interact with the agent from your phone. |
| **Goal-driven execution** | Set success criteria with /goal and keep the agent autonomously running/retrying across autocompact boundaries until the outcome is met and approved. |
| **Background tasks & shells** | Spawn and manage long-running background tasks (/tasks) and parallel terminal shell sessions (/bashes) directly from the agent interface. |
| **State checkpoints** | Easily restore code changes and conversation history to any previous checkpoint or turn using the /rewind command. |
| **MCP server integration** | Connect external tools, databases, and APIs using the Model Context Protocol (/mcp command) to extend the agent's capabilities. |
| **Image generation (Codex)** | GenerateImage produces 1024x1024 / 1536x1024 / 1024x1536 PNGs through Codex's hosted image tool. Optional transparent output with chroma-key alpha matting (Chebyshev distance + smoothstep ramp + dominance check + despill + min-filter + Gaussian blur) to drop the backdrop cleanly. |
| **Vision for blind providers** | Novel side-channel: ParseImage and the Read tool route screenshots, diagrams, and UI mockups through a configurable vision provider behind the scenes — even text-only models like DeepSeek can reason about pasted images as if they had native vision. |
| **Persistent project memory** | /dream turns recent work into structured memory so Otherside can carry useful context across sessions instead of starting cold every time. |
| **Live usage & wallet** | /usage aggregates per-session and all-time totals across providers; shows Kimi weekly/5h limits, DeepSeek USD wallet, Anthropic/Codex/Gemini/Antigravity plan utilization, and lets you hop between accounts without leaving the panel. |
| **Zero-telemetry control** | No product analytics, no hidden relay, no background tracking. Your code goes from your machine to the provider you choose, with no hidden throttles or surprise limits added without your consent. |
| **Single-binary install** | One lightweight executable to install, launch, and carry between projects. No heavyweight app stack required. |
| **Bridge mode** ⚠️ | **[in progress]** otherside serve exposes /v1/chat/completions so external tools can drive the same loop. |
Install uses the published release binary. You do not need Bun, Node, or a source checkout.
Pin a release:
OTHERSIDE_VERSION=v0.3.0-pre bash -c "$(curl -fsSL https://othersidecli.com/install.sh)"
$env:OTHERSIDE_VERSION = "v0.3.0-pre"
irm https://othersidecli.com/install.ps1 | iex
Install somewhere else:
OTHERSIDE_INSTALL_DIR=/usr/local/bin bash -c "$(curl -fsSL https://othersidecli.com/install.sh)"
$env:OTHERSIDE_INSTALL_DIR = "$env:USERPROFILE\bin"
irm https://othersidecli.com/install.ps1 | iex
Build from source is for contributors or local changes. It requires Bun 1.3+ and creates a local binary from your checkout.
git clone https://github.com/daanielcruz/otherside-cli.git
cd otherside-cli
bun install --frozen-lockfile
bun run build
./dist/otherside --version
bun run build writes ./dist/otherside for the current configured target. The repository default targets macOS arm64 because local development happens there; releases are cross-built by CI for macOS, Linux, and Windows.
To install your locally built binary on macOS or Linux:
mkdir -p "$HOME/.local/bin"
cp ./dist/otherside "$HOME/.local/bin/otherside"
chmod +x "$HOME/.local/bin/otherside"
Or use the helper:
bun run build:install
On Windows, build with an explicit Windows target and copy the executable to your chosen install directory:
bun build --compile --target=bun-windows-x64 --outfile=dist/otherside.exe src/main.ts
$InstallDir = "$env:LOCALAPPDATA\Programs\otherside"
New-Item -ItemType Directory -Force -Path $InstallDir | Out-Null
Copy-Item .\dist\otherside.exe "$InstallDir\otherside.exe" -Force
Contributor checks:
bun run typecheck
bun run lint
bun run test
该项目提供了一个开源的AI工作流,支持多个提供商,Anthrop等,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,开源AI工作流 是一款质量良好的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | otherside-cli |
| 原始描述 | 开源AI工作流:Totally Free Claude Code inspired terminal coding agent. Multi-provider: Anthrop。⭐10 · TypeScript |
| Topics | workflowtypescript |
| GitHub | https://github.com/daanielcruz/otherside-cli |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-05-28 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端