Scripting & CI/CD — Weavetab Docs

Chain CLI calls in shell scripts and CI.

Scripting & CI/CD

Chain CLI calls in shell scripts and CI.

# Scripting & CI/CD

## Shell Scripting

```bash
# Reset before a fresh test run
weavetab reset --yes

# List stored secrets
weavetab secrets list

# Start the MCP server in WebSocket mode for custom scripts
weavetab --ws --port 3000 --headless &
```

## CI/CD Pipeline

```bash
# In GitHub Actions or Docker CI
npm install -g @weavetab/mcp
weavetab reset --yes
weavetab --ws --port 3000 --headless &
```