Skip to content
Merged
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
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The official command-line interface for [DevHelm](https://devhelm.io) — manage

```bash
# Authenticate
$ devhelm auth login --token sk_live_...
$ devhelm auth login --token dh_live_...
Authenticated as you@company.com
Context 'default' saved to ~/.devhelm/contexts.json

Expand All @@ -27,7 +27,7 @@ $ devhelm monitors list
└────┴─────────────────────┴──────┴────────┴──────────────────────────┴──────────┘

# Create a monitor
$ devhelm monitors create --name "Checkout API" --type HTTP --url https://api.example.com/checkout --interval 30
$ devhelm monitors create --name "Checkout API" --type HTTP --url https://api.example.com/checkout --frequency 60

# Scaffold a config file and validate it
$ devhelm init
Expand Down Expand Up @@ -58,10 +58,10 @@ The CLI resolves credentials in this order:
devhelm auth login

# Or set a token directly
export DEVHELM_API_TOKEN=sk_live_...
export DEVHELM_API_TOKEN=dh_live_...

# Manage multiple environments
devhelm auth context create staging --api-url https://staging-api.devhelm.io --token sk_test_...
devhelm auth context create staging --api-url https://staging-api.devhelm.io --token dh_test_...
devhelm auth context use staging
devhelm auth context list
```
Expand Down Expand Up @@ -113,8 +113,10 @@ DevHelm is designed to work seamlessly with AI coding agents:
- **[Agent Skill](https://github.com/devhelmhq/skill)** — structured instructions for Claude Code, Cursor, Codex, and other AI agents

```bash
# Install the MCP server
npm install -g @devhelm/mcp-server
# Install the MCP server (Python package on PyPI)
pip install devhelm-mcp-server
# or, no install required:
uvx devhelm-mcp-server

# Or add the skill to your project
npx skills add devhelmhq/skill
Expand Down
Loading