fix: correct table of contents anchor links in README.md#2
Merged
alirezarezvani merged 1 commit intoOct 22, 2025
Merged
Conversation
Updated all TOC links to match GitHub's anchor generation for headers with emojis. Headers like "## 🎯 Overview" generate anchors like "#-overview" (with leading dash). Changes: - Updated 12 TOC links from #section to #-section format - Links now properly navigate to their respective sections 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Pull Request ReviewSummaryThis PR fixes the Table of Contents anchor links in README.md to match GitHub's anchor generation for emoji-containing headers. All 12 TOC links have been updated from ✅ Code QualityEXCELLENT - The changes are minimal, focused, and correct:
✅ CorrectnessVERIFIED - The anchor format is correct:
Tested links:
✅ Best PracticesFOLLOWS PROJECT STANDARDS:
✅ Potential IssuesNONE IDENTIFIED - This is a straightforward documentation fix with:
✅ Additional ObservationsPOSITIVE:
SUGGESTIONS: Final VerdictAPPROVED ✅ This PR is ready to merge. It's a clean, focused fix that improves documentation navigation with zero risk. Excellent work! Review completed by Claude Code Senior Code Reviewer skill |
4 tasks
This was referenced Feb 10, 2026
This was referenced Mar 4, 2026
Merged
alirezarezvani
added a commit
that referenced
this pull request
Apr 12, 2026
…rcer
Implements Karpathy's 4 coding principles (Think Before Coding, Simplicity
First, Surgical Changes, Goal-Driven Execution) as an active enforcement
plugin, not just passive guidelines. Derived from Karpathy's X post on LLM
coding pitfalls but goes far beyond the source material with automated
detection tools, a review agent, and CI integration patterns.
Differentiator vs forrestchang/andrej-karpathy-skills (prompt-only, single
SKILL.md): this version ships real tooling that DETECTS violations instead
of just documenting principles.
Plugin contents (engineering/karpathy-coder/):
- SKILL.md with `context: fork` for skill chaining
- 4 Python tools (stdlib only):
- complexity_checker.py — cyclomatic complexity, class density, nesting
depth, function length, premature abstractions (Principle #2)
- diff_surgeon.py — diff noise ratio: comment-only changes, whitespace,
style drift, drive-by refactors, quote-style swaps (Principle #3)
- assumption_linter.py — detects "just", "obviously", "should work",
vague actions, unscoped users, missing format specs (Principle #1)
- goal_verifier.py — scores plan steps 0-3 for verification quality,
flags vague criteria, checks for final verification (Principle #4)
- 1 sub-agent: karpathy-reviewer (runs all 4 principles against a diff)
- 1 slash command: /karpathy-check (dispatches the reviewer)
- 1 pre-commit hook: karpathy-gate.sh (non-blocking, warns on violations)
- 3 reference docs: karpathy-principles.md (full context + when to relax),
anti-patterns.md (10+ before/after examples), enforcement-patterns.md
(Husky, pre-commit framework, GitHub Actions CI integration)
- .claude-plugin/plugin.json manifest (v2.3.0)
- Cross-tool compatible: works with any AGENTS.md-based CLI
All 4 scripts verified: --help passes, smoke tests run correctly.
complexity_checker catches its own nesting depth. assumption_linter
correctly flags "just", "obviously", "should work". goal_verifier
correctly scores plans with/without verification steps.
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
8 tasks
This was referenced Apr 13, 2026
9 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@claude review and execute the PR.
Updated all TOC links to match GitHub's anchor generation for headers with emojis. Headers like "## 🎯 Overview" generate anchors like "#-overview" (with leading dash).
Changes:
🤖 Generated with Claude Code