AgentPMT Workflow Creator
AgentPMT-Workflow-CreatorAgentPMT Workflow Creator - Build and manage multi-step AI agent workflows (skill chains) that orchestrate tools, prompts, loops, and human notifications into reusable DAG pipelines. Supports creating, updating, publishing, remixing, searching, and adding showcase examples to workflows. Access a catalog of 170+ tools to chain together. Call get_instructions before starting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Workflow skill name | |
| skip | No | Number of results to skip for pagination | |
| edges | No | Workflow graph edges - array with {id, from, to, condition, sourceHandle?, targetHandle?} | |
| limit | No | Maximum results to return (1-200) | |
| nodes | No | Workflow graph nodes - array of SkillChainNode objects | |
| query | No | Search query over name/description (case-insensitive) | |
| action | Yes | The action to perform | |
| sort_by | No | Sort order for fetch_tools browse (no search query). 'recently_updated' or 'name'. | recently_updated |
| skill_id | No | Skill chain ObjectId or slug (required for update, publish, remix, delete; optional for fetch) | |
| publisher | No | Filter by publisher username (case-insensitive substring match, for search_public) | |
| categories | No | Comma-separated category names to filter by (for search_public) | |
| chat_model | No | Override the workflow's chat model identifier. Must reference chat_model_config.available_models; null or blank clears the override on update. | |
| version_id | No | Workflow version ObjectId for get_version and restore_version. | |
| visibility | No | Visibility: private or public | |
| description | No | Workflow skill description | |
| tool_search | No | Search query for tools in fetch_tools action | |
| version_bump | No | Version bump type for publish: major, minor, patch, or auto | |
| industry_tags | No | List of industry tag names to associate with this workflow | |
| mcp_server_name | No | MCP server name (default: agentpmt) | |
| validation_mode | No | Validation mode for validate action. Defaults to agent_write. | agent_write |
| showcase_example | No | Single showcase example to add (for add_showcase_example action) | |
| checkpoint_reason | No | Autosave checkpoint reason. | |
| time_saved_minutes | No | Estimated minutes saved (>= 0) | |
| context_document_id | No | Agent Context document ObjectId for attach_context/detach_context. | |
| showcase_example_id | No | Showcase example id to remove (for remove_showcase_example action) | |
| context_document_ids | No | Agent Context document ObjectIds to attach to the workflow (max enforced by the agent_context domain). Replaces the existing set when provided. | |
| industry_tags_filter | No | Comma-separated industry tag names to filter by (for search_public) | |
| default_export_target | No | Default export target: mcp or rest | |
| exclude_private_tools | No | If true, omit private tools from fetch_tools results | |
| remixed_from_skill_id | No | Source skill ID when creating a remix | |
| include_published_only | No | For fetch_existing: only return skills that have been published | |
| expected_draft_revision | No | Required optimistic concurrency token for update, publish, delete, attach/detach, showcase, and restore actions. | |
| remixed_from_skill_name | No | Source skill name when creating a remix |