Skip to content

get-provenance

Queries the Mistflow API for provenance data: a record of which prompt/step created which files and features. Useful for understanding the history of a project.

ParameterTypeRequiredDescription
projectIdstringYesThe Mistflow project ID
featurestringNoFilter by a specific feature name
{
"entries": [
{
"step": 2,
"feature": "Standup Form",
"prompt": "Build the submission form component",
"files": ["src/components/StandupForm.tsx", "src/styles/form.css"],
"timestamp": "2026-03-06T10:30:00Z"
}
]
}
  • Provenance is recorded automatically by implement-step.
  • Visible in the Mistflow dashboard under each project’s detail page.
  • The AI uses provenance to understand what already exists before making changes.