بنقرة واحدة
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.