원클릭으로
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.