← Back to Skills Marketplace
dwflickinger

AgentClear

by dwflickinger · GitHub ↗ · v1.1.0
cross-platform ✓ Security Clean
266
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install agentclear
Description
Discover, call, and pay for APIs through AgentClear — the commerce layer for AI agents. Use when you need to: (1) find an API or tool by describing what you...
README (SKILL.md)

AgentClear — Agent Commerce Layer

Discover and call paid APIs with natural language. One API key, per-call billing, zero friction.

Setup

Requires AGENTCLEAR_API_KEY environment variable (starts with axk_).

export AGENTCLEAR_API_KEY="axk_your_key_here"

Get a free key with $5 credits: https://agentclear.dev/login

Data & Privacy

  • Discovery queries are used for semantic matching and logged to power the Bounty Board (demand signals for missing services). No PII is collected.
  • Proxy calls forward your payload to the upstream service provider you selected. AgentClear does not store request/response payloads — only billing metadata (service ID, timestamp, cost).
  • API keys authenticate and meter usage. Keys are scoped to your account and can be revoked at any time.
  • All traffic is over HTTPS. See https://agentclear.dev/security for full details.

Endpoints

Base URL: https://agentclear.dev

Discover Services

Find APIs by describing what you need:

curl -X POST https://agentclear.dev/api/discover \
  -H "Authorization: Bearer $AGENTCLEAR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "parse invoices from PDF", "limit": 5}'

Response returns ranked services with id, name, description, price_per_call, and trust_score.

Call a Service

Proxy a request through AgentClear (auto-billed per call):

curl -X POST https://agentclear.dev/api/proxy/{service_id} \
  -H "Authorization: Bearer $AGENTCLEAR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"your": "payload"}'

The payload is forwarded to the upstream service. Response includes the service result plus billing metadata.

List Services

Browse available services:

curl https://agentclear.dev/api/services \
  -H "Authorization: Bearer $AGENTCLEAR_API_KEY"

Workflow

  1. Discover — Describe what you need → get ranked service matches
  2. Evaluate — Check price, trust score, and description
  3. Call — Proxy the request → get result + pay per call
  4. If no service exists, check the Bounty Board at https://agentclear.dev/bounties

Pricing

  • Services range from $0.001 to $1+ per call (provider-set)
  • Platform fee: 2.5%
  • New accounts get $5 free credits
  • Balance auto-deducts per call

Tips

  • Use specific, descriptive queries for better discovery results ("parse QuickBooks QBO files to JSON" beats "parse files")
  • Chain services: discover → call → use result as input to another service
  • If a discover query returns no results, the query is logged as demand on the Bounty Board — providers will build it
Usage Guidance
This skill appears coherent for calling the AgentClear marketplace, but be aware: (1) each proxy call may bill your account per-call — ensure you understand pricing and set sensible limits, (2) payloads you send are forwarded to upstream providers, so do not include sensitive secrets or personal data unless you trust the target and AgentClear's policies, (3) SKILL.md asserts discovery queries contain no PII and proxy payloads are not stored — you should verify the vendor's privacy/security docs and consider using a throwaway/test account or revocable API key while evaluating, and (4) when installing from the README's GitHub links, prefer to inspect the fetched SKILL.md content locally before enabling it in your agent.
Capability Analysis
Type: OpenClaw Skill Name: agentclear Version: 1.1.0 The AgentClear skill is a legitimate commerce layer for AI agents to discover and interact with paid APIs. It uses a dedicated API key (AGENTCLEAR_API_KEY) to facilitate semantic discovery and proxied API calls through agentclear.dev, with no evidence of data exfiltration, malicious execution, or harmful prompt injection.
Capability Assessment
Purpose & Capability
Name/description match the declared requirements: the skill is an instruction-only wrapper for the AgentClear API and only requires AGENTCLEAR_API_KEY to operate. No unrelated env vars, binaries, or install steps are requested.
Instruction Scope
SKILL.md instructs the agent to send discovery queries and arbitrary request payloads to AgentClear's proxy endpoints (https://agentclear.dev). This is expected for a proxy/marketplace skill, but forwarding arbitrary payloads to upstream services can expose sensitive data if the agent includes it in requests; SKILL.md claims discovery queries contain no PII and proxy calls are not stored, which the user must trust the vendor for.
Install Mechanism
No install spec or code is included (instruction-only), so nothing is written to disk by an installer. README suggests cloning a GitHub repo or downloading SKILL.md from raw.githubusercontent.com which is common and not unusual—but fetching files from remote sources always carries the usual supply-chain caution.
Credentials
Only a single AGENTCLEAR_API_KEY is required and that directly maps to the described functionality (authorizing calls to AgentClear). No extra secrets or unrelated credentials are requested.
Persistence & Privilege
always is false and the skill is user-invocable with normal autonomous invocation allowed. The skill does not request permanent system-wide privileges or modifications to other skills.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agentclear
  3. After installation, invoke the skill by name or use /agentclear
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
Added required env credential declaration (AGENTCLEAR_API_KEY) in metadata. Added Data & Privacy section with transparency on query logging, payload handling, and key scoping.
v1.0.0
Initial release: discover, call, and pay for APIs with natural language
Metadata
Slug agentclear
Version 1.1.0
License
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is AgentClear?

Discover, call, and pay for APIs through AgentClear — the commerce layer for AI agents. Use when you need to: (1) find an API or tool by describing what you... It is an AI Agent Skill for Claude Code / OpenClaw, with 266 downloads so far.

How do I install AgentClear?

Run "/install agentclear" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is AgentClear free?

Yes, AgentClear is completely free (open-source). You can download, install and use it at no cost.

Which platforms does AgentClear support?

AgentClear is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created AgentClear?

It is built and maintained by dwflickinger (@dwflickinger); the current version is v1.1.0.

💬 Comments