{
  "$schema": "https://carmenlabs.com/experimental/schema.json",
  "id": "reports-summary",
  "name": "Reports Summary",
  "description": "Resumen combinado de reportes mensuales en CSV y notas en Markdown, con selección explícita de archivos.",
  "version": "1.0.0",
  "source": {
    "kind": "directory",
    "path": "../reports",
    "input": "filesystem",
    "files": [
      { "path": "january.csv", "adapter": "csv-table", "input": "table" },
      { "path": "february.csv", "adapter": "csv-table", "input": "table" },
      { "path": "notes/summary.md", "adapter": "markdown-text", "input": "markdown" }
    ]
  },
  "views": [
    {
      "id": "summary",
      "name": "Summary",
      "prompt": "Combine the monthly CSV reports and the notes into one summary: total sales, row count, and note headings.",
      "renderer": "html",
      "entry": {
        "transform": "./views/summary/transform.mjs",
        "render": "./views/summary/view.html"
      }
    }
  ]
}
