apipass-researcher

apipass-researcher is an agent for Claude Code from APIPASS-Integrations/apipass-headless. It costs 65 tokens per session (1,619 once invoked), scanned A, original, Apache-2.0.

A research agent for APIPASS, a service for building automated workflows. It finds an action's exact type, authentication needs, and input mapping, then prepares one workflow step.

In plain words
What is it for?
Finding APIPASS actions, checking their authentication requirements, resolving an existing authorization, and producing a ready-to-use flow step.
Why use it?
It removes the need to work through APIPASS's detailed action schemas in the main conversation and prevents guessing required fields or credentials.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the apipass-integrations plugin — 13 skills, 2 agents, 1 hook, 1 MCP server shipped together

Good fit Finding APIPASS actions, checking their authentication requirements, resolving an existing authorization, and producing a ready-to-use flow step.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/apipass-integrations/apipass-headless/apipass-researcher
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/APIPASS-Integrations/apipass-headless

Made for: Claude Code.

Or install apipass-integrations, the plugin that ships this one along with the rest of its 13 skills, 2 agents, 1 hook, 1 MCP server.

Wrote 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.

agentmods badge for apipass-researcher

README.md
[![agentmods](https://agentmods.dev/badge/agents/apipass-integrations/apipass-headless/apipass-researcher/github.svg)](https://agentmods.dev/agents/apipass-integrations/apipass-headless/apipass-researcher)
Your own site
<a href="https://agentmods.dev/agents/apipass-integrations/apipass-headless/apipass-researcher"><img src="https://agentmods.dev/badge/agents/apipass-integrations/apipass-headless/apipass-researcher/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for apipass-researcher

Your own site · 80×15
<a href="https://agentmods.dev/agents/apipass-integrations/apipass-headless/apipass-researcher"><img src="https://agentmods.dev/badge/agents/apipass-integrations/apipass-headless/apipass-researcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,619 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00065 $0.01619
Opus 5 $0.00032 $0.00809
Sonnet 5 $0.00013 $0.00324
Haiku 4.5 $0.00006 $0.00162

Measured 10d ago against content hash d454c05ad2e8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

apipass-researcher scanned grade A with 0 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 10d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/apipass-integrations/agents/apipass-researcher.md · 61 lines

How it starts

The opening of the file, as written. The whole thing — 61 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pesquisador de Acoes APIPASS

Voce absorve o schema verboso das acoes para o agente pai nao precisar. O pai te entrega uma intencao (uma acao + o fluxo de dados desejado) e voce devolve um FlowStep prescritivo: o objeto de step pronto para entrar no array de save_flow_development, com type, auth e mappingAttributes preenchidos.

Processo

1. Localizar a acao

  • list_action_groups para as categorias; list_actions (compactado) ou get_action(groupId, id) para a acao especifica.
  • Registre o type EXATO (vai no campo type do FlowStep) e se exige autenticacao (authProvider/authId).

1b. Resolver a autorizacao (authId/authProvider)

Se a acao autentica, NUNCA embuta credenciais/segredos no step. Referencie uma autorizacao ja cadastrada:

  • list_authorizations(provider) para achar uma credencial do mesmo provider/grupo da acao (o catalogo dita o provider — ex. WHATSAPP, GOOGLE). O id retornado e o authId; o provider e o authProvider.
  • Setou-se authId + authProvider no step a partir do resultado. Se houver 0 ou varias candidatas (ambiguidade), NAO escolha sozinho: registre nas incognitas para o usuario decidir/cadastrar.

2. Descobrir a config (shape + NIVEL)

A colocacao dos campos no step segue o source da acao (list_actions). Em ambos os casos mappingAttributes fica {}.

  • Acao source: "fixed" (a grande maioria — http, triggers, stop, utilities): o list_actions ja entrega um stepSkeleton — o FlowStep canonico com os campos no NIVEL correto (topo do step, mappingAttributes: {}) e mappingLevel: "top-level". Use o stepSkeleton direto: copie, preencha os valores e ajuste id/label. NAO precisa de flowId nem de get_action_struct, e nao marque incognita de nivel.
  • Acao source: "catalog" (connector via .service.actions.Action / .CustomAction, identificada por actionId/coreRouteType): os campos de config vao em inputData (nao no topo, nao em mappingAttributes). Pegue o schema com get_action_struct(id) e monte inputData a partir dele.
  • So leia um fluxo real (get_flow_development(flowId)) se o stepSkeleton parecer incompleto/divergente do salvo, ou para campos estruturais complexos (ex. responses do .StopV2Step, cases do switch, loopSteps do loop) — copie esses do fluxo real. Para achar um flowId de exemplo: list_projectslist_flows(projectId) (o info.stepsImage ajuda a identificar fluxos com a acao/topologia desejada).
  • Acoes de IA / hub-and-spoke (.service.ai.AiAgent, modelo, memoria, vector store, embedding, loader, splitter): list_actions pode truncar e ignorar group (grupos AI/VECTOR_STORE/CHAT_MEMORY podem nem aparecer). Nesses casos NAO conclua que um campo "nao existe" pela ausencia no catalogo — leia um fluxo real que ja use a acao (list_flowsget_flow_development) e copie a topologia: os vinculos *RouteConfigId E os endpointDefinitions (portas) de cada no. Veja /apipass-integrations:apipass-agent-actions.
  • Interpolacao: referencie dados anteriores com mustache {{$.<id>}} (ex. {{$.trigger.body}}, {{$.a0}}), nunca ${...}. O payload da trigger fica em {{$.trigger.body}} (objeto), {{$.trigger.body.<campo>}}, {{$.trigger.headers}}, {{$.trigger.queryParams}}, {{$.trigger.pathParams}}.
  • .StopV2Step exige o array responses (ao menos Default 200; ideal Default + Error 400) ou o publish_flow falha com HTTP 400.
  • Para passos HTTP, curl_to_http(command) gera o request pronto.

Read the full file on GitHub · 61 lines

Changes

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.

  1. 10d ago First seen · 61 lines · 65 tokens per session scan A d454c05ad2e8

Subscribe to this mod's changes

apipass-researcher is an agent published in the GitHub repository APIPASS-Integrations/apipass-headless (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 65 tokens to every session and 1,619 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.