code-context-finder

Solid

Automatically find relevant context from knowledge graph and code relationships while coding. Detects when context would be helpful (new files, unfamiliar code, architectural decisions) and surfaces related entities, prior decisions, and code dependencies.

Data & Documents 335 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 85/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
0
Description 5%
100

Skill Content

# Code Context Finder ## Overview Find and surface relevant context while coding by combining knowledge graph search with code relationship analysis. Uses smart detection to identify when additional context would be helpful, then retrieves: - **Knowledge graph entities**: Prior decisions, project context, related concepts - **Code relationships**: Dependencies, imports, function calls, class hierarchies ## When to Use (Smart Detection) This skill activates automatically when detecting: | Trigger | What to Search | |---------|----------------| | Opening unfamiliar file | Knowledge graph for file/module context, code for imports/dependencies | | Working on new feature | Prior decisions, related concepts, similar implementations | | Debugging errors | Related issues, error patterns, affected components | | Refactoring code | Dependent files, callers/callees, test coverage | | Making architectural decisions | Past ADRs, related design docs, established patterns | | Touching config/infra files | Related deployments, environment notes, past issues | For detection triggers reference, load `references/detection_triggers.md`. ## Core Workflow ### 1. Detect Context Need Identify triggers that suggest context would help: ``` Signals to watch: - New/unfamiliar file opened - Error messages mentioning unknown components - Questions about "why" or "how" something works - Changes to shared/core modules - Architectural or design discussions ``` ### 2. Search Knowledge Graph Use M...

Details

Author
aiskillstore
Repository
aiskillstore/marketplace
Created
5 months ago
Last Updated
today
Language
Python
License
None

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

code-search-navigation

Orchestrate code intelligence — semantic search, symbol lookup, call graphs, dependency graphs, code ownership, and context packs. Use when finding code definitions, understanding call chains, mapping dependencies, identifying code owners, or building context for changes.

0 Updated yesterday
zavora-ai
AI & Automation Solid

ln-020-codegraph

Builds and queries code knowledge graph for dependency analysis, references, implementations, and architecture overview. Use when starting work on unfamiliar codebase or before refactoring.

480 Updated 3 days ago
levnikolaevich
AI & Automation Listed

gather_context

Use this skill before working on any task that touches existing code — to pull the relevant code chunks, project rules, and known facts before writing or reasoning. Triggers on: any implementation or debugging task where you haven't yet read the relevant files, "make a change to", "fix", "add to", "update", or any task where missing context could lead you to contradict existing patterns. Do NOT use for pure explanation questions or tasks where you already have the full relevant code in context.

0 Updated yesterday
feralbureau
AI & Automation Listed

codebase-search

Search and navigate large codebases efficiently. Use when finding specific code patterns, tracing function calls, understanding code structure, or locating bugs. Handles semantic search, grep patterns, AST analysis.

335 Updated today
aiskillstore
AI & Automation Listed

investigating-codebases

Automatically activated when user asks how something works, wants to understand unfamiliar code, needs to explore a new codebase, or asks questions like "where is X implemented?", "how does Y work?", or "explain the Z component"

335 Updated today
aiskillstore