Workflows support four node types: Tool nodes execute any of the 170+ AgentPMT marketplace tools. Prompt nodes perform AI reasoning, data transformation, and decision-making between tool calls. For Each nodes iterate over collections for batch processing. Notify Human nodes pause execution for human approval on high-stakes decisions.

AgentPMT Workflow Creator
Available Actions
Description
Design, build, and publish specialized AI agent workflows that orchestrate complex multi-step automation across 170+ integrated tools. The AgentPMT Workflow Creator lets you chain together tool calls, AI reasoning steps, iterative loops, conditional branching, and human approval gates into reusable directed acyclic graph (DAG) pipelines. Build anything from simple 3-step automations to sophisticated 15-step business process pipelines that span OCR document processing, CRM updates, financial reconciliation, content generation, data analysis, notification delivery, and more. Each workflow is version-controlled, publishable, and remixable -- start from scratch or fork an existing public workflow and customize it. No code required. Define what each node does, connect them with edges, and the agent runtime handles execution, data flow between steps, and error handling. Workflows support tool nodes (execute any AgentPMT marketplace tool), prompt nodes (AI reasoning and data transformation), for_each nodes (batch processing over collections), and notify_human nodes (approval gates for high-stakes decisions). Publish workflows as reusable skills that any agent can discover and run, complete with industry tagging, time-saved estimates, and showcase examples.

AgentPMT Workflow Creator
Available Actions
Details
Design, build, and publish specialized AI agent workflows that orchestrate complex multi-step automation across 170+ integrated tools. The AgentPMT Workflow Creator lets you chain together tool calls, AI reasoning steps, iterative loops, conditional branching, and human approval gates into reusable directed acyclic graph (DAG) pipelines. Build anything from simple 3-step automations to sophisticated 15-step business process pipelines that span OCR document processing, CRM updates, financial reconciliation, content generation, data analysis, notification delivery, and more. Each workflow is version-controlled, publishable, and remixable -- start from scratch or fork an existing public workflow and customize it. No code required. Define what each node does, connect them with edges, and the agent runtime handles execution, data flow between steps, and error handling. Workflows support tool nodes (execute any AgentPMT marketplace tool), prompt nodes (AI reasoning and data transformation), for_each nodes (batch processing over collections), and notify_human nodes (approval gates for high-stakes decisions). Publish workflows as reusable skills that any agent can discover and run, complete with industry tagging, time-saved estimates, and showcase examples.
Use Cases
Build custom AI agent workflows, automate multi-step business processes, chain tools together into reusable pipelines, create no-code automation workflows, orchestrate document processing pipelines, build financial reconciliation workflows, design content creation and publishing pipelines, automate data collection and reporting, create customer onboarding sequences, build monitoring and alerting workflows, remix and customize existing public workflows, publish shareable workflow skills for the AgentPMT marketplace
Build Specialized AI Agents That Orchestrate Complex Workflows
The AgentPMT Workflow Creator is a no-code workflow builder for designing multi-step AI agent pipelines. Chain together any combination of 170+ marketplace tools, AI reasoning steps, batch processing loops, and human approval gates into directed acyclic graph (DAG) workflows that run autonomously.
How It Works
Workflows are graphs of connected nodes. Each node performs a specific action, and edges define the execution order and data flow between steps:
- Tool Nodes -- Execute any tool from the AgentPMT marketplace: OCR engines, accounting software, CRM systems, email services, chart generators, file storage, web scrapers, and more.
- Prompt Nodes -- AI reasoning steps that transform data, make decisions, synthesize information from multiple sources, or apply business logic between tool calls.
- For Each Nodes -- Iterate over collections to process records in batch: reconcile transactions one by one, send personalized emails to a list, or categorize expenses from a receipt stack.
- Notify Human Nodes -- Pause execution for human approval on high-stakes decisions like financial reports, public communications, or compliance reviews.
From Idea to Published Skill in Minutes
- Discover tools -- Search the catalog of 170+ tools by keyword to find exactly what your workflow needs.
- Design the graph -- Define nodes, connect them with edges, and set parameters and instructions for each step.
- Test and iterate -- Fetch your workflow, verify the graph, and update nodes or edges until it runs correctly.
- Publish -- Create a versioned snapshot that any agent can discover and run. Supports semantic versioning with major, minor, and patch bumps.
Remix Instead of Rebuilding
Browse published public workflows and fork any of them with a single action. Remixing creates a private copy you can customize -- change tools, adjust prompts, add or remove steps -- while preserving attribution to the original creator.
Real-World Workflow Patterns
- Document Processing Pipelines -- Upload bank statements or receipts, run OCR, extract structured data, and book transactions to accounting software.
- Research and Reporting -- Aggregate data from multiple sources, analyze trends with AI reasoning, generate visualizations, and deliver briefings via email or Slack.
- Customer Outreach -- Pull lead data from CRM, personalize messaging, send communications, log activity, and schedule follow-ups.
- Monitoring and Alerting -- Fetch metrics, analyze against thresholds, generate alerts, and notify teams on Discord, Slack, or email.
- Content Pipelines -- Research topics, draft content, create supporting visuals, publish to platforms, and notify stakeholders.
Built for Reliability
Every workflow is validated against strict graph rules: no cycles, unique node IDs, valid edge references, and proper nesting of loop children. Version control ensures published snapshots are frozen while the live workflow remains editable.
Actions(13)
Create a new workflow skill.
Update an existing workflow skill draft.
Fetch workflow skills, optionally filtered to one skill.
Search public workflow skills.
Publish a workflow skill version.
Create a remix from an existing workflow skill.
Delete a workflow skill draft.
Browse or search tools available for workflow nodes.
Fetch usage instructions for workflow skill management.
Fetch usage instructions for workflow skill management.
Fetch available industry tags for workflow skills.
Add a single showcase example to a workflow skill.
Remove a showcase example from a workflow skill by id.
curl -X POST "https://api.agentpmt.com/products/purchase" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ********" \
-d '{
"product_id": "697ad12ce50ea269b242e6a6",
"parameters": {
"action": "create_new"
}
}'Login to view your API and budget keys. The example above uses placeholder values. Sign in to see personalized code with your bearer token.
This tool supports credit-based access for external agents using AgentAddress identities or standard crypto wallets. External agents should use the External Agent API to buy credits with x402 and invoke this tool.
1. Buy Credits
Purchase credits via x402 payment (500 credit minimum, 100 credits = $1).
# Request payment requirements (returns 402 + PAYMENT-REQUIRED header)
curl -i -s -X POST "https://www.agentpmt.com/api/external/credits/purchase" \
-H "Content-Type: application/json" \
-d '{ "wallet_address":"0xYOUR_WALLET", "credits": 500, "payment_method":"x402" }'
# Sign the EIP-3009 authorization, then retry with signature header
curl -s -X POST "https://www.agentpmt.com/api/external/credits/purchase" \
-H "Content-Type: application/json" \
-H "PAYMENT-SIGNATURE: <base64-json>" \
-d '{ "wallet_address":"0xYOUR_WALLET", "credits": 500, "payment_method":"x402" }'2. Create a Session Nonce (nonce used in signed balance/invoke)
curl -s -X POST "https://www.agentpmt.com/api/external/auth/session" \
-H "Content-Type: application/json" \
-d '{ "wallet_address":"0xYOUR_WALLET" }'3. Invoke This Tool
Sign the message with your wallet (EIP-191 personal-sign), then POST to the invoke endpoint.
# Sign this message (wallet MUST be lowercased):
# agentpmt-external
# wallet:0xyourwallet...
# session:<session_nonce>
# request:<request_id>
# action:invoke
# product:697ad12ce50ea269b242e6a6
# payload:<sha256(canonical_json(parameters))>
curl -s -X POST "https://www.agentpmt.com/api/external/tools/697ad12ce50ea269b242e6a6/invoke" \
-H "Content-Type: application/json" \
-d '{
"wallet_address": "0xYOUR_WALLET",
"session_nonce": "<session_nonce>",
"request_id": "invoke-uuid",
"signature": "0x<signature>",
"parameters": {
"action": "your_action",
"your_param": "value"
}
}'About The Developer

Apoth3osis
Joined Agent Payment: August 14, 2025
We build tools that enable AI agents to excel in the mathematical realm.
Our small team develops experimental and unique solutions in the AI arena, with a strong focus on modular computing for agentic applications and custom model deployment. We have handled projects for a variety of applications across many sectors, from algorithmic trading and financial analysis, to molecular simulations and predictions, to habitat and biodiversity monitoring and wildlife conservation.
Frequently Asked Questions
Do I need to write code to build workflows?
No. The Workflow Creator is entirely no-code. You define nodes with their type, label, and configuration, connect them with edges, and the platform handles execution, data flow, and error handling. All configuration is done through structured parameters.
Can I use other people's workflows as a starting point?
Yes. Use the remix action to fork any published public workflow. This creates a private copy you can freely modify -- change tools, adjust prompts, add or remove steps -- while preserving attribution to the original creator.
How does versioning work?
The first publish sets the version to 1.0.0. Subsequent publishes support semantic versioning: major for breaking changes, minor for new steps or features, and patch for fixes. Publishing creates a frozen snapshot while the live workflow remains editable.
What happens if my workflow contains private tools?
Workflows containing private tools cannot be published with public visibility. You can still use them privately or share them within your organization. To publish publicly, replace private tools with their public equivalents.
How many steps should my workflow have?
It depends on the task. Simple automations work well with 3-5 steps. Standard business workflows typically need 6-10 steps. Complex pipelines with multi-source data and iterative processing may need 11-15 steps. Every step should add clear value -- do not pad workflows with unnecessary nodes.

