Discovery Kit

Locate files and code patterns in the beep-effect codebase using glob and grep.

68|13|Updated Aug 9, 2025
One-click install
npx skills add https://github.com/kriegcloud/beep-effect --skill discovery-kit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Discovery Kit
Source: https://github.com/kriegcloud/beep-effect/tree/main/.repos/beep-effect/.claude/skills/discovery-kit
Command: npx skills add https://github.com/kriegcloud/beep-effect --skill discovery-kit

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides developers with efficient patterns and tools to quickly find files, code snippets, and understand common verification sequences within the beep-effect codebase, significantly speeding up development and debugging.

Core Features & Use Cases

  • File Discovery: Quickly locate packages, configuration files, documentation, and test files using glob patterns.
  • Content Search: Find specific code patterns, import statements, and entity ID definitions using grep.
  • Verification Sequences: Understand and apply common patterns for verifying package existence, exports, type definitions, service availability, and test coverage.
  • Anti-Pattern Guidance: Learn what to avoid, such as using Bash for file discovery or cat for reading files, and instead opt for optimized tools.
  • Use Case: A developer needs to find all tsconfig.json files across the entire repository to ensure consistent build configurations. They can use the glob patterns provided by this skill to locate them instantly.

Quick Start

Use the discovery kit skill to find all package.json files within the packages/iam directory.

Frequently Asked Questions about Discovery Kit

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

FAQPage Schema
What is the best way to search for specific code patterns in a large codebase?

Codebase analysis is best handled using optimized grep patterns to locate specific code structures, import statements, and entity ID definitions quickly. This approach enforces best practices by avoiding inefficient methods like using Bash for file discovery.

How do I find all configuration files across a repository efficiently?

File discovery across a repository is achieved instantly using optimized glob patterns. You can quickly locate packages, configuration files like tsconfig.json, documentation, and test files without resorting to manual Bash commands.

Why should I avoid using Bash for file discovery and code navigation?

Using Bash for file discovery or cat for reading files is considered an anti-pattern. Optimized glob and grep patterns provide specialized code navigation, ensuring faster codebase analysis and adherence to development best practices.

Can I verify package exports and type definitions using code search?

Yes, code search supports common verification sequences for checking package existence, exports, type definitions, service availability, and test coverage. These patterns help validate code structures efficiently during development.

How do I locate all package.json files within a specific directory?

To locate package.json files within a specific directory like packages/iam, apply targeted glob patterns. This file discovery method instantly maps out project structures and dependencies without manual searching.