skill-lookup
Install this skill
npx skills add f/awesome-chatgpt-promptsWorks across Claude Code, Cursor, Codex, Copilot & Antigravity
The skill-lookup tool functions as a direct interface for the prompts.chat MCP server, enabling developers to discover, audit, and integrate pre-built agent components directly into their local environment. Instead of manual copying or navigating browser-based repositories, this skill allows for programmatic querying of the awesome-chatgpt-prompts ecosystem. By triggering this, you retrieve skill metadata, instructional documentation, and supporting logic files required for extension development. It handles the organizational heavy lifting by mapping remote files into the correct .claude/skills/ directory structure. This ensures that agent behaviors remain modular and consistent, allowing for quick deployment of tested scripts and configuration files without leaving your development context. It is the primary mechanism for expanding the functional range of your local AI agent setup through verified, community-sourced skill sets.
When to Use This Skill
- β’Quickly adding a new code review or documentation generation capability to a project
- β’Browsing available automation helpers without opening a web browser
- β’Standardizing skill installations across multiple development environments
- β’Fetching specific helper scripts needed for a new workflow
How to Invoke This Skill
Example prompts that trigger this skill in Claude Code, Cursor, or Antigravity:
- βFind me a skill for code reviews
- βShow me what skills are available in the testing category
- βHow do I install the documentation skill?
- βFetch the details for skill ID xyz
- βSearch for agent skills related to web scraping
Pro Tips
- π‘Combine `search_skills` with specific `category` and `tag` filters to narrow down results efficiently, especially when dealing with a large skill library.
- π‘Always review the skill's `SKILL.md` and reference documentation using `get_skill` before installation to understand its exact functionality and dependencies.
- π‘For recurring project setups, consider scripting the installation of a set of essential skills to ensure a consistent and productive development environment.
What this skill does
- β’Search the remote skill registry using keywords, categories, or tags
- β’Retrieve full metadata and associated source files for specific skills
- β’Automate the file system setup for new skill installations
- β’Validate skill structure before integration
- β’Cross-reference community-maintained prompts and scripts
When not to use it
- βWhen you need to write a brand new, custom skill from scratch without external dependencies
- βWhen you are working without an active internet connection
- βWhen the desired functionality is native to your current agent framework
Example workflow
- Search for relevant skills using a descriptive keyword query
- Review the search results including title, description, and file count
- Select the appropriate skill ID from the returned list
- Call get_skill to download the metadata and source files
- Create the local .claude/skills/{slug}/ folder
- Save the retrieved files into their respective locations
Prerequisites
- βMCP server connectivity configured for prompts.chat
- βRead/write access to the .claude directory in the project root
Pitfalls & limitations
- !Failure to verify file paths can lead to orphaned scripts
- !Relying on outdated skill IDs if the repository has been refactored
- !Network timeouts when fetching large skill packages with many helper files
FAQ
How it compares
Unlike manual searching in a browser followed by copy-pasting code, this skill automates the discovery and file-path mapping, reducing configuration errors.
Source & trust
π Full skill instructions β original source: f/awesome-chatgpt-prompts
## When to Use This Skill
Activate this skill when the user:
- Asks for Agent Skills ("Find me a code review skill")
- Wants to search for skills ("What skills are available for testing?")
- Needs to retrieve a specific skill ("Get skill XYZ")
- Wants to install a skill ("Install the documentation skill")
- Mentions extending Claude's capabilities with skills
## Available Tools
Use these prompts.chat MCP tools:
-
search_skills - Search for skills by keyword-
get_skill - Get a specific skill by ID with all its files## How to Search for Skills
Call
search_skills with:-
query: The search keywords from the user's request-
limit: Number of results (default 10, max 50)-
category: Filter by category slug (e.g., "coding", "automation")-
tag: Filter by tag slugPresent results showing:
- Title and description
- Author name
- File list (SKILL.md, reference docs, scripts)
- Category and tags
- Link to the skill
## How to Get a Skill
Call
get_skill with:-
id: The skill IDReturns the skill metadata and all file contents:
- SKILL.md (main instructions)
- Reference documentation
- Helper scripts
- Configuration files
## How to Install a Skill
When the user asks to install a skill:
1. Call
get_skill to retrieve all files2. Create the directory
.claude/skills/{slug}/3. Save each file to the appropriate location:
-
SKILL.md β .claude/skills/{slug}/SKILL.md- Other files β
.claude/skills/{slug}/{filename}## Skill Structure
Skills contain:
- **SKILL.md** (required) - Main instructions with frontmatter
- **Reference docs** - Additional documentation files
- **Scripts** - Helper scripts (Python, shell, etc.)
- **Config files** - JSON, YAML configurations
## Guidelines
- Always search before suggesting the user create their own skill
- Present search results in a readable format with file counts
- When installing, confirm the skill was saved successfully
- Explain what the skill does and when it activates
How to Use This Skill Unit
Option A: Project-Specific (Recommended)
- Click "Download" above
- In your project, create the directory:
.agent/skills/skill-lookup/ - Save the file as
SKILL.md - The agent will automatically discover the skill based on its description.
Option B: Global Installation (All Agents)
Save the file to these locations to make it available across all projects:
- Claude Code:
~/.claude/skills/f/awesome-chatgpt-prompts/skill-lookup/SKILL.md - Cursor:
~/.cursor/skills/f/awesome-chatgpt-prompts/skill-lookup/SKILL.md - Antigravity:
~/.gemini/antigravity/skills/f/awesome-chatgpt-prompts/skill-lookup/SKILL.md
π Install with CLI:npx skills add f/awesome-chatgpt-prompts
