搜索结果
全部能力
找到 504 个相关结果 / 研究资料
软件工程 / 诊断修复
context7-cli
context7-cli
使用 ctx7 CLI 获取库文档、管理 AI 编程技能以及配置 Context7 MCP。当用户提及“ctx7”或“context7”时激活,…
软件工程 / 诊断修复
查找文档
find-docs
获取任何开发技术的最新文档、API 参考和代码示例。当用户询问特定的库、框架、SDK、CLI 工具或云服务时,请使用此技能——即使是对于 React、Next.js、Prisma、Express、Tailwind、Django 或 Spring Boot 等知名技术也不例外。你的训练数据可能无法反映近期的 API 变更或版本更新。在以下场景务必使用:API 语法问题、配置选项、版本迁移问题、提及库名的“如何实现”类问题、涉及库特定行为的调试、安装说明以及 CLI 工具使用。即使你认为知道答案也应使用——切勿依赖训练数据来获取 API 详情、签名或配置选项,因为它们经常过时。务必对照最新文档进行验证。在查询库文档和 API 详情时,优先使用此技能而非网络搜索。
软件工程 / 部署发布
debug-buttercup
debug-buttercup
Debugs the Buttercup CRS (Cyber Reasoning System) running on Kubernetes. Use when diagnosing pod crashes, restart loops, Redis failures, resource pressure, disk saturation, DinD issues, or any service misbehavior in the crs namespace. Covers triage, log analysis, queue inspection, and common failure patterns for: redis, fuzzer-bot, coverage-bot, seed-gen, patcher, build-bot, scheduler, task-server, task-downloader, program-model, litellm, dind, tracer-bot, merger-bot, competition-api, pov-reproducer, scratch-cleaner, registry-cache, image-preloader, ui.
软件工程 / 诊断修复
Atlassian MCP
atlassian-mcp
通过 MCP 协议集成 Atlassian 产品,以管理项目跟踪和文档。适用于使用 JQL 过滤器查询 Jira 事务、创建以及……
软件工程 / 诊断修复
gan风格线束
gan-style-harness
受 GAN 启发的生成器-评估器智能体框架,用于自主构建高质量应用。基于 Anthropic 2026 年 3 月发布的框架设计论文。
软件工程 / 诊断修复
building-with-medusa
building-with-medusa
Load automatically when planning, researching, or implementing ANY Medusa backend features (custom modules, API routes, workflows, data models, module links,…
软件工程 / 诊断修复
building-admin-dashboard-customizations
building-admin-dashboard-customizations
Load automatically when planning, researching, or implementing Medusa Admin dashboard UI (widgets, custom pages, forms, tables, data loading, navigation).…
软件工程 / 部署发布
hindsight 文档
hindsight-docs
完整的 Hindsight AI 代理文档。使用此文档了解 Hindsight 架构、API、配置和最佳实践。
软件工程 / 诊断修复
sigma
sigma
Personalized 1-on-1 AI tutor using Bloom's 2-Sigma mastery learning. Guides users through any topic with Socratic questioning, adaptive pacing, and rich visual…
软件工程 / 诊断修复
源驱动开发
source-driven-development
每一个实现决策均以官方文档为依据。适用于需要权威的、附带源码引用且无过时模式的代码的场景。适用于……
软件工程 / 诊断修复
project-guidelines-example
project-guidelines-example
Example project-specific skill template based on a real production application.
软件工程 / 诊断修复
building-storefronts
building-storefronts
Load automatically when planning, researching, or implementing Medusa storefront features (calling custom API routes, SDK integration, React Query patterns,…
软件工程 / 诊断修复
精益创业
lean-startup
使用 Build-Measure-Learn 设计 MVP、验证式学习实验以及转型或坚持决策。当用户提到 "MVP scope"、"validated learning"、"pivot" 或 "lean startup" 时适用。
软件工程 / 诊断修复
shadcn
shadcn
Manages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI. Provides project context, component docs, and usage…
软件工程 / 诊断修复
literature-review
literature-review
Conduct comprehensive, systematic literature reviews using multiple academic databases (PubMed, arXiv, bioRxiv, Semantic Scholar, etc.). This skill should be…
软件工程 / 诊断修复
swift-style
swift-style
Swift code style conventions for clean, readable code. Use when writing Swift code to ensure consistent formatting, naming, organization, and idiomatic…
软件工程 / 诊断修复
API 文档生成器
api-documentation-generator
从代码生成全面的开发者友好型 API 文档,包括端点、参数、示例和最佳实践 --- ## 概述 本指南介绍如何从代码自动生成完整、可维护的 API 文档,帮助开发者快速理解和集成接口。 --- ## 核心组件 ### 1. 端点文档结构 | 元素 | 说明 | 示例 | |:---|:---|:---| | HTTP 方法 | GET / POST / PUT / DELETE | `GET /api/v1/users` | | 路径 | 资源定位符 | `/api/v1/users/{id}` | | 功能描述 | 一句话说明用途 | 获取用户详细信息 | | 认证方式 | 所需权限或 Token | `Bearer Token` / `API Key` | ### 2. 参数规范 **路径参数** ```http GET /api/v1/users/{userId}/orders/{orderId} ``` | 参数名 | 类型 | 必填 | 约束 | 说明 | |:---|:---|:---|:---|:---| | `userId` | `string` | 是 | UUID 格式 | 用户唯一标识 | | `orderId` | `string` | 是 | 64 位整数 | 订单编号 | **查询参数** ```http GET /api/v1/users?page=1&limit=20&status=active ``` | 参数名 | 类型 | 必填 | 默认值 | 说明 | |:---|:---|:---|:---|:---| | `page` | `integer` | 否 | `1` | 页码,最小值为 1 | | `limit` | `integer` | 否 | `20` | 每页条数,最大 `100` | | `status` | `string` | 否 | - | 筛选状态:`active` / `inactive` / `pending` | **请求体(JSON)** ```json { "username": "zhangsan", "email": "zhangsan@example.com", "role": "developer", "department": "engineering" } ``` | 字段 | 类型 | 必填 | 验证规则 | 说明 | |:---|:---|:---|:---|:---| | `username` | `string` | 是 | 3-20 字符,仅字母数字下划线 | 登录用户名 | | `email` | `string` | 是 | 符合 RFC 5322 | 联系邮箱 | | `role` | `string` | 是 | 枚举值见下方 | 用户角色 | | `department` | `string` | 否 | - | 所属部门 | --- ## 完整请求示例 ### 创建用户 **请求** ```http POST /api/v1/users HTTP/1.1 Host: api.example.com Content-Type: application/json Authorization: Bearer eyJhbGciOiJIUzI1NiIs... { "username": "zhangsan", "email": "zhangsan@example.com", "role": "developer", "department": "engineering" } ``` **成功响应(201 Created)** ```json { "code": 0, "data": { "id": "550e8400-e29b-41d4-a716-446655440000", "username": "zhangsan", "email": "zhangsan@example.com", "role": "developer", "department": "engineering", "createdAt": "2024-01-15T08:30:00Z", "status": "active" }, "requestId": "req_2024011508300001" } ``` **错误响应(400 Bad Request)** ```json { "code": 1001, "message": "参数验证失败", "details": [ { "field": "email", "error": "邮箱格式不正确" } ], "requestId": "req_2024011508300002" } ``` --- ## 状态码与错误体系 | HTTP 状态码 | 业务码 | 场景 | 处理建议 | |:---|:---|:---|:---| | `200` | `0` | 请求成功 | 正常处理响应数据 | | `201` | `0` | 资源创建成功 | 获取返回的 `id` 进行后续操作 | | `400` | `1001` | 参数校验失败 | 检查 `details` 修正请求参数 | | `401` | `2001` | 认证失败 | 刷新 Token 或重新登录 | | `403` | `2002` | 权限不足 | 确认账号角色或联系管理员 | | `404` | `3001` | 资源不存在 | 核对资源 ID 是否正确 | | `409` | `3002` | 资源冲突 |
软件工程 / 诊断修复
查询文档
ask-docs
查询 CrewAI 官方文档以获取答案。当用户提出的 CrewAI 问题在入门指南、设计 Agent……中未完全涵盖时使用。
软件工程 / 部署发布
coreml
coreml
Integrate and optimize Core ML models in iOS apps for on-device machine learning inference. Covers model loading (.mlmodelc, .mlpackage), predictions with…
软件工程 / 诊断修复
documentation-lookup
documentation-lookup
This skill should be used when the user asks about libraries, frameworks, API references, or needs code examples. Activates for setup questions, code…