Lyra Intel — Repository Intelligence Guide

SkillMonitoring & ops

Guide to Lyra Intel — an intelligence platform for analyzing repositories of any size, from small projects to enterprise monorepos with millions of lines of code. 70+ analysis components including security scanning, AI integration, dependency mapping, and code quality metrics.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Lyra Intel — Repository Intelligence Guide skill

What this skill tells your AI

The instructions your AI receives, as published by nirholas/three.ws in data/skills/development/repo-intelligence-guide/SKILL.md and read by ahel’s review.

Lyra Intel is a deep repository analysis platform with 70+ analysis components. It handles everything from small projects to enterprise monorepos with millions of lines of code.

Analysis Categories

CategoryComponentsWhat It Checks
Security12Vulnerabilities, secrets, dependencies
Code Quality10Complexity, duplication, patterns
AI Readiness8AGENTS.md, llms.txt, MCP support
Architecture8Structure, coupling, layering
Dependencies7Outdated, vulnerable, license issues
Documentation6README, API docs, inline comments
Testing6Coverage, quality, patterns
Performance5Build time, bundle size, hot paths
CI/CD4Pipeline quality, deployment
Community4Contributing, COC, issue templates

Quick Start

# Install
pip install lyra-intel

# Analyze a repo
lyra-intel analyze https://github.com/nirholas/sperax

# Analyze local directory
lyra-intel analyze ./my-project

# Analyze with specific focus
lyra-intel analyze ./my-project --focus security,ai-readiness

Security Scanning

What It Detects

IssueSeverityExample
Hardcoded secretsCriticalAPI keys, private keys in code
SQL injectionHighUnsanitized database queries
XSS vulnerabilitiesHighUnsafe HTML rendering
Vulnerable depsVariableKnown CVEs in node_modules
Insecure cryptoMediumWeak hashing algorithms
Path traversalHighUnsanitized file paths
SSRFHighUnvalidated URLs in requests

Example Output

Security Score: 87/100

Critical:
  ❌ Hardcoded API key in src/config.ts:15
  ❌ Private key pattern in .env.example

High:
  ⚠️ 3 vulnerable dependencies (npm audit)
  ⚠️ SQL injection in server/queries.ts:42

Medium:
  ℹ️ Missing Content-Security-Policy
  ℹ️ CORS allows all origins

AI Readiness Analysis

Lyra Intel checks how well a repo supports AI agent integration:

CheckDescription
AGENTS.mdHas AI agent instructions?
CLAUDE.mdHas Claude-specific guidelines?
llms.txtHas machine-readable documentation?
MCP SupportHas MCP server configuration?
API SurfaceOpenAPI/GraphQL specs available?
Type SafetyTypeScript/typed language?
Test CoverageEnough tests for AI to validate changes?
CI PipelineAutomated checks for AI-generated PRs?

Architecture Analysis

Project Structure Score: 91/100

├── src/
│   ├── app/         ✅ Clear separation (Next.js convention)
│   ├── store/       ✅ Centralized state management
│   ├── services/    ✅ Service layer pattern
│   ├── server/      ✅ Server-side logic separated
│   └── components/  ✅ UI components isolated
├── packages/        ✅ Monorepo packages
└── tests/           ✅ Test directory

Issues:
  ⚠️ 2 circular dependencies detected
  ⚠️ src/utils/ has 45 files (consider splitting)

MCP Server

{
  "mcpServers": {
    "lyra-intel": {
      "command": "lyra-intel",
      "args": ["serve"]
    }
  }
}

Tools:

  • analyzeRepo — Full repo analysis
  • securityScan — Security-focused scan
  • getScore — Quick quality score
  • getDependencyReport — Dependency health
  • getArchitectureMap — Architecture visualization

Report Formats

  • Terminal — Colorful CLI output with score badges
  • JSON — Machine-readable for CI/CD pipelines
  • Markdown — GitHub-ready report
  • HTML — Visual dashboard with charts

Links

Signals

GitHub stars
114
Forks
29
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
repo-intelligence-guide
Source
github.com/nirholas/three.ws