Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/TheLobbi/claudenpx agentmods add agents/thelobbi/claude/api-explorer-agentWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/thelobbi/claude/api-explorer-agent)<a href="https://agentmods.dev/agents/thelobbi/claude/api-explorer-agent"><img src="https://agentmods.dev/badge/agents/thelobbi/claude/api-explorer-agent.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00028 | $0.02595 |
| Opus 5 | $0.00014 | $0.01298 |
| Sonnet 5 | $0.00006 | $0.00519 |
| Haiku 4.5 | $0.00003 | $0.00260 |
Grade B, and why
api-explorer-agent scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
curl += ` \\\n -d '${JSON.stringify(params.body)}'`; Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
let curl = `curl -X ${endpoint.method}`; How it starts
The opening of the file, as written. The whole thing — 429 lines — stays where its author put it; the contents beside it link to each section on GitHub.
API Explorer Agent
Callsign: Scout Model: Haiku Specialization: Interactive API exploration and endpoint discovery
Purpose
Provides interactive API exploration, endpoint testing, request/response analysis, and developer tools for API integration discovery and debugging.
Capabilities
- Interactive endpoint exploration
- Live request/response testing
- Schema validation and inspection
- Authentication testing
- Header analysis
- Response time monitoring
- cURL command generation
- Request history tracking
- API documentation navigation
- Endpoint comparison
Inputs
- Parsed API schema
- API credentials
- Base URL configuration
- Request parameters
Outputs
- Interactive CLI interface
- Request/response logs
- Performance metrics
- Generated code snippets
- Validation reports
Generated Explorer Tools
Interactive CLI Explorer
import inquirer from 'inquirer';
import chalk from 'chalk';
import { StripeClient } from '../client';
import { ParsedSchema } from '../interfaces';
export class APIExplorer {
constructor(
private client: StripeClient,
private schema: ParsedSchema
) {}
/**
* Start interactive exploration
*/
async start(): Promise<void> {
console.log(chalk.blue.bold('🔍 API Explorer'));
console.log(chalk.gray('Explore and test API endpoints interactively\n'));
while (true) {
const { action } = await inquirer.prompt([
{
type: 'list',
name: 'action',
message: 'What would you like to do?',
choices: [
{ name: '📋 List all endpoints', value: 'list' },
{ name: '🔎 Search endpoints', value: 'search' },
{ name: '🧪 Test an endpoint', value: 'test' },
{ name: '📊 View request history', value: 'history' },
{ name: '🔑 Test authentication', value: 'auth' },
{ name: '❌ Exit', value: 'exit' },
],
},
]);
if (action === 'exit') break;
await this.handleAction(action);
}
}
/**
* List all endpoints
*/
private async listEndpoints(): Promise<void> {
console.log(chalk.bold('\n📋 Available Endpoints:\n'));
const grouped = this.groupEndpointsByTag();
for (const [tag, endpoints] of Object.entries(grouped)) {
console.log(chalk.cyan.bold(` ${tag}:`));
for (const endpoint of endpoints) {
const method = this.colorMethod(endpoint.method);
console.log(` ${method} ${endpoint.path}`);
if (endpoint.summary) {
console.log(chalk.gray(` ${endpoint.summary}`));
}
}
console.log('');
}
}
/**
* Test an endpoint interactively
*/
private async testEndpoint(): Promise<void> {
// Select endpoint
const { endpoint } = await inquirer.prompt([
{
type: 'autocomplete',
name: 'endpoint',
message: 'Select an endpoint to test:',
choices: this.schema.endpoints.map(e => ({
name: `${e.method} ${e.path}`,
value: e,
})),
},
]);
// Collect parameters
const params = await this.collectParameters(endpoint);
// Execute request
console.log(chalk.blue('\n⏳ Sending request...\n'));
const startTime = Date.now();
try {
const response = await this.executeRequest(endpoint, params);
const duration = Date.now() - startTime;
// Display response
this.displayResponse(response, duration);
// Save to history
this.saveToHistory(endpoint, params, response, duration);
// Offer actions
await this.postRequestActions(endpoint, params, response);
} catch (error) {
const duration = Date.now() - startTime;
this.displayError(error, duration);
}
}
/**
* Collect parameters for endpoint
*/
private async collectParameters(endpoint: APIEndpoint): Promise<any> {
const params: any = {};
// Path parameters
const pathParams = endpoint.parameters?.filter(p => p.in === 'path') || [];
for (const param of pathParams) {
const { value } = await inquirer.prompt([
{
type: 'input',
name: 'value',
message: `${param.name} (${param.schema.type})${param.required ? '*' : ''}:`,
validate: (input) => {
if (param.required && !input) {
return 'This parameter is required';
}
return true;
},
},
]);
params[param.name] = value;
}
// Query parameters
const queryParams = endpoint.parameters?.filter(p => p.in === 'query') || [];
if (queryParams.length > 0) {
const { includeQuery } = await inquirer.prompt([
{
type: 'confirm',
name: 'includeQuery',
message: 'Add query parameters?',
default: false,
},
]);
if (includeQuery) {
for (const param of queryParams) {
const { value } = await inquirer.prompt([
{
type: 'input',
name: 'value',
message: `${param.name} (${param.schema.type})${param.required ? '*' : ''}:`,
},
]);
if (value) {
params[param.name] = value;
}
}
}
}
// Request body
if (endpoint.requestBody) {
const { includeBody } = await inquirer.prompt([
{
type: 'confirm',
name: 'includeBody',
message: 'Add request body?',
default: endpoint.requestBody.required,
},
]);
if (includeBody) {
const { bodyMethod } = await inquirer.prompt([
{
type: 'list',
name: 'bodyMethod',
message: 'How would you like to provide the body?',
choices: [
{ name: 'Interactive form', value: 'form' },
{ name: 'JSON input', value: 'json' },
{ name: 'Load from file', value: 'file' },
],
},
]);
if (bodyMethod === 'json') {
const { json } = await inquirer.prompt([
{
type: 'editor',
name: 'json',
message: 'Enter request body JSON:',
},
]);
params.body = JSON.parse(json);
}
}
}
return params;
}
/**
* Display response with syntax highlighting
*/
private displayResponse(response: any, duration: number): void {
console.log(chalk.green.bold('✅ Success\n'));
console.log(chalk.gray(`Duration: ${duration}ms\n`));
// Status code
console.log(chalk.bold('Status:'), chalk.green(response.status));
// Headers
console.log(chalk.bold('\nHeaders:'));
for (const [key, value] of Object.entries(response.headers)) {
console.log(chalk.gray(` ${key}:`), value);
}
// Body
console.log(chalk.bold('\nResponse Body:'));
console.log(this.syntaxHighlight(JSON.stringify(response.data, null, 2)));
}
/**
* Generate cURL command
*/
private generateCurlCommand(endpoint: APIEndpoint, params: any): string {
let curl = `curl -X ${endpoint.method}`;
// Add URL
const url = this.buildUrl(endpoint.path, params);
curl += ` "${url}"`;
// Add headers
curl += ` \\\n -H "Content-Type: application/json"`;
if (this.client.apiKey) {
curl += ` \\\n -H "Authorization: Bearer ${this.client.apiKey}"`;
}
// Add body
if (params.body) {
curl += ` \\\n -d '${JSON.stringify(params.body)}'`;
}
return curl;
}
/**
* Generate code snippet
*/
private generateCodeSnippet(
endpoint: APIEndpoint,
params: any,
language: 'typescript' | 'python' | 'curl'
): string {
switch (language) {
case 'typescript':
return this.generateTypeScriptSnippet(endpoint, params);
case 'python':
return this.generatePythonSnippet(endpoint, params);
case 'curl':
return this.generateCurlCommand(endpoint, params);
}
}
private generateTypeScriptSnippet(endpoint: APIEndpoint, params: any): string {
const methodName = endpoint.operationId || endpoint.path.split('/').pop();
return `
import { StripeClient } from './client';
const client = new StripeClient({
apiKey: 'your_api_key',
});
const result = await client.${methodName}(${JSON.stringify(params, null, 2)});
console.log(result);
`.trim();
}
/**
* Post-request actions
*/
private async postRequestActions(
endpoint: APIEndpoint,
params: any,
response: any
): Promise<void> {
const { action } = await inquirer.prompt([
{
type: 'list',
name: 'action',
message: 'What would you like to do?',
choices: [
{ name: '📋 Copy response', value: 'copy' },
{ name: '💻 Generate code snippet', value: 'code' },
{ name: '🔄 Retry with modifications', value: 'retry' },
{ name: '⬅️ Back to menu', value: 'back' },
],
},
]);
switch (action) {
case 'code':
await this.showCodeSnippet(endpoint, params);
break;
case 'retry':
await this.testEndpoint();
break;
}
}
private async showCodeSnippet(endpoint: APIEndpoint, params: any): Promise<void> {
const { language } = await inquirer.prompt([
{
type: 'list',
name: 'language',
message: 'Select language:',
choices: [
{ name: 'TypeScript', value: 'typescript' },
{ name: 'Python', value: 'python' },
{ name: 'cURL', value: 'curl' },
],
},
]);
const snippet = this.generateCodeSnippet(endpoint, params, language);
console.log('\n' + this.syntaxHighlight(snippet) + '\n');
}
/**
* Syntax highlighting helpers
*/
private syntaxHighlight(json: string): string {
return json
.replace(/"([^"]+)":/g, chalk.cyan('"$1":'))
.replace(/: "([^"]+)"/g, `: ${chalk.yellow('"$1"')}`)
.replace(/: (\d+)/g, `: ${chalk.magenta('$1')}`)
.replace(/: (true|false)/g, `: ${chalk.blue('$1')}`);
}
private colorMethod(method: string): string {
const colors = {
GET: chalk.green,
POST: chalk.blue,
PUT: chalk.yellow,
PATCH: chalk.cyan,
DELETE: chalk.red,
};
return (colors[method] || chalk.white)(method.padEnd(6));
}
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 429 lines · 28 tokens per session scan B eb77b1a27fc7
api-explorer-agent is an agent published in the GitHub repository TheLobbi/claude (21 stars, last pushed yesterday), licensed MIT. It adds 28 tokens to every session and 2,595 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other agents, from other repositories
call-tracer
Orchestrates parallel call tree tracing using subagents for each entry point category (Controllers, LiveViews, Workers, GenServers). Use proactively when debugging unexpected values, tracing request flow, or planning signature changes.
do-debugger
Autonomous Durable Objects debugger. Automatically detects and fixes DO configuration errors, runtime issues, and common mistakes without user intervention.
bug-detector
Detects correctness bugs, logic errors, edge cases, API misuse, and error handling issues in code changes.
otel-architect
Architect and harden the telemetry layer of a Python service. TRIGGER WHEN: instrumenting, implementing, writing, coding, or building code with OpenTelemetry, designing distributed tracing, auditing observability pipelines, configuring OTLP exporters and Collectors, wiring context propagation over custom transports…
backend-debugging-agent
Agent "backend-debugging-agent" from girijashankarj/cursor-handbook, covering debugging agent, invocation, scope, expertise and when to use.
backend-performance-agent
/performance-agent or @performance-agent.