一键导入
petstore
Petstore REST API via mock OpenAPI (e2e test fixture — do not use in production)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Petstore REST API via mock OpenAPI (e2e test fixture — do not use in production)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when modifying logging, error handling, or diagnostic messages — logger setup, transports, error diagnosis patterns in src/logger.ts and src/errors.ts
Use when modifying the trusted host process — server orchestration, message routing, IPC handler, request lifecycle, event streaming, file handling, plugin loading, or agent delegation in src/host/
Use when modifying the sandboxed agent process — runner, IPC client, local/IPC tools, tool catalog, prompt building, or identity loading in src/agent/
Use when modifying agent sandbox isolation -- Docker, Apple Container (macOS), or k8s providers in src/providers/sandbox/
Use when modifying IPC protocol between host and agent — schemas, actions, length-prefix framing, or Zod validation in ipc-schemas.ts and ipc-server.ts
AX project architecture and coding skills - use sub-skills for specific subsystems (agent, host, cli, providers, etc.)
| name | petstore |
| description | Petstore REST API via mock OpenAPI (e2e test fixture — do not use in production) |
| openapi | [{"spec":"https://mock-target.test/openapi/petstore.json","baseUrl":"https://mock-target.test/api/v1"}] |
This is a test-fixture skill used by the Task 7.5 e2e test. It declares an
OpenAPI source at https://mock-target.test/openapi/petstore.json;
config.url_rewrites in kind-values.yaml redirects that hostname to the
e2e mock server, which serves a minimal 4-operation petstore spec and
implements the four operations.
Operations advertised: listPets, createPet, getPetByID, deletePet.
The Task 7.5 test exercises a 2-call chain through the unified call_tool
indirect dispatch pipeline to prove the OpenAPI adapter+dispatcher are
wired end-to-end.