Agent skill

QE Code Intelligence

Knowledge graph-based code understanding with semantic search and 80% token reduction through intelligent context retrieval.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill qe-code-intelligence-aquariuscook-agent-modus-map --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/qe-code-intelligence-aquariuscook-agent-modus-map/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# QE Code Intelligence ## Purpose Guide the use of v3's code intelligence capabilities including knowledge graph construction, semantic code search, dependency mapping, and context-aware code understanding with significant token reduction. ## Activation - When understanding unfamiliar code - When searching for code semantically - When analyzing dependencies - When building code knowledge graphs - When reducing context for AI operations ## Quick Start ```bash # Index codebase into knowledge graph aqe kg index --source src/ --incremental # Semantic code search aqe kg search "authentication middleware" --limit 10 # Query dependencies aqe kg deps --file src/services/UserService.ts --depth 3 # Get intelligent context aqe kg context --query "how does payment processing work" ``` ## Agent Workflow ```typescript // Build knowledge graph Task("Index codebase", ` Build knowledge graph for the project: - Parse all TypeScript files in src/ - Extract entities (classes, functions, types) - Map relationships (imports, calls, inheritance) - Generate embeddings for semantic search Store in AgentDB vector database. `, "qe-knowledge-graph") // Semantic search Task("Find relevant code", ` Search for c

What's inside
Steps it walks through
  1. Purpose
  2. Activation
  3. Quick Start
  4. Agent Workflow
  5. Knowledge Graph Operations
  6. 1. Codebase Indexing
  7. 2. Semantic Search
  8. 3. Dependency Analysis
  9. Token Reduction Strategy
  10. Knowledge Graph Schema
  11. Search Results
  12. CLI Examples
  13. Coordination
Ships with 1 file
  • metadata.json
Commands it runs
Index codebase into knowledge graph
aqe kg index --source src/ --incremental
Semantic code search
aqe kg search "authentication middleware" --limit 10
Query dependencies
aqe kg deps --file src/services/UserService.ts --depth 3
Get intelligent context
aqe kg context --query "how does payment processing work"
Full reindex
aqe kg index --source src/ --force
More from claude-skill-registry
All skills →
About this skill
What does the QE Code Intelligence skill do?

Knowledge graph-based code understanding with semantic search and 80% token reduction through intelligent context retrieval.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill qe-code-intelligence-aquariuscook-agent-modus-map --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going