skill-lookup
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.
DeepseekModel
官方收录技能
质量 优秀 · 90
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=f-prompts-chat-plugins-claude-prompts-chat-skills-skill-lookup-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name skill-lookup description 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. license MIT Workflow Search for skills matching the user's request using search_skills Present results with title, description, author, and file list If the user picks a skill, retrieve it with get_skill to get all files Install by saving files to .claude/skills/{slug}/ and verify the SKILL.md exists Confirm installation and explain what the skill does and when it activates Example search_skills({"query": "code review", "limit": 5, "category": "coding"}) get_skill({"id": "abc123"}) 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 slug Present 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 ID Returns 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: Call get_skill to retrieve all files Create the directory .claude/skills/{slug}/ Save each file to the appropriate location: SKILL.md → .claude/skills/{slug}/SKILL.md Other files → .claude/skills/{slug}/{filename} Read back SKILL.md to verify the frontmatter is intact 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
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |