superdev

A service-management and debugging guide for projects connected to SuperDev, a tool that controls local or remote development services.

In plain words
What is it for?
Start, restart, or stop services; inspect logs; diagnose failures; debug browser pages and supported-language code; manage configurations; and deploy or roll back pipelines.
Why use it?
It provides evidence about service status, logs, traces, and errors before diagnosing a problem, while requiring a preview and approval before configuration changes.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/xsxdot/super-dev/superdev
Any agent
npx skills add Xsxdot/super-dev --skill superdev
Clone the repo
git clone --depth 1 https://github.com/Xsxdot/super-dev

Made for: Claude Code, Codex.

Per session 250 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,639 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00250 $0.04639
Opus 5 $0.00125 $0.02320
Sonnet 5 $0.00050 $0.00928
Haiku 4.5 $0.00025 $0.00464

Measured yesterday against content hash 73c62bdcbaa7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

superdev scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (hooks/run-hook.cmd), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

desktop/src-tauri/resources/skills/superdev/SKILL.md · 151 lines

How it starts

The opening of the file, as written. The whole thing — 151 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SuperDev MCP 使用指南

核心理念

工具给证据,AI 下根因

diagnose_serviceanalyze_trace_logssummarize_error_window 只收集确定性证据。不要把工具输出当成根因照搬;先采集运行状态、日志、trace、错误聚合,再由 AI 明确写出推理链和置信度。

读写分离 + 双层安全门

只读工具可放心使用。配置写入必须走 preview_config_change → apply_config_change所有写工具采用统一审批模型:直接调用(不传 approval_token),需要审批时 MCP 默认在 SuperDev 桌面端等待用户批准并自动带 token 续跑,对你无感。是否真正审批由用户配置的开关决定,用户也可在批准时开启「项目级免审窗口」让后续同项目操作自动通过。详见 references/safe-operations.md

第一步:永远先建立全局视野

开始任何 SuperDev MCP 任务前,先用 get_runtime_snapshotlist_services 摸清项目、服务、deployment、环境和状态。用户已经指定项目时用 list_services,用户只说“看看 SuperDev 怎么了”时用 get_runtime_snapshot

不要一上来就调用具体写操作,也不要在没有证据时猜测根因。

配置远程主机前必须先调用 list_hostshost_ids 只能填写 list_hosts 返回的非本机主机 hosts[].idis_self=false),不能填写 hosts[].name、SSH Host、机器名或用户口头描述。

总决策树

用户意图 先做什么 继续阅读
把服务跑起来 / 重启 / 停掉(哪怕没提 SuperDev) list_services 看该项目是否已被 SuperDev 接管;已接管则走 start_service/restart_service/stop_service,不要 shell 自己起 本页「第零纪律」
我(AI)刚改了被接管服务的代码,且改的是不热更新的部分 改动落盘后主动 restart_service(编译型先确认 deployment 会重新编译),再让用户验证 本页「第零·五纪律」
服务挂了、报错、为什么慢 list_services 定位 deployment,然后 diagnose_service 采证 references/debugging-workflow.md
看日志、查某个错误 按已知信息选择 tail_logs / follow_logs / search_logs / get_log_context references/log-tools.md
AI 调试遇到登录/鉴权墙 get_debug_credentials 取项目/服务授信的测试账号或 api-key,再正常填登录框或带请求头 本页「AI 调试凭据纪律」
调试本机前端页面(点击/输入/截图/读 console,哪怕没提 SuperDev) list_browser_targets 找 deployment → open_browser_debug_session(走审批)→ browser_snapshot 取 selector → 控制工具 references/browser-debug.md
日志/诊断都定位不到,要停在某行源码看栈和变量(Go/Node/Python/Rust/C++/Java/Kotlin) 确认服务在跑 → list_code_debug_targetsdebug_capture_at(attach 运行中进程,不重启) references/code-debug.md
新建受管语言运行时服务(Go/Node/Python/Java/Kotlin/Rust/C++)、不知配置填什么 list_language_runtime_providersdescribe_language_runtime_schema 照字段填,别猜命令串,再 preview→apply references/safe-operations.md
改项目、服务、deployment、pipeline 配置(含 start_on_boot / depends_on / readiness 先读现状,再 preview,再直接 apply(需审批时自动等待续跑) references/safe-operations.md
启动、停止、重启服务、部署/回滚 pipeline、导入模板 可选 preview_operation,直接调用写工具并等待审批自动续跑 references/safe-operations.md
部署、上线、回滚、查看 pipeline 运行 区分模板、配置、执行、观测四段 references/pipeline.md
记录一次排查过程 建立 debug session,过程中追加分析和观察 references/debugging-workflow.md

Read the full file on GitHub · 151 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 151 lines · 250 tokens per session scan A 73c62bdcbaa7

Subscribe to this mod's changes

superdev is a skill published in the GitHub repository Xsxdot/super-dev (1 stars, last pushed 11d ago), licensed Apache-2.0. It adds 250 tokens to every session and 4,639 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

chrome-devtools

Use Chrome DevTools MCP to control and inspect a live Chrome instance for network, console, performance, rendering, and Deep debugging. Pairs with playwright-cli (deterministic interaction/E2E) — complements, not duplicates.

ulises-jeremias/agent-toolkit · 50 tokens

cmux

End-user control of cmux topology and routing (windows, workspaces, panes/surfaces, focus, moves, reorder, identify, trigger flash). Use when automation needs deterministic placement and navigation in a multi-pane cmux layout.

nikships/skills-registry · 50 tokens

docs

Scale up scraping and drive interactive pages. Use batchscrape for many URLs, getbatchresults to page through async output, scrapewithactions to interact before scraping, and generatellmstxt to produce a site's AI policy file.

mysleekdesigns/crawlforge-mcp · 0 tokens

crawlforge-getting-started

Orientation and tool-selection guide for the CrawlForge MCP server's 28 web tools. Use when the user is getting started with CrawlForge, asks which CrawlForge tool to use, how to set up the API key, how skills or the CLI work, what a tool costs in credits, or when one tool fails and a fallback is needed. Routes…

mysleekdesigns/crawlforge-mcp · 125 tokens

crawlforge-web-scraping

Scrapes web pages and returns clean Markdown, HTML, plain text, links, or metadata using CrawlForge's scrape, fetchurl, extractcontent, extracttext, extractlinks, extractmetadata, mapsite, and crawldeep tools. Use when the user wants to scrape a URL, fetch a page, get the markdown or text of a website, extract links…

mysleekdesigns/crawlforge-mcp · 134 tokens

crawlforge-batch-automation

Automates large scraping jobs and browser interactions with CrawlForge's batchscrape, getbatchresults, scrapewithactions, and generatellmstxt tools. Use when the user wants to scrape many URLs at once, batch-scrape a list of pages, collect dozens of product, news, or competitor pages, run browser actions (click, type…

mysleekdesigns/crawlforge-mcp · 132 tokens