Claude-skill-registry devhub
Generate devhub.toml configuration files and manage multi-project development environments. Use when setting up projects, creating service configs, starting/stopping services, checking status, or managing development workflows. Triggers on mentions of devhub, project setup, service management, or development environment configuration.
git clone https://github.com/majiayu000/claude-skill-registry
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/devhub" ~/.claude/skills/majiayu000-claude-skill-registry-devhub && rm -rf "$T"
skills/data/devhub/SKILL.mdDevHub Skill
DevHub is a multi-project development environment manager that lets you start, stop, and monitor all your local development services from one place.
When to Use This Skill
Use DevHub when the user wants to:
- Set up a new project for local development
- Generate a
configuration filedevhub.toml - Start, stop, or restart development services
- Check the status of running services
- Manage multiple projects or services
- View logs from services
- Manage favorite projects
Primary Workflow: Setting Up a New Project
Step 1: Preview Discovery (Always Do This First)
devhub discover --dry-run
This shows what DevHub would detect without writing any files. Review the output with the user before proceeding.
Step 2: Generate Configuration
If the preview looks correct:
devhub discover
This creates
devhub.toml in the project root.
Step 3: Register the Project
devhub register
This adds the project to DevHub's registry so it can be managed globally.
Step 4: Start Services
devhub start
Or start a specific service:
devhub start -s api
Key Commands Quick Reference
| Command | Purpose |
|---|---|
| Preview auto-detection |
| Generate devhub.toml |
| Add project to registry |
| Start all services |
| Stop all services |
| Show all project statuses |
| Follow service logs |
| List all registered projects |
Supported Project Types
DevHub auto-detects these project types:
| Type | Detection File | Default Command |
|---|---|---|
| Rust | | |
| Node.js | | |
| Python (UV) | | |
| Python (pip) | | |
| Go | | |
| Flutter | | |
| Docker | | |
Monorepo Support
When no root project marker is found, DevHub scans subdirectories and creates a multi-service configuration automatically.
Additional Reference
For detailed information, see:
- COMMANDS.md - Complete CLI reference
- CONFIG-FORMAT.md - devhub.toml specification
- EXAMPLES.md - Real-world configuration examples
Best Practices
- Always preview first: Run
before generating configdevhub discover --dry-run - Review generated config: Check the devhub.toml and adjust ports/commands if needed
- Use favorites: Mark frequently-used projects with
devhub fav add <project> - Check for conflicts: Run
to detect port conflictsdevhub ports --check - Follow logs: Use
to monitor service outputdevhub logs <project> -f