@shipany/shipany-code
v0.1.0
Published
AI coding agent powered by Open Agent SDK. Like Claude Code, but open-source and deployable anywhere.
Maintainers
Readme
ShipAny Code
AI coding agent powered by Open Agent SDK. Like Claude Code, but open-source and deployable anywhere.
Architecture
shipany-code (this project) = CLI + Terminal UI
└── @shipany/open-agent-sdk = Full agent engine (QueryEngine, 26 tools, MCP, etc.)This is the inverse of the official Claude ecosystem:
- Official:
claude-code(monolith) →claude-agent-sdk(thin wrapper) - Ours:
open-agent-sdk(full engine) ←shipany-code(CLI shell)
Install
npm install -g @shipany/shipany-codeUsage
Interactive mode (REPL)
shipany-codeNon-interactive mode
# With -p flag
shipany-code -p "Find and fix the bug in auth.py"
# With pipe
echo "Explain this codebase" | shipany-code
# With options
shipany-code -p "Refactor the API" --model claude-opus-4-6 --max-turns 30Options
| Option | Description |
|--------|-------------|
| -v, --version | Show version |
| -h, --help | Show help |
| -p, --prompt <text> | Run a one-shot prompt |
| --model <model> | Model to use (default: claude-sonnet-4-6) |
| --max-turns <n> | Maximum agentic turns |
| --system-prompt <text> | Custom system prompt |
| --cwd <path> | Working directory |
Development
# Clone and build
git clone https://github.com/shipany-ai/shipany-code.git
cd shipany-code
npm install
npm run build
# Run locally
node dist/cli.js
# Or with tsx (dev mode)
npx tsx src/cli.tsLicense
MIT
