Agent skill
dev-buddy-config
Dev Buddy web configuration portal for managing presets and pipeline config
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/dev-buddy-config
SKILL.md
Dev Buddy Web Configuration Portal
Launch the web configuration portal for managing AI provider presets and pipeline configuration.
Starting the Portal
bun "${CLAUDE_PLUGIN_ROOT}/scripts/config-server.ts" --cwd "${CLAUDE_PROJECT_DIR}"
The server:
- Starts on an OS-assigned port (printed to stdout as JSON)
- Opens the user's default browser automatically
- Serves the Alpine.js SPA for visual configuration
- Auto-shuts down after 60 minutes of inactivity
Portal Capabilities
| Tab | Features |
|---|---|
| AI Presets | List, add, update, remove presets; reveal/hide API keys |
| Pipeline Config | Configure which preset each stage uses |
Startup Output
The server prints a single JSON line to stdout on successful start:
{ "port": 12345, "url": "http://localhost:12345" }
Tell the user: Web portal running at http://localhost:{port}. Press Ctrl+C or close the terminal to stop.
The server also opens the browser automatically. If the browser does not open (e.g., SSH environment), the user can manually navigate to the URL.
Stopping the Portal
The portal stops automatically after 60 minutes of inactivity. To stop it manually:
- Press
Ctrl+Cin the terminal running the server
Security Notes
- The portal is localhost-only — CORS is restricted to the exact
http://localhost:{port}origin - API keys are masked by default; use the "Reveal Key" button to temporarily view a full key
- The portal auto-shuts down to minimize the attack window
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?