Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计提醒

api-testingAPI 测试

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

1,080

周安装

45

GitHub Stars

12

下载量

360
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:api-testing(API 测试)
来源仓库:https://github.com/scientiacapital/skills
仓库路径:skills/api-testing
安装命令:
npx skills add https://github.com/scientiacapital/skills --skill api-testing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/scientiacapital/skills --skill api-testing

简介

api-testing 用于辅助 API 设计、接口文档和请求响应结构梳理。

  • 适合生成 OpenAPI 草稿、检查字段命名或整理错误码。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 使用时需确认真实业务语义、鉴权方式和分页规则,避免凭空补字段。
  • 最好从现有代码或接口样例中提取事实,确保接口定义准确。

SKILL.md

This skill complements testing-skill (code-based tests) and api-design-skill (API structure). Use this when you need to test existing APIs with dedicated tools rather than writing programmatic tests.

Key distinction:

  • testing-skill: Code-based tests (supertest, MSW, pytest requests)
  • api-testing-skill: Tool-based tests (Postman, Bruno collections)
  • api-design-skill: How to design APIs (structure, conventions)

<quick_start> Postman Quick Test:

// Tests tab in Postman
pm.test("Status code is 200", function () {
    pm.response.to.have.status(200);
});

pm.test("Response has user data", function () {
    const json = pm.response.json();
    pm.expect(json).to.have.property("id");
    pm.expect(json).to.have.property("email");
});

Bruno Quick Test:

// tests/get-user.bru
meta {
  name: Get User
  type: http
  seq: 1
}

get {
  url: {{baseUrl}}/api/users/{{userId}}
}

tests {
  test("should return 200", function() {
    expect(res.status).to.equal(200);
  });
}

Environment Setup:

{
  "baseUrl": "https://api.example.com",
  "apiKey": "test_key_xxx"
}

</quick_start>

<success_criteria> API testing is successful when:

  • All endpoints have at least one happy path test
  • Error cases tested (4xx, 5xx responses)
  • Response schema validated (not just status codes)
  • Environment variables used for all configurable values
  • Collections organized by resource/domain
  • Authentication flows tested end-to-end
  • CI pipeline runs collections on every PR
  • Test data is reproducible (fixtures or dynamic generation) </success_criteria>

<tool_comparison>

Postman vs Bruno

FeaturePostmanBruno
StorageCloud/LocalGit-native (.bru files)
CollaborationTeam syncGit branches
PricingFree tier + paidFree and open source
OfflineDesktop appFull offline
ScriptingJavaScriptJavaScript
CI/CDNewman CLIBruno CLI
SchemaJSONPlain text.bru
Best ForTeams, API documentationGit workflows, privacy

When to Use Each

Choose Postman when:

  • Team needs real-time collaboration
  • API documentation is primary output
  • Mock servers needed for frontend dev
  • Complex OAuth flows with token refresh

Choose Bruno when:

  • Git-native workflow preferred
  • Privacy/self-hosting required
  • Simpler test scenarios
  • Developers prefer code-like syntax </tool_comparison>

<collection_organization>

Collection Structure

Folder Hierarchy

my-api-tests/
├── auth/
│   ├── login.bru
│   ├── refresh-token.bru
│   └── logout.bru
├── users/
│   ├── create-user.bru
│   ├── get-user.bru
│   ├── update-user.bru
│   └── delete-user.bru
├── orders/
│   ├── create-order.bru
│   ├── get-orders.bru
│   └── cancel-order.bru
├── environments/
│   ├── local.bru
│   ├── staging.bru
│   └── production.bru
└── collection.bru

Naming Conventions

ElementConventionExample
Folderskebab-case, pluralusers, auth-flows
Requestsverb-nouncreate-user, get-orders
VariablescamelCase{{baseUrl}}, {{authToken}}
Environmentslowercaselocal, staging, production

Request Ordering

Use sequence numbers for dependent requests:

1. auth/login.bru          (seq: 1)
2. users/create-user.bru   (seq: 2) - needs auth token
3. users/get-user.bru      (seq: 3) - uses created user ID

</collection_organization>

<test_patterns>

Test Assertion Patterns

Assertion TypeWhat to CheckExample
Status codes200, 201, 400, 401, 404pm.response.to.have.status(200)
Response bodyRequired fields, types, patternspm.expect(json).to.have.property("id")
Response timeUnder thresholdpm.expect(pm.response.responseTime).to.be.below(500)
HeadersContent-Type, X-Request-Idpm.response.to.have.header("Content-Type")
JSON schemaFull schema validationpm.response.to.have.jsonSchema(schema)

See reference/test-design.md for full assertion patterns with Postman and Bruno examples. </test_patterns>

<environment_management>

Environment Management

Variable scope (Postman): Global → Collection → Environment → Data → Local (highest priority).

Use environment files for baseUrl, apiKey per env (local/staging/production). Chain requests by saving response values (pm.environment.set("authToken", json.accessToken)) for use in subsequent requests.

See reference/data-management.md for environment file formats, dynamic variables, and request chaining patterns. </environment_management>

<authentication_testing>

Authentication Testing

Auth TypeMethodKey Pattern
Bearer tokenSave from login response, use in Authorization headerpm.environment.set("accessToken", json.accessToken)
API keyHeader (X-API-Key) or query param{{apiKey}} variable
OAuth 2.0Pre-request script checks expiry, refreshes automaticallypm.sendRequest() for token refresh

Always test: 401 without token, 403 with wrong role.

See reference/postman-patterns.md for OAuth 2.0 refresh flow and auth failure test patterns. </authentication_testing>

<error_testing>

Error Response Testing

Test each error class: 400 (validation errors with details array), 404 (not found), 429 (rate limit headers present), 5xx (has requestId).

See reference/test-design.md for error response assertion patterns. </error_testing>

<ci_integration>

CI/CD Integration

ToolCLIRun Command
PostmanNewmannewman run collection.json -e staging.json
BrunoBruno CLIbru run --env staging

Integrate via GitHub Actions: install CLI, run collection, upload HTML report as artifact. Use ${{secrets.*}} for sensitive env vars.

See reference/ci-integration.md for GitHub Actions workflow, reporters, and secrets handling. </ci_integration>

<data_management>

Test Data Management

Use data files (newman run -d test-data.json) for iteration-based testing. Postman has built-in dynamic variables ({{$guid}}, {{$randomEmail}}, {{$timestamp}}). Add cleanup scripts in post-request to delete created resources.

See reference/data-management.md for data file formats, dynamic generation, and cleanup patterns. </data_management>

Before creating collection:

  • API documentation reviewed
  • Authentication method identified
  • Base URLs for all environments defined
  • Test data strategy determined

For each endpoint:

  • Happy path test (expected input, expected output)
  • Required field validation (400 errors)
  • Authentication test (401 without token)
  • Authorization test (403 wrong permissions)
  • Not found test (404 invalid ID)
  • Response schema validated
  • Response time asserted

Collection organization:

  • Requests grouped by resource
  • Sequence numbers for dependent requests
  • Environments for local/staging/production
  • Sensitive values marked as secrets

CI integration:

  • Newman/Bruno CLI configured
  • GitHub Actions workflow created
  • Test reports uploaded as artifacts
  • Secrets stored in CI environment
TopicReference FileWhen to Load
Postman advanced patternsreference/postman-patterns.mdCollections, scripting, monitors
Bruno workflowreference/bruno-patterns.md.bru files, git integration
Test case designreference/test-design.mdCoverage strategies, edge cases
Test data strategiesreference/data-management.mdFixtures, dynamic data, cleanup
CI/CD pipelinesreference/ci-integration.mdNewman, GitHub Actions, reporting

To load: Ask for the specific topic or check if context suggests it.

Emit Outcome Sidecar

As the final step, write to ~/.claude/skill-analytics/last-outcome-api-testing.json:

{"ts":"[UTC ISO8601]","skill":"api-testing","version":"1.0.0","variant":"default",
 "status":"[success|partial|error]","runtime_ms":[estimated ms from start],
 "metrics":{"tests_created":[n],"endpoints_tested":[n],"assertions_written":[n]},
 "error":null,"session_id":"[YYYY-MM-DD]"}

Use status "partial" if some stages failed but results were produced. Use "error" only if no output was generated.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.96%
按下载量换算129

Claude

31.38%
按下载量换算113

Cursor

20.94%
按下载量换算75

Gemini CLI

9.66%
按下载量换算35

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills