ck-search

Search codebases semantically and lexically using local files and embeddings.

26|2|Updated Apr 23, 2026
One-click install
npx skills add https://github.com/aryaniyaps/ultimate-pi --skill ck-search
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ck-search
Source: https://github.com/aryaniyaps/ultimate-pi/tree/main/.agents/skills/ck-search
Command: npx skills add https://github.com/aryaniyaps/ultimate-pi --skill ck-search

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill enables developers to perform semantic and lexical code searches efficiently, replacing time-consuming manual scans through codebases.

Core Features & Use Cases

  • Semantic Search: Find code by meaning, such as "error handling" or "authentication flow," across large repositories.
  • Lexical Search: Quickly locate exact function names or strings using syntax similar to grep.
  • Use Case: Quickly identify all code related to database connection pooling within a large project for performance optimization.

Quick Start

Use the ck-search skill to find all instances of the function 'processPayment' in the src directory.

Frequently Asked Questions about ck-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search a large codebase for specific functions without external APIs?

You can search a large codebase locally by generating file embeddings and using lexical and semantic search to index and rank results, requiring no external APIs.

What is semantic code search and how does it help explore a repository?

Semantic code search finds code by meaning, such as querying 'authentication flow', allowing you to discover relevant modules across large repositories without knowing exact function names.

Can I find exact string matches in my codebase using lexical search?

Yes, you can perform lexical search using syntax similar to grep to quickly locate exact function names or strings across your local repository files.

Does code search work for local indexing and ranking of search results?

Yes, code search supports local indexing and ranking of search results to optimize developer productivity and code comprehension within your development workflow.

What is the best way to identify all code related to a specific feature like database connection pooling?

The best way to identify related code is using semantic search to find all instances of concepts like database connection pooling within a large project for performance optimization.