@@ -12,7 +12,7 @@ The official command-line interface for [DevHelm](https://devhelm.io) — manage
1212
1313``` bash
1414# Authenticate
15- $ devhelm auth login --token sk_live_ ...
15+ $ devhelm auth login --token dh_live_ ...
1616Authenticated as you@company.com
1717Context ' default' saved to ~ /.devhelm/contexts.json
1818
@@ -27,7 +27,7 @@ $ devhelm monitors list
2727└────┴─────────────────────┴──────┴────────┴──────────────────────────┴──────────┘
2828
2929# Create a monitor
30- $ devhelm monitors create --name " Checkout API" --type HTTP --url https://api.example.com/checkout --interval 30
30+ $ devhelm monitors create --name " Checkout API" --type HTTP --url https://api.example.com/checkout --frequency 60
3131
3232# Scaffold a config file and validate it
3333$ devhelm init
@@ -58,10 +58,10 @@ The CLI resolves credentials in this order:
5858devhelm auth login
5959
6060# Or set a token directly
61- export DEVHELM_API_TOKEN=sk_live_ ...
61+ export DEVHELM_API_TOKEN=dh_live_ ...
6262
6363# Manage multiple environments
64- devhelm auth context create staging --api-url https://staging-api.devhelm.io --token sk_test_ ...
64+ devhelm auth context create staging --api-url https://staging-api.devhelm.io --token dh_test_ ...
6565devhelm auth context use staging
6666devhelm auth context list
6767```
@@ -113,8 +113,10 @@ DevHelm is designed to work seamlessly with AI coding agents:
113113- ** [ Agent Skill] ( https://github.com/devhelmhq/skill ) ** — structured instructions for Claude Code, Cursor, Codex, and other AI agents
114114
115115``` bash
116- # Install the MCP server
117- npm install -g @devhelm/mcp-server
116+ # Install the MCP server (Python package on PyPI)
117+ pip install devhelm-mcp-server
118+ # or, no install required:
119+ uvx devhelm-mcp-server
118120
119121# Or add the skill to your project
120122npx skills add devhelmhq/skill
0 commit comments