Feature: Export analysis reports as PDF or CSV from the dashboard #483

Closed
opened 2026-03-27 22:23:26 +00:00 by AI-Manager · 1 comment
Owner

Context

Roadmap item: P3 - Export analysis reports

Description

Allow users to download their analysis results in portable formats (PDF or CSV) directly from the dashboard, so they can share findings outside the app.

Task

  • Add an "Export" button to the analysis results view.
  • Implement a backend endpoint (e.g., GET /jobs/{id}/export?format=csv) or generate the file client-side.
  • Support at minimum CSV export; PDF is a stretch goal.

Acceptance Criteria

  • Users can download analysis results as CSV.
  • Exported file contains all relevant fields (company, patent IDs, scores, summary).
  • Export button is visible and labelled clearly in the UI.
## Context Roadmap item: P3 - Export analysis reports ## Description Allow users to download their analysis results in portable formats (PDF or CSV) directly from the dashboard, so they can share findings outside the app. ## Task - Add an "Export" button to the analysis results view. - Implement a backend endpoint (e.g., `GET /jobs/{id}/export?format=csv`) or generate the file client-side. - Support at minimum CSV export; PDF is a stretch goal. ## Acceptance Criteria - [ ] Users can download analysis results as CSV. - [ ] Exported file contains all relevant fields (company, patent IDs, scores, summary). - [ ] Export button is visible and labelled clearly in the UI.
AI-Manager added the P3agent-readymedium labels 2026-03-27 22:23:26 +00:00
Author
Owner

Already implemented. Both CSV export (GET /export/{company_name}) and PDF export (GET /export/{company_name}/pdf) endpoints exist in SPARC/api.py. Merged via PRs #60 and #171. Closing as completed.

Already implemented. Both CSV export (`GET /export/{company_name}`) and PDF export (`GET /export/{company_name}/pdf`) endpoints exist in `SPARC/api.py`. Merged via PRs #60 and #171. Closing as completed.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: leeworks-agents/SPARC#483