skills/devtools/SKILL.md
ProductionOS Mission Control — launch Claude DevTools, show session dashboard with eval convergence, agent dispatches, cost tracking, and hot file intelligence.
npx skillsauth add ShaheerKhawaja/ProductionOS devtoolsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
ProductionOS Mission Control — launch Claude DevTools, show session dashboard with eval convergence, agent dispatches, cost tracking, and hot file intelligence.
| Parameter | Values | Default | Description |
|-----------|--------|---------|-------------|
| action | string | launch | Action: 'launch' (default), 'status', 'focus', 'quit' |
Before executing, run the shared ProductionOS preamble (templates/PREAMBLE.md) to confirm the active install root and session context.
Execute the requested action for Claude DevTools within the ProductionOS ecosystem.
DEVTOOLS_APP="/Applications/claude-devtools.app"
if [ ! -d "$DEVTOOLS_APP" ]; then
echo "DEVTOOLS_NOT_INSTALLED"
echo "Install with: brew install --cask claude-devtools"
else
DEVTOOLS_PID=$(pgrep -f "claude-devtools" 2>/dev/null | head -1)
if [ -n "$DEVTOOLS_PID" ]; then
echo "DEVTOOLS_RUNNING (PID: $DEVTOOLS_PID)"
else
echo "DEVTOOLS_STOPPED"
fi
fi
If not installed, tell the user to run brew install --cask claude-devtools and stop.
launch (default):
open /Applications/claude-devtools.app
osascript -e 'tell application "claude-devtools" to activate'
status:
python3 "${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/productionos}/hooks/devtools-dashboard.py" --full
focus:
osascript -e 'tell application "claude-devtools" to activate'
quit:
osascript -e 'tell application "claude-devtools" to quit'
Run the dashboard script:
python3 "${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/productionos}/hooks/devtools-dashboard.py" --full
This shows:
After executing the action, provide a concise summary:
| Scenario | Action | |----------|--------| | No target provided | Ask for clarification with examples | | Target not found | Search for alternatives, suggest closest match | | Missing dependencies | Report what is needed and how to install | | Permission denied | Check file permissions, suggest fix | | State file corrupted | Reset to defaults, report what was lost |
tools
Implementation planning workflow that turns approved ideas into dependency-aware execution plans.
development
Local RAG and Graph RAG over the SecondBrain wiki vault. Progressive context loading (hot cache -> index -> domain -> entity). Graph traversal via wikilink resolution. Use when agents need cross-project context, when answering questions that span multiple domains, or when building context for planning tasks. Triggers on: "wiki context", "cross-project context", "what do we know about", "check the wiki", "graph context", "/wiki-rag".
devops
UX improvement pipeline — creates user stories from UI guidelines, maps user journeys, identifies friction, dispatches fix agents. The user-experience equivalent of /production-upgrade.
development
Test-driven development workflow that writes failing tests first, implements minimally, and refactors safely.