
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
CLI for Kodo Status Page - manage incidents, services, and monitoring from the terminal
Command-line interface for managing your Kōdo status page.
npm install -g kodo-cli
Or use directly with npx:
npx kodo-cli --help
# Login with your API key (found at /dashboard/api)
kodo login your-api-key-here
# View status overview
kodo status
# List services
kodo services list
# Create an incident
kodo incidents create -t "Database issues" --severity major -m "Investigating slow queries"
# Resolve an incident
kodo incidents resolve abc123 -m "Fixed the connection pool configuration"
# Save API key
kodo login <api-key>
kodo login <api-key> --url https://your-custom-domain.com
# Remove saved credentials
kodo logout
# Show current config
kodo whoami
# Quick overview of services and incidents
kodo status
# List all incidents
kodo incidents list
kodo incidents ls # alias
kodo incidents list --status investigating # filter by status
# Create incident
kodo incidents create -t "Title" --severity major
kodo incidents create -t "API down" --severity critical -m "Investigating the issue" --services "API,Database"
# Update incident
kodo incidents update <id> -s identified -m "Found the root cause"
# Resolve incident
kodo incidents resolve <id>
kodo incidents resolve <id> -m "Deployed fix"
# Get incident details
kodo incidents get <id>
# Delete incident
kodo incidents delete <id> --force
# List all services
kodo services list
kodo services ls # alias
# Create service
kodo services create -n "API Gateway" -d "Main API service"
# Update service status
kodo services status "API" degraded
kodo services status <service-id> maintenance
# Quick status shortcuts
kodo services up "API" # Set to operational
kodo services down "API" # Set to major_outage
# Delete service
kodo services delete <id> --force
# Simple heartbeat ping
kodo heartbeat <monitor-id>
kodo hb <monitor-id> # alias
# With status details
kodo heartbeat <monitor-id> --status up --time 1523 --message "Backup completed"
| Variable | Description |
|---|---|
KODO_API_KEY | API key (overrides saved config) |
KODO_API_URL | API base URL (default: https://kodostatus.com) |
- name: Create incident on failure
if: failure()
run: npx kodo-cli incidents create -t "Deploy failed" --severity major
env:
KODO_API_KEY: ${{ secrets.KODO_API_KEY }}
# Add to crontab
0 * * * * /usr/local/bin/backup.sh && npx kodo-cli heartbeat my-backup-monitor
MIT
FAQs
CLI for Kodo Status Page - manage incidents, services, and monitoring from the terminal
The npm package kodo-cli receives a total of 6 weekly downloads. As such, kodo-cli popularity was classified as not popular.
We found that kodo-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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.