ecosystem_index_diff_latest
Retrieve the latest index diff snapshot for your project, showing new, reactivated, deactivated, stale, and archived counts along with a markdown summary. Returns success with diff data or a message if no diffs exist.
Instructions
Fetch the latest IndexDiff snapshot for the current project.
Maps to GET /api/ecosystem/index_diffs/latest. Returns the most
recent diff row produced by a real ecosystem_index_update
(dry_run=False) run. Dry-run previews are not persisted and therefore
never appear here.
Returns:
Diff available: {success: True, diff: {id, diff_type, new_count, reactivated_count, deactivated_count, stale_count, archived_count, markdown_summary, alerted, generated_at}}.
No diffs yet (fresh project): {success: True, diff: None, message: 'No index diffs found yet.'}.
Legacy/unbuilt API: {success: False, error: 'P0.4 will implement', detail} (returned when the endpoint
answers 404).
Other failure: {success: False, error, detail}.
success semantics: True = call completed (diff may be None
when the project has never run a non-dry index_update);
False = API/endpoint error. The API field is diff — older
internal references to index_diff are obsolete.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||