seer-api-explorer
Original:🇺🇸 English
Translated
Discover and explore Seer API commands via schema introspection
7installs
Sourcesparkssl/midaz-cli
Added on
NPX Install
npx skill4agent add sparkssl/midaz-cli seer-api-explorerTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Seer API Explorer
Read seer-shared for response format and common rules.
Use this skill when the user's need is not covered by existing Seer skills. Before using this skill, check if already has the command you need.
seer-marketWhen to Use
- User asks about a command you don't recognize
- User needs data that existing skills don't document
- You want to discover what commands are available
- You need to understand a command's exact input/output contract
Discovery Flow
Step 1: Check existing skills first
If the user's question maps to a known command in , use that skill directly. Only proceed here if it doesn't.
seer-marketStep 2: List all commands
bash
seer-q schemaReturns every registered command with its description, arguments, and flags. Use this to find the right command for the user's need.
Step 3: Inspect a specific command
bash
seer-q schema <command>Returns the full contract for one command: positional arguments, flags with defaults, and response shape description. Use this to understand exactly what to pass and what to expect.
Step 4: Call with raw output
bash
seer-q <command> [args] [flags] --rawThe flag bypasses the envelope and returns the API response directly. This is useful for:
--raw- Inspecting the full response structure when the envelope obscures it
- Debugging unexpected output
- Exploring fields not documented in skills
Step 5: Interpret and synthesize
After receiving the response:
- Parse the JSON (remember: contains the payload if not using
.data)--raw - Identify the relevant fields for the user's question
- Synthesize into natural language
- Include any found in the response
view_url
Example
User: "what stages does Seer use for processing?"
- Not covered by seer-market → use API explorer
- → discover
seer-q schema decisionsflag and its allowed values--stage - → see real stage names in output
seer-q decisions --limit 5 - Summarize the processing stages found