no-no-debug

作者 summerliuuu已验证

No-No Debug — Self-evolution system for AI coding assistants. 10 minutes writing code, 2 hours debugging? This skill makes your AI remember all its bugs.

153
Stars
6
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/summerliuuu/no-no-debug

快速入门

使用 no-no-debug 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

no-no-debug

A self-evolution system for AI coding assistants

v1.3.0 — periodic review now actually works. Earlier versions promised "auto-triggers every 3 days" but had no enforcement mechanism — the review only ran when manually invoked, and the tracker went stale silently. v1.3.0 ships hooks/review_reminder.py, a UserPromptSubmit hook that checks the tracker on each message and reminds the AI to run the review when it's overdue. See CHANGELOG.md for the one-step migration from v1.2.0.

What problem does this solve?

10 minutes writing code, 2 hours debugging.

This skill fills the gap in AI's cross-session error memory, delivering three things:

  1. Dramatically less debug time
  2. Higher code quality
  3. A self-evolution feedback loop

The longer you use it, the fewer mistakes get repeated.

How it works

1. Real-time Logging (automatic)

When the AI is corrected, code errors occur, deploys fail, or tests don't pass — it automatically appends to a local error_log.md with a timestamp. No need to say "write that down."

2. Three Gates (on every code change)

Before the change: what does this affect? After the change: did you actually verify it? Before deploying: did you test with a non-admin account?

Runs silently. No output when all gates pass.

3. Periodic Review (auto-triggers every 3 days)

Reads error_log.md, categorizes by dimension, updates error_tracker.md, outputs an evolution report. Review frequency is configurable: 1 day / 3 days (default) / 7 days.

4. Rule Accumulation

New error type → automatically creates a prevention rule. Repeated offense → counter increments, rule strengthens. 4 consecutive clean periods → marked as cured.

Rules persist across sessions — nothing gets lost.

5. Confirmation Gate

The following situations require user confirmation before proceeding:

  • New feature development (not a bug fix)
  • Changes involving databases, environments, or deployments
  • Publishing to external platforms
  • When the user raises a new idea or new direction mid-task

6. Auto Hooks

Automatically configures Claude Code hooks on install:

  • Command errors → auto-logged to error_log.md
  • After editing a file → auto-reminder to verify
  • When user corrects the AI → correction content auto-logged
  • Review overdue → auto-reminder to start Mechanism 3 review

Tracked Dimensions

DimensionWhat it tracks
Data AccuracyDo displayed numbers/formulas match actual code
Environment SafetyDid config changes break login or the database
ForesightWere permission, migration, or cache issues caught before deploy
User PerspectiveDoes the feature work end-to-end from the user's account
VerificationWas there a real end-to-end test after the fix
Memory ConsistencyDid the AI read existing records instead of asking again
Tool JudgmentDid failing tools get swapped out promptly
Review CompletenessWere reviews and summaries thorough with nothing missed
Operational PrecisionDid changes produce unintended side effects
Check Before DoingWith unfamiliar tools/versions, was documentation checked first
ConcisenessWas a 3-line solution turned into 300 lines
Regression AwarenessDid fixing one bug introduce a new one
Style ConsistencyDoes new code follow the project's existing style and architecture
Independent JudgmentWhen the user's premise is wrong, does the AI push back instead of blindly executing
Real-env VerificationWas the fix validated with the real production command, not a sandbox/test harness
Cross-agent TrustDid the AI re-verify another agent's "pass" report instead of trusting it blindly
Dumb things humans will doNot yet committed, but inevitable
Dumb things AI will doSame, but the AI edition

Real-world data

PeriodErrorsNotes
Week 129Baseline, 10 dimensions identified
Week 26Rules starting to take effect
Week 3~0Still running

Installation

Claude Code (recommended — full experience with auto hooks)

claude skill add summerliuuu/no-no-debug

Zero configuration. Tracking files and hooks are initialized automatically on first run.

If you're installing manually or upgrading from v1.1.0, also copy the hook scripts:

mkdir -p ~/.claude/hooks
cp hooks/user_prompt_filter.py ~/.claude/hooks/
cp hooks/post_tool_failure.sh ~/.claude/hooks/
cp hooks/review_reminder.py ~/.claude/hooks/
chmod +x ~/.claude/hooks/post_tool_failure.sh

Then merge the PostToolUseFailure / UserPromptSubmit blocks from SKILL.md → Mechanism 6 into ~/.claude/settings.json.

Prerequisites. The shipped hooks use python3 (UserPromptSubmit filter) and jq (PostToolUseFailure parser). Both ship by default on recent macOS and most Linux distros; if either is missing the corresponding hook degrades gracefully — python3 missing means the correction detector silently no-ops, jq missing writes a one-time jq_not_installed marker to the log. Install with brew install jq (macOS) or your package manager if you want full coverage.

ChatGPT / Cursor / Copilot / Other AI assistants

  1. Copy the contents of SKILL.md
  2. Paste it into your system prompt or custom instructions
  3. Core features (3-gate checkpoint, periodic review, rule accumulation) work immediately
  4. Auto hooks are Claude Code only — other tools rely on the AI following the rules in SKILL.md

Compatibility

  • Claude Code — full experience with auto hooks and one-line install
  • Other AI coding assistants (ChatGPT, Cursor, Copilot, etc.) — paste SKILL.md content into your system prompt to use core features
  • Any project, any language
  • Pairs well with claude-mem (for session search)

Thank you for starring this project during installation.

📕 Xiaohongshu @Summer的AI日常 — AI coding in practice


🇨🇳 中文版

License

MIT — @summerliuuu

常见问题

What is no-no-debug?

no-no-debug is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by summerliuuu. No-No Debug — Self-evolution system for AI coding assistants. 10 minutes writing code, 2 hours debugging? This skill makes your AI remember all its bugs. It has 153 GitHub stars.

Is no-no-debug safe to use?

Yes. no-no-debug passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install no-no-debug?

Clone the repository with "git clone https://github.com/summerliuuu/no-no-debug" and add it to your Claude Code skills directory (see the Installation section above). no-no-debug ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

What programming language is no-no-debug written in?

no-no-debug is primarily written in Python. It is open-source under summerliuuu on GitHub, so you can review or fork the full source.

Are there alternatives to no-no-debug?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh no-no-debug against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情