Usage
pflow guide shows the same entry content as pflow --help — a capability map with commands and available topics.
With topics, it returns tailored content for building workflows using those specific nodes or features. Topics and workflow references can mix freely.
Topics
Core:core— Framework fundamentals: step order vs templates, input declaration, node selection, development loop
http— HTTP requests to REST APIsllm— LLM inference with structured outputcode— Python data transformationshell— Shell commands and CLI toolsfile— File read/writemcp— MCP service integrations
batch— Same operation on multiple items (parallel/concurrent)branching— Conditional paths via on-error or code routingsub-workflows— Reusable sub-workflow composition
Workflow-scoped mode
When given a workflow file path or saved workflow name,pflow guide parses the workflow and auto-loads guide content for every node type and feature it uses:
pflow guide ./it.pflow.md to get exactly the content needed to understand it.
Design
core is an explicit topic, not auto-included. Agents load it once at the start of a session, then load node/feature topics as needed without duplicating framework fundamentals.
Guide prose lives in static markdown files under src/pflow/guide/. Node topics additionally include a dynamic Parameters/Outputs section loaded from the registry at render time, keeping interface documentation in sync with actual node implementations.
