mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 10:05:18 +00:00
- Add --check, --publish-crates, --publish-npm-sdk, --publish-npm-cli flags to release script - Create CI workflow with pre-release checks (cargo fmt, clippy, test, tsc) - Update release workflow to run checks, build binaries, and publish packages - Add @sandbox-agent/cli npm package with platform-specific binaries (esbuild pattern) - Configure TypeScript SDK for npm publishing (exports, files, types) - Add crates.io metadata to Cargo.toml (repository, description) - Rename @sandbox-agent/web to @sandbox-agent/inspector
30 lines
649 B
Markdown
30 lines
649 B
Markdown
# Contributing
|
|
|
|
Documentation lives in `docs/` (Mintlify). Start with:
|
|
|
|
- `docs/index.mdx` for the overview
|
|
- `docs/quickstart.mdx` to run the daemon
|
|
- `docs/http-api.mdx` and `docs/cli.mdx` for API references
|
|
|
|
Quickstart (local dev):
|
|
|
|
```bash
|
|
sandbox-agent --token "$SANDBOX_TOKEN" --host 127.0.0.1 --port 2468
|
|
```
|
|
|
|
Extract API keys from local agent configs (Claude Code, Codex, OpenCode, Amp):
|
|
|
|
```bash
|
|
# Print env vars
|
|
sandbox-agent credentials extract-env
|
|
|
|
# Export to current shell
|
|
eval "$(sandbox-agent credentials extract-env --export)"
|
|
```
|
|
|
|
Run the web console (includes all dependencies):
|
|
|
|
```bash
|
|
pnpm dev -F @sandbox-agent/inspector
|
|
```
|
|
|