get-provenance
What it does
Section titled “What it does”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.
| Parameter | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The Mistflow project ID |
feature | string | No | Filter by a specific feature name |
Output
Section titled “Output”{ "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.