
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
colabor-cli
Advanced tools
Deploy and manage Temporal workflows from the command line.
npm install -g @colabor/cli
# Register an account (requires invite code)
colabor register
# Login
colabor login
# Create a namespace
colabor ns create my-namespace
# Set current namespace
colabor ns use my-namespace
# Deploy from current directory
colabor deploy
# List namespaces
colabor ns list
# Show namespace details
colabor ns show my-namespace
# Rollback to previous version
colabor rollback 1.0.0
# Stop a deployment
colabor stop 1.0.1
| Command | Description |
|---|---|
colabor register | Create a new account (requires invite code) |
colabor login | Login to your account |
colabor logout | Logout |
colabor whoami | Show login status |
| Command | Description |
|---|---|
colabor ns list | List namespaces you have access to |
colabor ns create <name> | Create a new namespace |
colabor ns show <name> | Show namespace details |
colabor ns use <name> | Set current namespace |
colabor ns current | Show current namespace |
| Command | Description |
|---|---|
colabor deploy | Deploy current directory to namespace |
colabor rollback <version> | Rollback to a previous version |
colabor stop <version> | Stop a deployment |
Your workflow project should have:
my-workflow/
├── temporal.config.json # Required
├── package.json
├── dist/ # Compiled code
│ ├── workflows/
│ │ └── index.js
│ └── activities/
│ └── index.js
└── src/ # Source (not deployed)
{
"name": "my-workflow",
"version": "1.0.0",
"description": "My Temporal workflow",
"temporal": {
"workerOptions": {
"maxConcurrentActivityTaskExecutions": 100,
"maxConcurrentWorkflowTaskExecutions": 100
}
},
"resources": {
"memory": "512m",
"cpus": "0.5"
},
"env": {
"MY_API_KEY": "secret"
}
}
Config is stored in ~/.config/colabor-cli/config.json:
| Key | Description |
|---|---|
apiUrl | Backend API URL (default: http://localhost:3001) |
token | Auth token (set after login) |
namespace | Current namespace |
You can also configure the CLI via environment variables:
export COLABOR_API_URL=https://api.colabor.ai
MIT
FAQs
Colabor.ai CLI - Deploy and manage Temporal workflows
We found that colabor-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.