Agent Tool Marketplace
Freshness
Last updated: 2026-06-11.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Use this skill when an agent needs to discover AgentPMT tools, inspect schemas and prices, choose the right product/action, and route invocation through the current setup skill.
Required Setup
- Account route: use
../agentpmt-account-mcp-rest-api-setup for AgentPMT account, MCP server, REST API, Agent Group, API key, and budget key setup.
- No-account route: use
../agentpmt-no-account-agentaddress-x402 for AgentAddress wallet, x402 funding, wallet-signed external API access, and payment troubleshooting.
- Overview: use
../what-is-agentpmt for marketplace, credits, workflows, Agent Groups, MCP, REST, AgentAddress, and x402 concepts.
Install the current setup skills:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
npx skills add AgentPMT/agent-skills --skill agentpmt-no-account-agentaddress-x402
Discover Tools
Use the AgentPMT marketplace or the authenticated Tool Search skill to find products by name, category, use case, action, schema fields, and pricing.
Catalog entries identify the product slug, available actions, action schemas, pricing, availability, and setup route. Choose the product whose schema and price match the task.
Invoke A Product
- Identify the product slug and action slug from the marketplace, generated product skill, or live schema.
- Read the adjacent product skill for product-specific behavior, schema details, sample parameters, response handling, and marketplace URL.
- Use
../agentpmt-account-mcp-rest-api-setup for account MCP/REST calls, or ../agentpmt-no-account-agentaddress-x402 for no-account external calls.
- Keep product-specific parameters aligned with the live schema. If the schema is unclear, fetch live instructions before invoking.
- Treat returned JSON as the source of truth. If validation fails, correct parameters from the schema before retrying.
Product Skill Links
Generated product skills live under skills/<product-skill-slug> in AgentPMT/agent-skills and under the AgentPMT ClawHub account:
npx skills add AgentPMT/agent-skills --skill <product-skill-slug>
openclaw skills install <product-skill-slug>
ClawHub URL pattern:
https://clawhub.ai/agentpmt/<product-skill-slug>
Error Handling
- Product schema error: rebuild parameters from the product skill or live schema.
- Authentication or setup error: return to the account setup skill or no-account setup skill, depending on the route.
- Insufficient credits or payment setup error: use
../agentpmt-no-account-agentaddress-x402.
- Tool or platform error: preserve product slug, action slug, request identifiers, response body, and retry only after the setup or schema issue is fixed.
Canonical Links
Maintenance Rule
This marketplace skill describes discovery and routing only. Do not add wallet creation, payment challenge, signature, balance-check, canonicalization, or retry procedures here; update the canonical no-account setup skill instead.
1---2name: agent-tool-marketplace3description: AgentPMT tool marketplace guide for discovering tools, selecting actions, reading schemas, and invoking products through the current account or no-account setup skills. Use when an agent needs marketplace discovery and product-specific invocation identity without stale payment instructions.4---56# Agent Tool Marketplace78## Freshness910Last updated: `2026-06-11`.1112If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.1314Use this skill when an agent needs to discover AgentPMT tools, inspect schemas and prices, choose the right product/action, and route invocation through the current setup skill.1516## Required Setup1718- Account route: use `../agentpmt-account-mcp-rest-api-setup` for AgentPMT account, MCP server, REST API, Agent Group, API key, and budget key setup.19- No-account route: use `../agentpmt-no-account-agentaddress-x402` for AgentAddress wallet, x402 funding, wallet-signed external API access, and payment troubleshooting.20- Overview: use `../what-is-agentpmt` for marketplace, credits, workflows, Agent Groups, MCP, REST, AgentAddress, and x402 concepts.2122Install the current setup skills:2324```bash25npx skills add AgentPMT/agent-skills --skill what-is-agentpmt26npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup27npx skills add AgentPMT/agent-skills --skill agentpmt-no-account-agentaddress-x40228```2930## Discover Tools3132Use the AgentPMT marketplace or the authenticated Tool Search skill to find products by name, category, use case, action, schema fields, and pricing.3334- Marketplace: https://www.agentpmt.com/marketplace35- Tool search skill: `../agentpmt-tool-search-and-execution`36- Tool search ClawHub page: https://clawhub.ai/agentpmt/agentpmt-tool-search-and-execution3738Catalog entries identify the product slug, available actions, action schemas, pricing, availability, and setup route. Choose the product whose schema and price match the task.3940## Invoke A Product41421. Identify the product slug and action slug from the marketplace, generated product skill, or live schema.432. Read the adjacent product skill for product-specific behavior, schema details, sample parameters, response handling, and marketplace URL.443. Use `../agentpmt-account-mcp-rest-api-setup` for account MCP/REST calls, or `../agentpmt-no-account-agentaddress-x402` for no-account external calls.454. Keep product-specific parameters aligned with the live schema. If the schema is unclear, fetch live instructions before invoking.465. Treat returned JSON as the source of truth. If validation fails, correct parameters from the schema before retrying.4748## Product Skill Links4950Generated product skills live under `skills/<product-skill-slug>` in `AgentPMT/agent-skills` and under the AgentPMT ClawHub account:5152```bash53npx skills add AgentPMT/agent-skills --skill <product-skill-slug>54openclaw skills install <product-skill-slug>55```5657ClawHub URL pattern:5859```text60https://clawhub.ai/agentpmt/<product-skill-slug>61```6263## Error Handling6465- Product schema error: rebuild parameters from the product skill or live schema.66- Authentication or setup error: return to the account setup skill or no-account setup skill, depending on the route.67- Insufficient credits or payment setup error: use `../agentpmt-no-account-agentaddress-x402`.68- Tool or platform error: preserve product slug, action slug, request identifiers, response body, and retry only after the setup or schema issue is fixed.6970## Canonical Links7172- AgentPMT overview: https://clawhub.ai/agentpmt/what-is-agentpmt73- Account MCP/REST setup: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup74- No-account AgentAddress/x402 setup: https://clawhub.ai/agentpmt/agentpmt-no-account-agentaddress-x40275- AgentPMT marketplace: https://www.agentpmt.com/marketplace7677## Maintenance Rule7879This marketplace skill describes discovery and routing only. Do not add wallet creation, payment challenge, signature, balance-check, canonicalization, or retry procedures here; update the canonical no-account setup skill instead.