Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ Key variables for development:
| `SOCKET_CLI_API_BASE_URL` | Override API endpoint |
| `SOCKET_CLI_NO_API_TOKEN` | Disable default API token |

## Further Reading

- [`docs/build-guide.md`](docs/build-guide.md) — build pipeline, SEA binaries, cache management
- [`docs/bundle-tools.md`](docs/bundle-tools.md) — how bundled tools (opengrep, trivy, etc.) are integrated
- [`packages/cli/README.md`](packages/cli/README.md) — CLI package architecture
- [`packages/build-infra/README.md`](packages/build-infra/README.md) — shared build tooling
- [`packages/package-builder/README.md`](packages/package-builder/README.md) — template-based package generation

## See Also

- [Socket API Reference](https://docs.socket.dev/reference)
Expand Down
4 changes: 2 additions & 2 deletions docs/build-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,13 +252,13 @@ Assets are downloaded from [socket-btm](https://github.com/SocketDev/socket-btm)

```bash
# Clear download cache
pnpm run clean-cache
pnpm run clean:cache

# Clear CLI build cache
pnpm --filter @socketsecurity/cli run clean

# Clear all caches
pnpm clean
pnpm run clean
```

### Environment Variables
Expand Down