
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
AI-powered CLI tool for automatic code documentation. Primal Code. Modern Docs.
🦣 Primal Code. Modern Docs.
Intelligenter Dokumentations-Assistent, der kontinuierlich deinen Code überwacht und Claude automatisch auffordert, fehlende Kommentare zu schreiben. Generiert technische Erklärungen für Entwickler UND einfache Erklärungen für Laien.
# Global installation (recommended)
npm install -g neandoc
# Or use directly with npx (no installation needed)
npx neandoc@latest ./src
# Analysiere Code und generiere Claude-Prompt
neandoc ./src
# Mit README-Generierung
neandoc ./src --readme
# Preview-Modus (keine Änderungen)
neandoc ./src --dry-run
# Überwachung alle 5 Minuten
neandoc ./src --watch --interval 5
# Daemon-Mode (Hintergrund)
neandoc ./src --daemon --interval 10
# Mit README-Updates
neandoc ./src --watch --readme
# Claude-Response anwenden (Coming Soon)
neandoc ./src --apply claude-response.md
Neandoc is built with enterprise-grade security and performance optimizations:
bin/ # Executable scripts (CLI entry point)
config/ # Configuration files (prompts, settings)
lib/ # Core library modules
├── parser.js # Multi-language code parsing
├── commentor.js # Safe comment generation & insertion
├── mcp-client.js # AI integration & watch mode
└── readme.js # Documentation generation
Neandoc → "Hey Claude, hier fehlen 3 Kommentare..."
Claude → Schreibt perfekte Dual-Level Dokumentation
User → Kopiert Kommentare in Code
Neandoc → "Danke! Überwache weiter..."
neandoc [directory] [options]
Options:
--watch - Watch mode - kontinuierliche Überwachung--daemon - Daemon mode - läuft im Hintergrund--interval <minutes> - Check-Intervall in Minuten (default: 5)--apply <file> - Claude-Response aus Datei anwenden--readme - README.md erstellen/aktualisieren--dry-run - Preview ohne Änderungen--only-functions - Nur Funktionen kommentieren--no-readme - Keine README-Generierung# 1. Erste Analyse
neandoc ./src
# Output:
❌ Found 8 documentation gaps across 3 files!
🤖 NEANDOC → CLAUDE
==================================================
🦣 NEANDOC COMPREHENSIVE DOCUMENTATION REQUEST
Diese Funktionen brauchen Kommentare:
### validateInput (function) - Line 42
```javascript
function validateInput(data) {
return data.length > 0 && data.match(/^[a-zA-Z]+$/);
}
📋 Copy the prompt above and send it to Claude! 💡 Then run: neandoc --apply
### **Watch-Mode in Action:**
```bash
# 2. Kontinuierliche Überwachung starten
neandoc ./src --watch --interval 3
# Output:
🦣 Neandoc watching ./src for documentation gaps...
📅 Checking every 3 minutes
[14:32:15] 🔍 Checking documentation...
✅ All code properly documented!
[14:35:15] 🔍 Checking documentation...
❌ Found 2 documentation gaps!
🤖 Sending new prompt to Claude...
# → Läuft permanent und nervt Claude bei neuen Lücken! 😄
Customize prompts and behavior in config/prompts.json:
{
"basePrompt": "Du bist Neandoc...",
"commentStyle": {
"technical": { "focus": ["Implementation details", "Parameters"] },
"simple": { "focus": ["Everyday comparisons", "Basic functionality"] }
}
}
Neandoc detects when running in Claude Code environment and uses MCP for optimal AI integration.
Supports direct integration with:
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)"Make code so clear that even a caveman could understand it."
Neandoc bridges the gap between technical complexity and human understanding. Every function deserves an explanation that both your senior developer and your project manager can understand.
MIT
🔒 Security Improvements:
⚡ Performance & Stability:
🛠️ Code Quality:
🦣 Built with prehistoric wisdom and modern AI
FAQs
AI-powered CLI tool for automatic code documentation. Primal Code. Modern Docs.
We found that neandoc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.