code_skill

Search repository content with regular expressions and glob patterns.

5|2|Updated Feb 24, 2026
One-click install
npx skills add https://github.com/William2333ZZ/ParameciumU --skill code-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code_skill
Source: https://github.com/William2333ZZ/ParameciumU/tree/main/agents/code_engineer/skills/code_skill
Command: npx skills add https://github.com/William2333ZZ/ParameciumU --skill code-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill helps developers quickly find information within a codebase, making it easier to understand, navigate, and modify code.

Core Features & Use Cases

  • Content Search (grep): Find specific text patterns (functions, errors, constants) within files, returning paths and line numbers.
  • Filename Matching (glob): Locate files based on naming patterns (e.g., **/*.tsx).
  • Directory Listing (list): Explore directory structures, with options to ignore common build or dependency folders.
  • Use Case: You need to find all occurrences of a specific error message logged in your application. Use grep with the error message pattern to quickly pinpoint the relevant lines of code across the entire repository.

Quick Start

Search for the function named 'getUserData' within all TypeScript files in the 'src' directory.

Frequently Asked Questions about code_skill

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

FAQPage Schema
How do I search for a specific function name across my codebase?

To search for a specific function name across your codebase, use the content search feature with regular expressions to pinpoint exact text patterns, returning file paths and line numbers. This locates functions quickly.

What is the best way to find files by naming pattern in a repository?

The best way to find files by naming pattern in a repository is using filename pattern matching with glob expressions. This navigates directory structures to locate specific file types like TypeScript files.

Can I list directory structures while ignoring dependency folders?

Yes, you can list directory structures while ignoring dependency folders. The directory listing feature includes options to exclude common build or dependency folders, streamlining repository exploration.

Does this code search tool support regular expressions for precise targeting?

Yes, this code search tool supports regular expressions for precise targeting. It utilizes regex and glob patterns to find specific text patterns, functions, and constants within your files.

How do I locate all occurrences of a logged error message in my application?

To locate all occurrences of a logged error message in your application, use content search with the exact error string pattern. This quickly identifies relevant lines of code across the entire repository.

When should I use glob matching instead of content search for code discovery?

Use glob matching instead of content search for code discovery when you need to locate files based on naming patterns rather than internal text. Glob finds files by name, while content search finds text patterns.