eliniscan
Description
**AI-powered full codebase scanner for [Claude Code](https://code.claude.com).** Opens a separate Claude session for every file — reads every line, misses nothing.
Installation
claude install-skill https://github.com/AlpYenigun/eliniscan README
eliniscan
**AI-powered full codebase scanner for [Claude Code](https://code.claude.com).** Opens a separate Claude session for every file — reads every line, misses nothing.
I had 942 files and 189,000 lines of code. No matter what I tried — agents, GSD workflows, manual prompting — Claude always skipped lines, summarized instead of reading, and produced shallow reports. After 10+ failed sessions, I built eliniscan. It opened 942 separate Claude sessions, one per file, each with a fresh 1M context window. 11 hours later: **3,894 real issues found**. Every line was actually read.
The Problem
AI code review tools scan diffs or use regex patterns. Claude Code reads your code in conversation, but:
- undefined
The Solution
eliniscan takes a different approach:
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ File 1 │ │ File 2 │ │ File N │
│ Fresh 1M │ │ Fresh 1M │ │ Fresh 1M │
│ context │ │ context │ │ context │
│ 100% focus │ │ 100% focus │ │ 100% focus │
└──────┬──────┘ └──────┬──────┘ └──────┬──────┘
│ │ │
└───────────┬───────┘───────────────────┘
│
┌────────▼────────┐
│ FINDINGS.md │
│ #001, #002... │
│ Every issue │
│ with line no. │
└─────────────────┘
Each file gets its own Claude session. No shared context, no compression, no skipping. The only way to guarantee every line is read.
Install
npm install -g eliniscan
Requires [Claude Code](https://code.claude.com) CLI (`claude` command).
Usage
Inside Claude Code, use these commands:
Scan
/eliniscan:scan
Asks you:
...
Related Skills
Defense in Depth
Implement multi-layered testing and security best practices.
Security community SecLists Official Repository
[OWASP Testing Guide](https://owasp.org/www-project-web-security-testing-guide/)
Security community Threat Hunting with Sigma Rules
Use Sigma detection rules to hunt for threats and analyze security events
Security community Maintenance Walkthrough - 2026-03-29
- Re-triaged the full 2026-03-15 security finding set against current `main` and wrote a fresh current-head report in `docs/maintainers/security-findings-triage-2026-03-29-refresh.md`. - Added a match
Security community Google Workspace Model Armor
Filter user-generated content for safety
Security community Google Workspace Alert Center
Manage security alerts
Security community Related Agents
Accessibility Audit
| You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive tec... | - | [wshobson/agents](https://github.com/wshobson/agents) |
wcag-audit-patterns
| Comprehensive guide to auditing web content against WCAG 2.2 guidelines with actionable remediation... | - | [wshobson/agents](https://github.com/wshobson/agents) |
Deps Audit
| You are a dependency security expert specializing in vulnerability scanning, license compliance, and... | - | [wshobson/agents](https://github.com/wshobson/agents) |