mureo_state_report_set
Persist a structured analysis report (daily, weekly, or goal) into STATE.json to update the dashboard without re-running the agent. Accepts report kind and free-form summary with metrics and narrative.
Instructions
Atomically persist a structured analysis report summary into STATE.json's reports section so the read-only configure dashboard can render the latest daily / weekly / goal report without re-running the agent. report selects the kind (daily / weekly / goal); summary is a free-form object — by convention generated_at (ISO 8601), period, kpis (per-platform / totals headline numbers), flags (notable items), narrative (short text). Other report kinds are preserved. Best-effort: a skill should skip this silently where the context MCP is unavailable. Returns the updated state document.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| report | Yes | Report kind: ``daily`` (daily-check), ``weekly`` (weekly-report), or ``goal`` (goal-review). | |
| summary | Yes | Free-form summary object. Convention: generated_at (ISO 8601), period, kpis (per-platform / totals headline numbers), flags (list of notable items), narrative (short text). | |
| path | No | Optional path to the file. Defaults to STRATEGY.md / STATE.json in the MCP server's current working directory. Paths outside cwd are refused. |