no-no-debug

by summerliuuuVerified

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
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

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

Getting Started

Guides for using skills like no-no-debug.

Security Report

Verified

Last scanned: —

{
  "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

Frequently Asked Questions

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.

Comments (0)

No comments yet. Be the first to share your thoughts!

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 Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

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 Agentsai-agentsanthropicclaude-code
View details

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 Agentsclaude-codeai-tools
View details

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 Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this 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 Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

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 Serversapisai-tools
View details

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 Agentsai-agentsanthropicclaude-code
View details

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 Agentsclaude-codeai-tools
View details