[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-f-prompts.chat-plugins-claude-prompts.chat-skills-skill-lookup":3},{"error":4,"detail":5,"metadata":24,"markdownContent":26,"rawMarkdown":21},false,{"repo_full_name":6,"owner":7,"repo_name":8,"repo_forks":9,"skill_path":10,"repo_stars":11,"name":12,"category_id":13,"description":14,"file_tree":15,"skill_md_content":21,"skill_id":22,"skill_key":23},"f/prompts.chat","f","prompts.chat",20165,"plugins/claude/prompts.chat/skills/skill-lookup",153243,"skill-lookup",1,"Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.",[16],{"name":17,"path":18,"size":19,"type":20},"SKILL.md","plugins/claude/prompts.chat/skills/skill-lookup/SKILL.md",2250,"file","---\nname: skill-lookup\ndescription: >\n  Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools.\n  Use when the user asks to find skills, browse skill catalogs, install a skill for Claude,\n  or extend Claude's capabilities with reusable AI agent components.\nlicense: MIT\n---\n\n## Workflow\n\n1. Search for skills matching the user's request using `search_skills`\n2. Present results with title, description, author, and file list\n3. If the user picks a skill, retrieve it with `get_skill` to get all files\n4. Install by saving files to `.claude/skills/{slug}/` and verify the SKILL.md exists\n5. Confirm installation and explain what the skill does and when it activates\n\n## Example\n\n```\nsearch_skills({\"query\": \"code review\", \"limit\": 5, \"category\": \"coding\"})\nget_skill({\"id\": \"abc123\"})\n```\n\n## Available Tools\n\nUse these prompts.chat MCP tools:\n\n- `search_skills` - Search for skills by keyword\n- `get_skill` - Get a specific skill by ID with all its files\n\n## How to Search for Skills\n\nCall `search_skills` with:\n\n- `query`: The search keywords from the user's request\n- `limit`: Number of results (default 10, max 50)\n- `category`: Filter by category slug (e.g., \"coding\", \"automation\")\n- `tag`: Filter by tag slug\n\nPresent results showing:\n- Title and description\n- Author name\n- File list (SKILL.md, reference docs, scripts)\n- Category and tags\n- Link to the skill\n\n## How to Get a Skill\n\nCall `get_skill` with:\n\n- `id`: The skill ID\n\nReturns the skill metadata and all file contents:\n- SKILL.md (main instructions)\n- Reference documentation\n- Helper scripts\n- Configuration files\n\n## How to Install a Skill\n\nWhen the user asks to install a skill:\n\n1. Call `get_skill` to retrieve all files\n2. Create the directory `.claude/skills/{slug}/`\n3. Save each file to the appropriate location:\n   - `SKILL.md` → `.claude/skills/{slug}/SKILL.md`\n   - Other files → `.claude/skills/{slug}/{filename}`\n4. Read back `SKILL.md` to verify the frontmatter is intact\n\n## Guidelines\n\n- Always search before suggesting the user create their own skill\n- Present search results in a readable format with file counts\n- When installing, confirm the skill was saved successfully\n- Explain what the skill does and when it activates\n","d4740c12-c70b-5eb7-9a7b-d568f67ffa28","f-prompts.chat-plugins-claude-prompts.chat-skills-skill-lookup",{"name":12,"description":14,"license":25},"MIT","\u003Ch2>Workflow\u003C/h2>\n\u003Col>\n\u003Cli>Search for skills matching the user&#39;s request using \u003Ccode>search_skills\u003C/code>\u003C/li>\n\u003Cli>Present results with title, description, author, and file list\u003C/li>\n\u003Cli>If the user picks a skill, retrieve it with \u003Ccode>get_skill\u003C/code> to get all files\u003C/li>\n\u003Cli>Install by saving files to \u003Ccode>.claude/skills/{slug}/\u003C/code> and verify the SKILL.md exists\u003C/li>\n\u003Cli>Confirm installation and explain what the skill does and when it activates\u003C/li>\n\u003C/ol>\n\u003Ch2>Example\u003C/h2>\n\u003Cdiv class=\"md-code-block\">\u003Cpre>\u003Ccode class=\"hljs language-plaintext\">search_skills({&quot;query&quot;: &quot;code review&quot;, &quot;limit&quot;: 5, &quot;category&quot;: &quot;coding&quot;})\nget_skill({&quot;id&quot;: &quot;abc123&quot;})\u003C/code>\u003C/pre>\u003C/div>\u003Ch2>Available Tools\u003C/h2>\n\u003Cp>Use these prompts.chat MCP tools:\u003C/p>\n\u003Cul>\n\u003Cli>\u003Ccode>search_skills\u003C/code> - Search for skills by keyword\u003C/li>\n\u003Cli>\u003Ccode>get_skill\u003C/code> - Get a specific skill by ID with all its files\u003C/li>\n\u003C/ul>\n\u003Ch2>How to Search for Skills\u003C/h2>\n\u003Cp>Call \u003Ccode>search_skills\u003C/code> with:\u003C/p>\n\u003Cul>\n\u003Cli>\u003Ccode>query\u003C/code>: The search keywords from the user&#39;s request\u003C/li>\n\u003Cli>\u003Ccode>limit\u003C/code>: Number of results (default 10, max 50)\u003C/li>\n\u003Cli>\u003Ccode>category\u003C/code>: Filter by category slug (e.g., &quot;coding&quot;, &quot;automation&quot;)\u003C/li>\n\u003Cli>\u003Ccode>tag\u003C/code>: Filter by tag slug\u003C/li>\n\u003C/ul>\n\u003Cp>Present results showing:\u003C/p>\n\u003Cul>\n\u003Cli>Title and description\u003C/li>\n\u003Cli>Author name\u003C/li>\n\u003Cli>File list (SKILL.md, reference docs, scripts)\u003C/li>\n\u003Cli>Category and tags\u003C/li>\n\u003Cli>Link to the skill\u003C/li>\n\u003C/ul>\n\u003Ch2>How to Get a Skill\u003C/h2>\n\u003Cp>Call \u003Ccode>get_skill\u003C/code> with:\u003C/p>\n\u003Cul>\n\u003Cli>\u003Ccode>id\u003C/code>: The skill ID\u003C/li>\n\u003C/ul>\n\u003Cp>Returns the skill metadata and all file contents:\u003C/p>\n\u003Cul>\n\u003Cli>SKILL.md (main instructions)\u003C/li>\n\u003Cli>Reference documentation\u003C/li>\n\u003Cli>Helper scripts\u003C/li>\n\u003Cli>Configuration files\u003C/li>\n\u003C/ul>\n\u003Ch2>How to Install a Skill\u003C/h2>\n\u003Cp>When the user asks to install a skill:\u003C/p>\n\u003Col>\n\u003Cli>Call \u003Ccode>get_skill\u003C/code> to retrieve all files\u003C/li>\n\u003Cli>Create the directory \u003Ccode>.claude/skills/{slug}/\u003C/code>\u003C/li>\n\u003Cli>Save each file to the appropriate location:\u003Cul>\n\u003Cli>\u003Ccode>SKILL.md\u003C/code> → \u003Ccode>.claude/skills/{slug}/SKILL.md\u003C/code>\u003C/li>\n\u003Cli>Other files → \u003Ccode>.claude/skills/{slug}/{filename}\u003C/code>\u003C/li>\n\u003C/ul>\n\u003C/li>\n\u003Cli>Read back \u003Ccode>SKILL.md\u003C/code> to verify the frontmatter is intact\u003C/li>\n\u003C/ol>\n\u003Ch2>Guidelines\u003C/h2>\n\u003Cul>\n\u003Cli>Always search before suggesting the user create their own skill\u003C/li>\n\u003Cli>Present search results in a readable format with file counts\u003C/li>\n\u003Cli>When installing, confirm the skill was saved successfully\u003C/li>\n\u003Cli>Explain what the skill does and when it activates\u003C/li>\n\u003C/ul>\n"]