flow_upload
Upload and attach text-based files like plans, notes, or design documents to a development flow, making them visible to other agents.
Instructions
Upload a file as an attachment to the current flow. Use this to attach markdown documents, text notes, HTML docs, or other text-based files. The file will be visible in the DevFlow UI and accessible to other agents.
Common use cases:
Upload implementation plans as .md files (use kind="plan" to link it to the flow)
Attach analysis notes or design documents (kind="design" or "notes")
Save code review summaries (kind="summary")
Document architectural decisions (kind="decision" — can be promoted to ADR via adr_accept)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| flowId | No | The flow ID to attach the file to. If omitted, uses the current flow. | |
| filename | Yes | The filename (e.g. "implementation-plan.md", "notes.txt", "spec.html") | |
| content | Yes | The file content as a string | |
| kind | No | Optional classification. kind="plan" also links the file as the flow's implementation plan. |