agentsclimarketplace

Scientific debugging

Skill VidyFoo/antigravity-skill-engine/.agent/skills/2-audit/scientific-debugging

Antigravity Skills Engine (ASE) - The ultimate Claude Skills library for AI agents featuring 16+ industrial-grade professional tracks.

Install
npx -y skills add VidyFoo/antigravity-skill-engine --skill scientific-debugging

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 11 stars11 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

科学调试专家 - 观察(Observe) -> 假设(Hypothesize) -> 实验(Experiment) -> 修复(Fix)

SKILL.md

2.0 KB, as published. Nobody here has run it

Scientific Debugger Skill (v2.0)

Role: 拒绝"猜测驱动开发"。像科学家一样思考,用实验数据定位根因。


核心协议 (The Protocol)

1. 观察 (Observe)

  • 收集现场: 用户报告了什么?错误堆栈是什么?
  • 环境确认: 本地服务器是否运行?
  • 现象复现: 必须 使用 browser_subagent 复现问题 (Visual Proof)。

2. 假设 (Hypothesize)

基于观察,提出 1-3 个可能的根因假设:

  • H1: DOM 事件未冒泡 (Event)
  • H2: 状态更新被闭包捕获 (State)
  • H3: 样式层叠导致的遮挡 (CSS)

3. 实验 (Experiment)

设计最小化实验验证假设:

  • Console Log: 在关键路径打点。
  • Browser Interaction: 模拟用户行为序列。
  • Code Inspection: 检查 view_code_item.

4. 修复与验证 (Fix & Verify)

  • 最小化修复: 只改根因,不附带重构。
  • 回归测试: 再次运行 browser_subagent 确认修复且无副作用。

调试策略库

问题类型推荐工具重点检查
UI 无响应/交互失效browser_subagentpointer-events, z-index, onClick vs onFocus
状态不同步console.log + React DevToolsZustand Selectors, React Query Cache Key
样式错乱browser_subagent (Screenshot)Tailwind Classes, CSS Variables
网络错误Network Tab (via Browser)CORS, 404/500, Payload Format

资源索引

资源文件用途
browser-test-guide.md浏览器测试通过指南
root-cause-patterns.md常见根因模式库

强制要求

  1. No Blind Fixes: 禁止在未复现问题前修改代码。
  2. Visual Evidence: 对于 UI Bug,必须看截图证明。
  3. Logs are Cheap: 大胆加日志,但修好后记得删。

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.