All files / src/generators/pipeline analysis-stage.ts

98.33% Statements 236/240
80.12% Branches 125/156
100% Functions 59/59
99.56% Lines 228/229

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542                                                                                                                                                                    7x                           83x                                     216x 216x                 24x                 22x                                                                                           7x                                                                                                                                                                                                           64x 64x 146x 141x     64x 64x 4x   60x 24x 1x                               129x                                     205x                   137x 137x                                       8x 8x 8x 8x 8x         8x                                                                           6x 6x 6x 6x                                                             5x 5x 5x     5x       7x         5x                             7x 7x                                   5x 5x 5x   5x       25x   5x                                                                 7x 7x 7x                           5x 5x 5x             5x       3x         5x                                                 5x 5x 5x   5x 5x 6x 6x 6x 6x 6x   12x 12x 12x           5x                                                 5x 5x 5x   5x 5x 6x 6x 6x 6x 6x 6x 6x         5x                                                 11x               11x     11x 3x                       11x 11x 3x                       11x 11x 3x                         11x     11x       9x         11x                                                           5x 5x 5x 35x     35x     5x     35x       5x                                                 5x 5x 5x   5x                               5x                 5x                   5x                     5x               5x                     10x 5x 5x 5x             15x                                         5x 5x 5x             5x         6x         5x                           6x                                 5x 5x     5x 5x 3x                       5x 3x                       5x 2x                         5x                   5x                 5x                       36x 36x 36x 36x 36x     360x     36x                                                                   11x 11x 33x                   11x     33x     11x                                                           7x 7x       7x     7x                                                                 5x   5x     5x 5x     4x     5x                                                               5x 5x   5x     5x                                                   7x                                               7x   7x   7x   7x     7x                                           7x                                           7x                                                                                       146x 146x 146x     146x 146x   146x 5x 5x                   141x 141x 141x 141x 141x 141x 141x 1x 136x                 5x 5x 5x 5x                                                                                           66x     66x 2x         64x   64x 64x 64x   64x 1x 1x 1x 1x     64x     64x 64x 146x               146x     64x 64x 64x 395x     64x                       64x 64x   64x 1x 1x 1x 1x     1x     64x 146x 141x   64x 146x     64x                
// SPDX-FileCopyrightText: 2024-2026 Hack23 AB
// SPDX-License-Identifier: Apache-2.0
 
/**
 * @module Generators/Pipeline/AnalysisStage
 * @description Analysis-first pre-generation pipeline stage.
 *
 * Executes between the Fetch and Generate stages, consuming already-fetched
 * European Parliament data and running the full suite of political intelligence
 * analysis methods.  Produces structured markdown analysis files that article
 * generation strategies then consume to produce higher-quality, deeply-analysed
 * news articles in all 14 languages.
 *
 * This stage is **side-effect-only**: it writes analysis markdown and a
 * `manifest.json` to disk under `analysis-output/{date}/`.  The returned
 * {@link AnalysisContext} is informational and currently not consumed by the
 * generate stage; strategies read the analysis output from disk instead.
 * Analysis artifacts are committed to the repository for review and
 * political intelligence improvement.
 *
 * Analysis methods are grouped into four categories:
 * - **Classification** (Issues #804): significance, impact-matrix, actor-mapping, forces
 * - **Threat Assessment** (Issues #805): political-stride, actor-threat, consequence-trees, disruption
 * - **Risk Scoring** (Issues #806): risk-matrix, capital-risk, quantitative-swot, velocity-risk, agent-workflow
 * - **Existing** (current codebase): deep-analysis, stakeholder-analysis, coalition-analysis, voting-patterns, cross-session-intelligence
 *
 * Each method writes a markdown file; failures are isolated so other methods
 * can continue.  A {@link AnalysisManifest} JSON file is written at the end.
 *
 * @example
 * ```ts
 * const ctx = await runAnalysisStage(fetchedData, {
 *   articleTypes: [ArticleCategory.WEEK_AHEAD],
 *   date: '2026-03-26',
 *   outputDir: 'analysis-output',
 * });
 * console.log(ctx.completedMethods);
 * ```
 */
 
import fs from 'fs';
import path from 'path';
import { randomUUID } from 'crypto';
import { ArticleCategory } from '../../types/index.js';
import type { ConfidenceLevel } from '../../types/index.js';
import type { ClassificationInput } from '../../types/political-classification.js';
import type { ThreatAssessmentInput } from '../../types/political-threats.js';
import {
  detectVotingTrends,
  computeCrossSessionCoalitionStability,
  buildDefaultStakeholderPerspectives,
  buildStakeholderOutcomeMatrix,
} from '../../utils/intelligence-analysis.js';
import {
  assessPoliticalSignificance,
  buildImpactMatrix,
  classifyPoliticalActors,
  analyzePoliticalForces,
} from '../../utils/political-classification.js';
import {
  assessPoliticalThreats,
  buildActorThreatProfiles,
  buildConsequenceTree,
  analyzeLegislativeDisruption,
  generateThreatAssessmentMarkdown,
} from '../../utils/political-threat-assessment.js';
import {
  assessLegislativeVelocityRisk,
  runAgentRiskAssessment,
  generateRiskAssessmentMarkdown,
  calculatePoliticalRiskScore,
  assessPoliticalCapitalAtRisk,
  buildQuantitativeSWOT,
  createScoredSWOTItem,
  createScoredOpportunityOrThreat,
  createRiskDriver,
} from '../../utils/political-risk-assessment.js';
import { ensureDirectoryExists, atomicWrite } from '../../utils/file-utils.js';
 
// ─── Markdown constants ───────────────────────────────────────────────────────
 
/** Empty table row placeholder for 6-column tables */
const EMPTY_TABLE_ROW_6 = '| — | — | — | — | — | — |';
 
// ─── Sanitization helpers ─────────────────────────────────────────────────────
 
/**
 * Sanitize untrusted text for safe use in a Markdown table cell.
 *
 * Escapes pipe characters, backslashes, and HTML entities, then normalizes
 * whitespace to prevent table layout corruption from external MCP data.
 *
 * @param input - Untrusted cell text
 * @returns Sanitized text safe for Markdown table cells
 */
function sanitizeCell(input: string): string {
  return input
    .replace(/\\/g, '\\\\')
    .replace(/\|/g, '\\|')
    .replace(/&/g, '&')
    .replace(/</g, '&lt;')
    .replace(/>/g, '&gt;')
    .replace(/[\r\n]+/g, ' ')
    .trim();
}
 
// ─── Data coercion helpers ────────────────────────────────────────────────────
 
/**
 * Safely extract an array from fetchedData by key.
 * @param data - Raw fetched data record
 * @param key - Key to extract
 * @returns Array or empty array if missing/invalid
 */
function safeArr(data: Record<string, unknown>, key: string): readonly unknown[] {
  const val = data[key]; // eslint-disable-line security/detect-object-injection -- key is a literal string from caller
  return Array.isArray(val) ? val : [];
}
 
/**
 * Cast fetchedData to ClassificationInput for the classification functions.
 * @param data - Raw fetched data record
 * @returns ClassificationInput-compatible object
 */
function toClassificationInput(data: Record<string, unknown>): ClassificationInput {
  return data as ClassificationInput;
}
 
/**
 * Cast fetchedData to ThreatAssessmentInput for the threat assessment functions.
 * @param data - Raw fetched data record
 * @returns ThreatAssessmentInput-compatible object
 */
function toThreatInput(data: Record<string, unknown>): ThreatAssessmentInput {
  return {
    votingRecords: safeArr(data, 'votingRecords'),
    coalitionData: safeArr(data, 'coalitions'),
    mepInfluence: safeArr(data, 'mepUpdates'),
    procedures: safeArr(data, 'procedures'),
    anomalies: safeArr(data, 'anomalies'),
    questions: safeArr(data, 'questions'),
  };
}
 
// ─── Analysis Method type ─────────────────────────────────────────────────────
 
/**
 * All analysis methods supported by the analysis pipeline stage.
 *
 * Methods prefixed with a group label:
 * - Classification (#804): significance-classification, impact-matrix, actor-mapping, forces-analysis
 * - Threat Assessment (#805): political-stride, actor-threat-profiling, consequence-trees, legislative-disruption
 * - Risk Scoring (#806): risk-matrix, political-capital-risk, quantitative-swot, legislative-velocity-risk, agent-risk-workflow
 * - Existing: deep-analysis, stakeholder-analysis, coalition-analysis, voting-patterns, cross-session-intelligence
 */
export type AnalysisMethod =
  // Classification (Issue #804)
  | 'significance-classification'
  | 'impact-matrix'
  | 'actor-mapping'
  | 'forces-analysis'
  // Threat Assessment (Issue #805)
  | 'political-stride'
  | 'actor-threat-profiling'
  | 'consequence-trees'
  | 'legislative-disruption'
  // Risk Scoring (Issue #806)
  | 'risk-matrix'
  | 'political-capital-risk'
  | 'quantitative-swot'
  | 'legislative-velocity-risk'
  | 'agent-risk-workflow'
  // Existing analysis methods
  | 'deep-analysis'
  | 'stakeholder-analysis'
  | 'coalition-analysis'
  | 'voting-patterns'
  | 'cross-session-intelligence';
 
/** All analysis methods in default execution order */
export const ALL_ANALYSIS_METHODS: readonly AnalysisMethod[] = [
  // Classification
  'significance-classification',
  'impact-matrix',
  'actor-mapping',
  'forces-analysis',
  // Threat Assessment
  'political-stride',
  'actor-threat-profiling',
  'consequence-trees',
  'legislative-disruption',
  // Risk Scoring
  'risk-matrix',
  'political-capital-risk',
  'quantitative-swot',
  'legislative-velocity-risk',
  'agent-risk-workflow',
  // Existing
  'deep-analysis',
  'stakeholder-analysis',
  'coalition-analysis',
  'voting-patterns',
  'cross-session-intelligence',
] as const;
 
// ─── Interfaces ───────────────────────────────────────────────────────────────
 
/** Configuration for the analysis pipeline stage */
export interface AnalysisStageOptions {
  /** Article categories to analyse */
  readonly articleTypes: readonly ArticleCategory[];
  /** ISO date string (YYYY-MM-DD) for this analysis run */
  readonly date: string;
  /** Base output directory (e.g. 'analysis-output') */
  readonly outputDir: string;
  /** Which methods to run; defaults to {@link ALL_ANALYSIS_METHODS} */
  readonly enabledMethods?: readonly AnalysisMethod[];
  /** When true, skip already-completed methods from a prior run on the same date */
  readonly skipCompleted?: boolean;
  /** Emit verbose progress messages to stdout */
  readonly verbose?: boolean;
}
 
/** Status record written into the manifest for each method */
export interface AnalysisMethodStatus {
  /** The analysis method */
  readonly method: AnalysisMethod;
  /** Whether the method completed, was skipped, or failed */
  readonly status: 'completed' | 'skipped' | 'failed';
  /** Path to the markdown output file */
  readonly outputFile: string;
  /** Confidence level of the result */
  readonly confidence: ConfidenceLevel;
  /** Wall-clock duration in milliseconds */
  readonly duration: number;
  /** One-line human-readable summary */
  readonly summary: string;
}
 
/** Metadata record written to manifest.json for each analysis run */
export interface AnalysisManifest {
  /** Unique identifier for this analysis run */
  readonly runId: string;
  /** ISO date of the analysis */
  readonly date: string;
  /** ISO 8601 start timestamp */
  readonly startTime: string;
  /** ISO 8601 end timestamp */
  readonly endTime: string;
  /** Article types included in this run */
  readonly articleTypes: readonly ArticleCategory[];
  /** Per-method status entries */
  readonly methods: readonly AnalysisMethodStatus[];
  /** Aggregated confidence across all completed methods */
  readonly overallConfidence: ConfidenceLevel;
  /** Data source identifiers used during the run */
  readonly dataSourcesUsed: readonly string[];
}
 
/** Result context passed from the analysis stage to article generation strategies */
export interface AnalysisContext {
  /** ISO date of the analysis */
  readonly date: string;
  /** Absolute path to the date-scoped output directory */
  readonly outputDir: string;
  /** Methods that completed successfully or were skipped */
  readonly completedMethods: readonly AnalysisMethod[];
  /** Detailed results keyed by method */
  readonly results: ReadonlyMap<AnalysisMethod, AnalysisMethodStatus>;
  /** Manifest written to disk */
  readonly manifest: AnalysisManifest;
}
 
// ─── Internal helpers ─────────────────────────────────────────────────────────
 
/**
 * Determine the aggregated confidence level from a set of individual results.
 *
 * @param results - Method results to aggregate
 * @returns Aggregated confidence level
 */
function aggregateConfidence(results: AnalysisMethodStatus[]): ConfidenceLevel {
  const counts = { high: 0, medium: 0, low: 0 };
  for (const r of results) {
    if (r.status === 'completed' || r.status === 'skipped') {
      counts[r.confidence]++;
    }
  }
  const total = counts.high + counts.medium + counts.low;
  if (total === 0) {
    return 'low';
  }
  if (counts.high >= counts.medium && counts.high >= counts.low) return 'high';
  if (counts.medium >= counts.low) return 'medium';
  return 'low';
}
 
/**
 * Build a YAML-frontmatter header block for analysis markdown files.
 *
 * @param method - Analysis method identifier
 * @param date - ISO date of the analysis
 * @param confidence - Confidence level for this result
 * @returns Markdown frontmatter string
 */
function buildMarkdownHeader(
  method: AnalysisMethod,
  date: string,
  confidence: ConfidenceLevel
): string {
  return `---
method: ${method}
date: ${date}
confidence: ${confidence}
generated: ${new Date().toISOString()}
---
 
`;
}
 
/**
 * Write a text file to disk.
 *
 * Used for both analysis markdown files and the analysis `manifest.json`.
 *
 * @param filePath - Absolute file path
 * @param content - File content as a UTF-8 string
 */
function writeTextFile(filePath: string, content: string): void {
  atomicWrite(filePath, content);
}
 
/**
 * Check whether a method's output file already exists (for incremental runs).
 *
 * @param filePath - Absolute file path
 * @returns true when the file exists and is non-empty
 */
function methodOutputExists(filePath: string): boolean {
  try {
    return fs.existsSync(filePath) && fs.statSync(filePath).size > 0;
  } catch {
    return false;
  }
}
 
// ─── Per-method markdown builders ────────────────────────────────────────────
 
/**
 * Build markdown for the significance classification method.
 * Scores and ranks legislative items by political significance.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildSignificanceClassificationMarkdown(
  fetchedData: Record<string, unknown>,
  date: string
): string {
  const input = toClassificationInput(fetchedData);
  const significance = assessPoliticalSignificance(input);
  const events = safeArr(fetchedData, 'events');
  const docs = safeArr(fetchedData, 'documents');
  const header = buildMarkdownHeader(
    'significance-classification',
    date,
    significance === 'routine' ? 'medium' : 'high'
  );
  return (
    header +
    `# Political Significance Classification
 
## Overall Significance: **${significance.toUpperCase()}**
 
## Overview
Analysis of political significance across ${events.length} events and ${docs.length} documents.
 
## Classification Framework
| Level | Criteria | Items |
|-------|----------|-------|
| Historic | Constitutional changes, treaty amendments | — |
| Critical | Major legislative votes, treaty changes | — |
| Significant | Key committee decisions, important resolutions | — |
| Notable | Procedural votes, routine legislation | — |
| Routine | Administrative matters | — |
 
## Significance Assessment
- **Computed significance**: ${significance}
- **Data points analysed**: ${events.length + docs.length}
- **Date**: ${date}
- **Method**: Political significance scoring via 5-signal model (volume, controversy, pipeline, anomalies, coalition)
 
## Key Findings
${events.length === 0 && docs.length === 0 ? '- No data available for significance assessment' : `- ${events.length} events and ${docs.length} documents assessed\n- Overall political significance: **${significance}**`}
`
  );
}
 
/**
 * Build markdown for the impact matrix method.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildImpactMatrixMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const input = toClassificationInput(fetchedData);
  const matrix = buildImpactMatrix(input);
  const header = buildMarkdownHeader('impact-matrix', date, 'medium');
  return (
    header +
    `# Political Impact Matrix
 
## Overall Significance: **${matrix.overallSignificance.toUpperCase()}**
 
## Impact Dimensions
| Dimension | Level | Description |
|-----------|-------|-------------|
| Legislative | ${matrix.legislativeImpact} | Effect on legislation and regulatory framework |
| Coalition | ${matrix.coalitionImpact} | Effect on political alliances and group dynamics |
| Public Opinion | ${matrix.publicOpinionImpact} | Effect on citizen perception and media coverage |
| Institutional | ${matrix.institutionalImpact} | Effect on EU institutional balance |
| Economic | ${matrix.economicImpact} | Economic policy implications |
 
## Assessment Summary
- **Overall significance**: ${matrix.overallSignificance}
- **Date**: ${date}
- **Method**: Multi-dimensional impact assessment (5 axes)
`
  );
}
 
/**
 * Build markdown for the actor mapping method.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildActorMappingMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const input = toClassificationInput(fetchedData);
  const actors = classifyPoliticalActors(input);
  const header = buildMarkdownHeader('actor-mapping', date, actors.length > 0 ? 'medium' : 'low');
 
  const actorRows =
    actors.length > 0
      ? actors
          .map(
            (a) =>
              `| ${sanitizeCell(a.name)} | ${sanitizeCell(a.actorType)} | ${sanitizeCell(String(a.influence))} | ${sanitizeCell(a.position)} | ${sanitizeCell(a.role)} |`
          )
          .join('\n')
      : '| — | — | — | — | — |';
 
  return (
    header +
    `# Political Actor Mapping
 
## Overview
Identified ${actors.length} political actors from parliamentary data.
 
## Actor Classification
| Actor | Type | Influence | Position | Role |
|-------|------|-----------|----------|------|
${actorRows}
 
## Actor Type Distribution
${
  actors.length > 0
    ? [...new Set(actors.map((a) => a.actorType))]
        .map((t) => `- **${t}**: ${actors.filter((a) => a.actorType === t).length} actors`)
        .join('\n')
    : '- No actors classified'
}
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for the political forces analysis method.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildForcesAnalysisMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const input = toClassificationInput(fetchedData);
  const forces = analyzePoliticalForces(input);
  const header = buildMarkdownHeader('forces-analysis', date, 'medium');
 
  const forceRow = (
    name: string,
    f: { strength: number; trend: string; keyActors: readonly string[]; confidence: string }
  ) =>
    `| ${name} | ${f.trend} | ${(f.strength * 100).toFixed(0)}% | ${f.keyActors.length > 0 ? f.keyActors.join(', ') : '—'} | ${f.confidence} |`;
 
  return (
    header +
    `# Political Forces Analysis
 
## Overview
Analysis of competing political forces shaping the current legislative agenda.
 
## Political Forces Assessment
| Force | Trend | Strength | Key Actors | Confidence |
|-------|-------|----------|------------|------------|
${forceRow('Coalition Power', forces.coalitionPower)}
${forceRow('Opposition Power', forces.oppositionPower)}
${forceRow('Institutional Barriers', forces.institutionalBarriers)}
${forceRow('Public Pressure', forces.publicPressure)}
${forceRow('External Influences', forces.externalInfluences)}
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for the political STRIDE threat assessment.
 *
 * Uses the pipeline `date` parameter to ensure the assessment date in the
 * generated markdown matches the `analysis-output/{date}/` folder, overriding
 * the `new Date()` timestamp that `assessPoliticalThreats()` stamps internally.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date (used to override assessment date for consistency)
 * @returns Markdown content string
 */
function buildPoliticalStrideMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const input = toThreatInput(fetchedData);
  const assessment = assessPoliticalThreats(input);
  return generateThreatAssessmentMarkdown({ ...assessment, date });
}
 
/**
 * Build markdown for actor threat profiling.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildActorThreatProfilingMarkdown(
  fetchedData: Record<string, unknown>,
  date: string
): string {
  const input = toThreatInput(fetchedData);
  const profiles = buildActorThreatProfiles(input);
  const header = buildMarkdownHeader(
    'actor-threat-profiling',
    date,
    profiles.length > 0 ? 'medium' : 'low'
  );
 
  const profileRows =
    profiles.length > 0
      ? profiles
          .map(
            (p) =>
              `| ${p.actor} | ${p.actorType} | ${p.capability} | ${p.motivation} | ${p.opportunity} | ${p.overallThreatLevel} |`
          )
          .join('\n')
      : EMPTY_TABLE_ROW_6;
 
  return (
    header +
    `# Actor Threat Profiles
 
## Overview
Individual threat profiles for ${profiles.length} political actors.
 
## Actor Threat Matrix
| Actor | Type | Capability | Motivation | Opportunity | Threat Level |
|-------|------|------------|------------|-------------|--------------|
${profileRows}
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for consequence tree analysis.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildConsequenceTreesMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const input = toThreatInput(fetchedData);
  const procedures = safeArr(fetchedData, 'procedures');
  const header = buildMarkdownHeader('consequence-trees', date, 'medium');
 
  const trees: string[] = [];
  for (const raw of procedures.slice(0, 5)) {
    const proc = raw && typeof raw === 'object' ? (raw as Record<string, unknown>) : null;
    const title = proc ? String(proc['title'] ?? '') : '';
    Iif (!title) continue;
    const tree = buildConsequenceTree(title, input);
    trees.push(
      `### ${title}\n` +
        `- **Immediate**: ${tree.immediateConsequences.map((c) => c.description).join('; ') || 'No immediate consequences identified'}\n` +
        `- **Secondary**: ${tree.secondaryEffects.map((c) => c.description).join('; ') || 'No secondary effects identified'}\n` +
        `- **Long-term**: ${tree.longTermImplications.map((c) => c.description).join('; ') || 'No long-term implications identified'}\n` +
        `- **Mitigating factors**: ${tree.mitigatingFactors.join(', ') || '—'}\n` +
        `- **Amplifying factors**: ${tree.amplifyingFactors.join(', ') || '—'}`
    );
  }
 
  return (
    header +
    `# Consequence Tree Analysis
 
## Overview
Structured analysis of action-consequence chains for ${Math.min(procedures.length, 5)} legislative procedures.
 
${trees.length > 0 ? trees.join('\n\n') : '## No procedures available for consequence analysis'}
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for legislative disruption analysis.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildLegislativeDisruptionMarkdown(
  fetchedData: Record<string, unknown>,
  date: string
): string {
  const input = toThreatInput(fetchedData);
  const procedures = safeArr(fetchedData, 'procedures');
  const header = buildMarkdownHeader('legislative-disruption', date, 'medium');
 
  const disruptions: string[] = [];
  for (const raw of procedures.slice(0, 5)) {
    const proc = raw && typeof raw === 'object' ? (raw as Record<string, unknown>) : null;
    const id = proc ? String(proc['procedureId'] ?? proc['id'] ?? '') : '';
    const title = proc ? String(proc['title'] ?? '') : '';
    Iif (!id || !title) continue;
    const analysis = analyzeLegislativeDisruption(id, input);
    const disruptionCount = analysis.disruptionPoints.length;
    disruptions.push(
      `| ${sanitizeCell(id)} | ${sanitizeCell(title.slice(0, 50))} | ${sanitizeCell(analysis.currentStage)} | ${sanitizeCell(analysis.resilience)} | ${disruptionCount} |`
    );
  }
 
  return (
    header +
    `# Legislative Disruption Analysis
 
## Overview
Identification of factors disrupting the normal legislative process.
 
## Disruption Assessment
| Procedure ID | Title | Stage | Resilience | Disruption Points |
|-------------|-------|-------|-----------|-------------------|
${disruptions.length > 0 ? disruptions.join('\n') : '| — | — | — | — | — |'}
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for the risk scoring matrix.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildRiskMatrixMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const procedures = safeArr(fetchedData, 'procedures');
  const risks: Array<{
    riskId: string;
    description: string;
    riskScore: number;
    riskLevel: string;
    likelihood: string;
    impact: string;
  }> = [];
 
  // Generate risk scores for identifiable political risks from data
  if (procedures.length > 0) {
    risks.push(
      calculatePoliticalRiskScore(
        'possible',
        'moderate',
        'RISK-001',
        'Legislative blockage risk from procedure backlog',
        [`${procedures.length} procedures in pipeline`],
        ['Established committee procedures'],
        'medium'
      )
    );
  }
  const coalitions = safeArr(fetchedData, 'coalitions');
  if (coalitions.length > 0) {
    risks.push(
      calculatePoliticalRiskScore(
        'unlikely',
        'major',
        'RISK-002',
        'Coalition instability risk',
        [`${coalitions.length} coalition data points`],
        ['Established political group structures'],
        'medium'
      )
    );
  }
  const anomalies = safeArr(fetchedData, 'anomalies');
  if (anomalies.length > 0) {
    risks.push(
      calculatePoliticalRiskScore(
        'possible',
        'moderate',
        'RISK-003',
        'Voting pattern anomaly risk',
        [`${anomalies.length} anomalies detected`],
        [],
        'medium'
      )
    );
  }
 
  const header = buildMarkdownHeader('risk-matrix', date, risks.length > 0 ? 'medium' : 'low');
 
  const riskRows =
    risks.length > 0
      ? risks
          .map(
            (r) =>
              `| ${r.riskId} | ${r.description} | ${r.likelihood} | ${r.impact} | ${r.riskScore} | ${r.riskLevel} |`
          )
          .join('\n')
      : EMPTY_TABLE_ROW_6;
 
  return (
    header +
    `# Political Risk Scoring Matrix
 
## Overview
Quantitative risk scoring across ${risks.length} identified political dimensions.
 
## Risk Matrix
| Risk ID | Description | Likelihood | Impact | Score | Level |
|---------|-------------|------------|--------|-------|-------|
${riskRows}
 
> Risk Score = Likelihood × Impact. Levels: LOW (≤1.0), MEDIUM (≤2.0), HIGH (≤3.5), CRITICAL (>3.5)
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for political capital at risk analysis.
 *
 * @param _fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildPoliticalCapitalRiskMarkdown(
  _fetchedData: Record<string, unknown>,
  date: string
): string {
  const header = buildMarkdownHeader('political-capital-risk', date, 'medium');
  const groups = ['EPP', 'S&D', 'Renew', 'Greens/EFA', 'ECR', 'ID', 'The Left'];
  const capitalAssessments = groups.map((g) => {
    const drivers = [
      createRiskDriver(`Legislative activity for ${g}`, 'internal_dissent', 10, 'stable'),
    ];
    return assessPoliticalCapitalAtRisk(g, 'political_group', 70, drivers, 'quarter', 95);
  });
 
  const rows = capitalAssessments
    .map(
      (a) =>
        `| ${a.actor} | ${a.currentCapital} | ${a.capitalAtRisk.toFixed(1)} | ${a.timeHorizon} | ${a.riskDrivers.length} drivers |`
    )
    .join('\n');
 
  return (
    header +
    `# Political Capital at Risk
 
## Overview
Assessment of political capital at stake for major political groups (${date}).
 
## Capital at Risk by Political Group
| Actor/Group | Capital (0-100) | At Risk | Time Horizon | Risk Drivers |
|-------------|----------------|---------|--------------|--------------|
${rows}
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for the quantitative SWOT analysis.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildQuantitativeSwotMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const header = buildMarkdownHeader('quantitative-swot', date, 'medium');
  const events = safeArr(fetchedData, 'events');
  const procedures = safeArr(fetchedData, 'procedures');
 
  const strengths = [
    createScoredSWOTItem(
      'Established democratic institutions and procedures',
      4,
      ['Treaty-based institutional framework'],
      'high',
      'stable'
    ),
    createScoredSWOTItem(
      `Active legislative pipeline with ${procedures.length} procedures`,
      Math.min(procedures.length / 5, 5),
      [`${procedures.length} procedures tracked`],
      'medium',
      'stable'
    ),
  ];
  const weaknesses = [
    createScoredSWOTItem(
      'Complex multi-stakeholder decision-making',
      3,
      ['27 member states, 7 political groups'],
      'high',
      'stable'
    ),
  ];
  const opportunities = [
    createScoredOpportunityOrThreat(
      `${events.length} upcoming parliamentary events`,
      'likely',
      'moderate',
      [`${events.length} events scheduled`],
      'medium',
      'stable'
    ),
  ];
  const threats = [
    createScoredOpportunityOrThreat(
      'External geopolitical pressures',
      'possible',
      'major',
      ['Global political dynamics'],
      'medium',
      'stable'
    ),
  ];
 
  const swot = buildQuantitativeSWOT(
    `Political SWOT Assessment ${date}`,
    strengths,
    weaknesses,
    opportunities,
    threats
  );
 
  return (
    header +
    `# Quantitative SWOT Analysis
 
## Strategic Position Score: ${swot.strategicPositionScore.toFixed(1)}/10
 
## Assessment: ${swot.overallAssessment}
 
## SWOT Matrix
| Category | Items | Avg Score | Trend |
|----------|-------|-----------|-------|
| Strengths | ${swot.strengths.length} | ${swot.strengths.length > 0 ? (swot.strengths.reduce((s, i) => s + i.score, 0) / swot.strengths.length).toFixed(1) : '—'} | ${swot.strengths[0]?.trend ?? '—'} |
| Weaknesses | ${swot.weaknesses.length} | ${swot.weaknesses.length > 0 ? (swot.weaknesses.reduce((s, i) => s + i.score, 0) / swot.weaknesses.length).toFixed(1) : '—'} | ${swot.weaknesses[0]?.trend ?? '—'} |
| Opportunities | ${swot.opportunities.length} | ${swot.opportunities.length > 0 ? (swot.opportunities.reduce((s, i) => s + i.score, 0) / swot.opportunities.length).toFixed(1) : '—'} | ${swot.opportunities[0]?.trend ?? '—'} |
| Threats | ${swot.threats.length} | ${swot.threats.length > 0 ? (swot.threats.reduce((s, i) => s + i.score, 0) / swot.threats.length).toFixed(1) : '—'} | ${swot.threats[0]?.trend ?? '—'} |
 
## Cross-Impact Matrix
${
  swot.crossImpactMatrix.length > 0
    ? swot.crossImpactMatrix
        .slice(0, 5)
        .map((e) => `- ${e.rationale} (net effect: ${e.netEffect.toFixed(2)})`)
        .join('\n')
    : '- No cross-impacts identified'
}
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for legislative velocity risk analysis.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildLegislativeVelocityRiskMarkdown(
  fetchedData: Record<string, unknown>,
  date: string
): string {
  const procedures = safeArr(fetchedData, 'procedures');
  const velocityRisks = assessLegislativeVelocityRisk(procedures);
  const header = buildMarkdownHeader(
    'legislative-velocity-risk',
    date,
    velocityRisks.length > 0 ? 'medium' : 'low'
  );
 
  const riskRows =
    velocityRisks.length > 0
      ? velocityRisks
          .slice(0, 10)
          .map(
            (r) =>
              `| ${sanitizeCell(r.procedureId)} | ${sanitizeCell(r.title.slice(0, 40))} | ${sanitizeCell(r.currentStage)} | ${r.daysInCurrentStage}d / ${r.expectedDaysForStage}d | ${r.velocityRisk.riskScore.toFixed(2)} | ${sanitizeCell(r.velocityRisk.riskLevel)} |`
          )
          .join('\n')
      : EMPTY_TABLE_ROW_6;
 
  return (
    header +
    `# Legislative Velocity Risk
 
## Overview
Risk assessment based on legislative processing speed for ${procedures.length} procedures.
 
## Top Velocity Risks
| Procedure | Title | Stage | Days (actual/expected) | Risk Score | Level |
|-----------|-------|-------|----------------------|------------|-------|
${riskRows}
 
## Summary
- **Procedures analysed**: ${procedures.length}
- **High/Critical risks**: ${velocityRisks.filter((r) => r.velocityRisk.riskLevel === 'high' || r.velocityRisk.riskLevel === 'critical').length}
- **Date**: ${date}
`
  );
}
 
/**
 * Build markdown for the agent risk assessment workflow.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildAgentRiskWorkflowMarkdown(
  fetchedData: Record<string, unknown>,
  date: string
): string {
  const procedures = safeArr(fetchedData, 'procedures');
  const coalitions = safeArr(fetchedData, 'coalitions');
 
  // Build identified risks
  const identifiedRisks = [];
  if (procedures.length > 0) {
    identifiedRisks.push(
      calculatePoliticalRiskScore(
        'possible',
        'moderate',
        'RISK-W01',
        'Legislative backlog risk',
        [`${procedures.length} active procedures`],
        ['Committee oversight'],
        'medium'
      )
    );
  }
  if (coalitions.length > 0) {
    identifiedRisks.push(
      calculatePoliticalRiskScore(
        'unlikely',
        'moderate',
        'RISK-W02',
        'Coalition cohesion risk',
        [`${coalitions.length} coalitions monitored`],
        ['Group discipline mechanisms'],
        'medium'
      )
    );
  }
  if (identifiedRisks.length === 0) {
    identifiedRisks.push(
      calculatePoliticalRiskScore(
        'rare',
        'minor',
        'RISK-W00',
        'Baseline political risk',
        ['Routine parliamentary activity'],
        ['Stable institutional framework'],
        'low'
      )
    );
  }
 
  const riskDrivers = [
    createRiskDriver(
      'Legislative pipeline complexity',
      'legislative_delay',
      Math.min(procedures.length * 2, 30),
      'stable'
    ),
    createRiskDriver('Coalition dynamics', 'coalition_fracture', 15, 'stable'),
  ];
 
  const workflow = runAgentRiskAssessment(
    `ASSESS-${date}`,
    date,
    ArticleCategory.WEEK_AHEAD,
    identifiedRisks,
    riskDrivers,
    ['Monitor legislative velocity indicators', 'Track coalition voting patterns']
  );
 
  return generateRiskAssessmentMarkdown(workflow);
}
 
/**
 * Build markdown for the deep multi-perspective analysis.
 * Uses existing `buildDefaultStakeholderPerspectives`.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildDeepAnalysisMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const header = buildMarkdownHeader('deep-analysis', date, 'high');
  const events = Array.isArray(fetchedData['events']) ? fetchedData['events'] : [];
  const topic = `European Parliament activity for ${date}`;
  const perspectives = buildDefaultStakeholderPerspectives(topic);
  const perspectivesText = perspectives
    .map(
      (p) =>
        `### ${p.stakeholder.replace(/_/g, ' ').replace(/\b\w/g, (c) => c.toUpperCase())}\n- **Impact**: ${p.impact}\n- **Severity**: ${p.severity}\n- **Reasoning**: ${p.reasoning}`
    )
    .join('\n\n');
  return (
    header +
    `# Deep Multi-Perspective Analysis
 
## Overview
Comprehensive multi-stakeholder analysis of European Parliament activities.
 
## Scope
- **Events analysed**: ${events.length}
- **Stakeholders covered**: 6 groups
- **Date**: ${date}
 
## Stakeholder Perspectives
${perspectivesText}
 
## Key Findings
- Cross-cutting analysis across all major stakeholder groups completed
- Impact assessments derived from available parliamentary data
`
  );
}
 
/**
 * Build markdown for the stakeholder impact analysis.
 * Uses `buildStakeholderOutcomeMatrix`.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildStakeholderAnalysisMarkdown(
  fetchedData: Record<string, unknown>,
  date: string
): string {
  const header = buildMarkdownHeader('stakeholder-analysis', date, 'high');
  const actions = ['Legislative proceedings', 'Committee activity', 'Plenary decisions'];
  const matrices = actions.map((action) =>
    buildStakeholderOutcomeMatrix(action, {
      political_groups: 0.7,
      civil_society: 0.6,
      industry: 0.5,
      national_govts: 0.6,
      citizens: 0.5,
      eu_institutions: 0.8,
    })
  );
  const tableRows = matrices
    .map(
      (m) =>
        `| ${m.action} | ${m.outcomes['political_groups']} | ${m.outcomes['civil_society']} | ${m.outcomes['industry']} | ${m.outcomes['national_govts']} | ${m.outcomes['citizens']} | ${m.outcomes['eu_institutions']} | ${m.confidence} |`
    )
    .join('\n');
  return (
    header +
    `# Stakeholder Impact Analysis
 
## Overview
Outcome matrix analysis for key parliamentary actions.
 
## Stakeholder Outcome Matrix
| Action | Political Groups | Civil Society | Industry | National Govts | Citizens | EU Institutions | Confidence |
|--------|-----------------|---------------|----------|----------------|----------|-----------------|------------|
${tableRows}
 
## Date: ${date}
- **Data sources used**: ${Object.keys(fetchedData).join(', ')}
`
  );
}
 
/**
 * Build markdown for coalition cohesion analysis.
 * Uses `computeCrossSessionCoalitionStability` to aggregate VotingPattern cohesion.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildCoalitionAnalysisMarkdown(
  fetchedData: Record<string, unknown>,
  date: string
): string {
  const header = buildMarkdownHeader('coalition-analysis', date, 'high');
  const rawPatterns = Array.isArray(fetchedData['patterns']) ? fetchedData['patterns'] : [];
  // VotingPattern[] data doesn't contain the `coalitionId`/`id` fields required
  // by analyzeCoalitionCohesion().  Use computeCrossSessionCoalitionStability()
  // instead — it is designed to aggregate cohesion across VotingPattern arrays.
  const stabilityReport = computeCrossSessionCoalitionStability(
    rawPatterns as Parameters<typeof computeCrossSessionCoalitionStability>[0]
  );
  return (
    header +
    `# Coalition Cohesion Analysis
 
## Overview
Analysis of political group cohesion and coalition dynamics.
 
## Coalition Metrics
- **Overall Stability**: ${(stabilityReport.overallStability * 100).toFixed(1)}%
- **Forecast**: ${stabilityReport.forecast}
- **Patterns Analysed**: ${stabilityReport.patternCount}
 
## Group Analysis
- **Stable Groups**: ${stabilityReport.stableGroups.length > 0 ? stabilityReport.stableGroups.join(', ') : 'No stable groups identified'}
- **Declining Groups**: ${stabilityReport.decliningGroups.length > 0 ? stabilityReport.decliningGroups.join(', ') : 'No declining groups identified'}
 
## Coalition Intelligence
- **Patterns Evaluated**: ${rawPatterns.length}
 
## Date: ${date}
`
  );
}
 
/**
 * Build markdown for voting pattern analysis.
 * Uses `detectVotingTrends`.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildVotingPatternsMarkdown(fetchedData: Record<string, unknown>, date: string): string {
  const header = buildMarkdownHeader('voting-patterns', date, 'high');
  // detectVotingTrends accepts readonly VotingRecord[] — pass raw records directly
  const rawRecords = Array.isArray(fetchedData['votingRecords'])
    ? fetchedData['votingRecords']
    : [];
  const trends = detectVotingTrends(rawRecords as Parameters<typeof detectVotingTrends>[0]);
  const trendsText = trends
    .map(
      (t) =>
        `| ${t.trendId} | ${t.direction} | ${(t.confidence * 100).toFixed(0)}% | ${t.recordCount} records |`
    )
    .join('\n');
  return (
    header +
    `# Voting Pattern Analysis
 
## Overview
Detection and analysis of voting trends across European Parliament proceedings.
 
## Detected Trends
| Trend ID | Direction | Confidence | Data Points |
|----------|-----------|------------|-------------|
${trendsText || '| No trend data available | — | — | — |'}
 
## Summary
- **Trends identified**: ${trends.length}
- **Records analysed**: ${rawRecords.length}
- **Date**: ${date}
`
  );
}
 
/**
 * Build markdown for cross-session intelligence analysis.
 * Uses `computeCrossSessionCoalitionStability`.
 *
 * @param fetchedData - Raw fetched EP data
 * @param date - Analysis date
 * @returns Markdown content string
 */
function buildCrossSessionIntelligenceMarkdown(
  fetchedData: Record<string, unknown>,
  date: string
): string {
  const header = buildMarkdownHeader('cross-session-intelligence', date, 'high');
  const rawPatterns = Array.isArray(fetchedData['patterns']) ? fetchedData['patterns'] : [];
  // computeCrossSessionCoalitionStability accepts readonly VotingPattern[]
  const stabilityReport = computeCrossSessionCoalitionStability(
    rawPatterns as Parameters<typeof computeCrossSessionCoalitionStability>[0]
  );
  return (
    header +
    `# Cross-Session Coalition Intelligence
 
## Overview
Analysis of coalition stability patterns across multiple plenary sessions.
 
## Stability Report
- **Overall Stability**: ${(stabilityReport.overallStability * 100).toFixed(1)}%
- **Forecast**: ${stabilityReport.forecast}
- **Patterns Analysed**: ${stabilityReport.patternCount}
 
## Group Analysis
- **Stable Groups**: ${stabilityReport.stableGroups.length > 0 ? stabilityReport.stableGroups.join(', ') : 'None identified'}
- **Declining Groups**: ${stabilityReport.decliningGroups.length > 0 ? stabilityReport.decliningGroups.join(', ') : 'None identified'}
 
## Date: ${date}
`
  );
}
 
// ─── Method-to-builder map ────────────────────────────────────────────────────
 
type MarkdownBuilder = (fetchedData: Record<string, unknown>, date: string) => string;
 
/** Map from AnalysisMethod to its markdown builder function */
const METHOD_BUILDERS: Readonly<Record<AnalysisMethod, MarkdownBuilder>> = {
  'significance-classification': buildSignificanceClassificationMarkdown,
  'impact-matrix': buildImpactMatrixMarkdown,
  'actor-mapping': buildActorMappingMarkdown,
  'forces-analysis': buildForcesAnalysisMarkdown,
  'political-stride': buildPoliticalStrideMarkdown,
  'actor-threat-profiling': buildActorThreatProfilingMarkdown,
  'consequence-trees': buildConsequenceTreesMarkdown,
  'legislative-disruption': buildLegislativeDisruptionMarkdown,
  'risk-matrix': buildRiskMatrixMarkdown,
  'political-capital-risk': buildPoliticalCapitalRiskMarkdown,
  'quantitative-swot': buildQuantitativeSwotMarkdown,
  'legislative-velocity-risk': buildLegislativeVelocityRiskMarkdown,
  'agent-risk-workflow': buildAgentRiskWorkflowMarkdown,
  'deep-analysis': buildDeepAnalysisMarkdown,
  'stakeholder-analysis': buildStakeholderAnalysisMarkdown,
  'coalition-analysis': buildCoalitionAnalysisMarkdown,
  'voting-patterns': buildVotingPatternsMarkdown,
  'cross-session-intelligence': buildCrossSessionIntelligenceMarkdown,
};
 
// ─── Method subdir constants ──────────────────────────────────────────────────
 
/** Subdirectory name for classification analysis methods */
const SUBDIR_CLASSIFICATION = 'classification';
/** Subdirectory name for threat assessment analysis methods */
const SUBDIR_THREAT_ASSESSMENT = 'threat-assessment';
/** Subdirectory name for risk scoring analysis methods */
const SUBDIR_RISK_SCORING = 'risk-scoring';
/** Subdirectory name for existing analysis methods */
const SUBDIR_EXISTING = 'existing';
 
/** Subdirectory for each analysis method group */
const METHOD_SUBDIRS: Readonly<Record<AnalysisMethod, string>> = {
  'significance-classification': SUBDIR_CLASSIFICATION,
  'impact-matrix': SUBDIR_CLASSIFICATION,
  'actor-mapping': SUBDIR_CLASSIFICATION,
  'forces-analysis': SUBDIR_CLASSIFICATION,
  'political-stride': SUBDIR_THREAT_ASSESSMENT,
  'actor-threat-profiling': SUBDIR_THREAT_ASSESSMENT,
  'consequence-trees': SUBDIR_THREAT_ASSESSMENT,
  'legislative-disruption': SUBDIR_THREAT_ASSESSMENT,
  'risk-matrix': SUBDIR_RISK_SCORING,
  'political-capital-risk': SUBDIR_RISK_SCORING,
  'quantitative-swot': SUBDIR_RISK_SCORING,
  'legislative-velocity-risk': SUBDIR_RISK_SCORING,
  'agent-risk-workflow': SUBDIR_RISK_SCORING,
  'deep-analysis': SUBDIR_EXISTING,
  'stakeholder-analysis': SUBDIR_EXISTING,
  'coalition-analysis': SUBDIR_EXISTING,
  'voting-patterns': SUBDIR_EXISTING,
  'cross-session-intelligence': SUBDIR_EXISTING,
};
 
/** Default confidence level for each analysis method group */
const METHOD_DEFAULT_CONFIDENCE: Readonly<Record<AnalysisMethod, ConfidenceLevel>> = {
  'significance-classification': 'medium',
  'impact-matrix': 'medium',
  'actor-mapping': 'medium',
  'forces-analysis': 'medium',
  'political-stride': 'medium',
  'actor-threat-profiling': 'low',
  'consequence-trees': 'medium',
  'legislative-disruption': 'medium',
  'risk-matrix': 'medium',
  'political-capital-risk': 'medium',
  'quantitative-swot': 'medium',
  'legislative-velocity-risk': 'medium',
  'agent-risk-workflow': 'medium',
  'deep-analysis': 'high',
  'stakeholder-analysis': 'high',
  'coalition-analysis': 'high',
  'voting-patterns': 'high',
  'cross-session-intelligence': 'high',
};
 
/** Filename for each analysis method */
const METHOD_FILENAMES: Readonly<Record<AnalysisMethod, string>> = {
  'significance-classification': 'significance-assessment.md',
  'impact-matrix': 'impact-matrix.md',
  'actor-mapping': 'actor-mapping.md',
  'forces-analysis': 'forces-analysis.md',
  'political-stride': 'political-stride-assessment.md',
  'actor-threat-profiling': 'actor-threat-profiles.md',
  'consequence-trees': 'consequence-trees.md',
  'legislative-disruption': 'legislative-disruption.md',
  'risk-matrix': 'risk-matrix.md',
  'political-capital-risk': 'political-capital-risk.md',
  'quantitative-swot': 'quantitative-swot.md',
  'legislative-velocity-risk': 'legislative-velocity-risk.md',
  'agent-risk-workflow': 'agent-risk-workflow.md',
  'deep-analysis': 'deep-analysis.md',
  'stakeholder-analysis': 'stakeholder-analysis.md',
  'coalition-analysis': 'coalition-analysis.md',
  'voting-patterns': 'voting-patterns.md',
  'cross-session-intelligence': 'cross-session-intelligence.md',
};
 
// ─── Core runner ──────────────────────────────────────────────────────────────
 
/**
 * Run a single analysis method and return its status record.
 *
 * Wraps the builder call in a try/catch so failures are isolated.
 *
 * @param method - The analysis method to run
 * @param fetchedData - Raw fetched EP data
 * @param date - ISO date string
 * @param dateOutputDir - Absolute path to the date-scoped output directory
 * @param skipCompleted - Whether to skip methods whose output already exists
 * @param verbose - Whether to print verbose progress
 * @returns Status record for the method
 */
function runSingleMethod(
  method: AnalysisMethod,
  fetchedData: Record<string, unknown>,
  date: string,
  dateOutputDir: string,
  skipCompleted: boolean,
  verbose: boolean
): AnalysisMethodStatus {
  const subdir = METHOD_SUBDIRS[method];
  const filename = METHOD_FILENAMES[method];
  const absolutePath = path.join(dateOutputDir, subdir, filename);
  // Store a portable relative path (relative to the date-scoped output dir)
  // in the manifest to avoid exposing runner/local filesystem layout.
  const relativeOutputFile = path.posix.join(subdir, filename);
  const confidence = METHOD_DEFAULT_CONFIDENCE[method];
 
  if (skipCompleted && methodOutputExists(absolutePath)) {
    Iif (verbose) console.log(`  ⏭️  [analysis] Skipping already-completed method: ${method}`);
    return {
      method,
      status: 'skipped',
      outputFile: relativeOutputFile,
      confidence,
      duration: 0,
      summary: `Skipped — output already exists at ${relativeOutputFile}`,
    };
  }
 
  const start = Date.now();
  try {
    const builder = METHOD_BUILDERS[method];
    const markdown = builder(fetchedData, date);
    writeTextFile(absolutePath, markdown);
    const duration = Date.now() - start;
    if (verbose)
      console.log(`  ✅ [analysis] ${method} completed in ${duration}ms → ${relativeOutputFile}`);
    return {
      method,
      status: 'completed',
      outputFile: relativeOutputFile,
      confidence,
      duration,
      summary: `${method} analysis completed successfully`,
    };
  } catch (err: unknown) {
    const duration = Date.now() - start;
    const message = err instanceof Error ? err.message : String(err);
    console.error(`  ❌ [analysis] ${method} failed: ${message}`);
    return {
      method,
      status: 'failed',
      outputFile: relativeOutputFile,
      confidence: 'low',
      duration,
      summary: `${method} failed: ${message}`,
    };
  }
}
 
// ─── Public API ───────────────────────────────────────────────────────────────
 
/**
 * Run the full analysis pipeline stage.
 *
 * Executes all enabled analysis methods sequentially, writing markdown files
 * to `outputDir/{date}/` and a `manifest.json` summary.  Individual method
 * failures are isolated — other methods continue regardless.
 *
 * @param fetchedData - Raw EP data fetched by the fetch stage (keyed by data type)
 * @param options - Analysis stage configuration
 * @returns Analysis context object for consumption by the generate stage
 *
 * @example
 * ```ts
 * const ctx = await runAnalysisStage(fetchedData, {
 *   articleTypes: [ArticleCategory.WEEK_AHEAD],
 *   date: '2026-03-26',
 *   outputDir: 'analysis-output',
 *   skipCompleted: true,
 *   verbose: true,
 * });
 * ```
 */
export async function runAnalysisStage(
  fetchedData: Record<string, unknown>,
  options: AnalysisStageOptions
): Promise<AnalysisContext> {
  const {
    articleTypes,
    date,
    outputDir,
    enabledMethods = ALL_ANALYSIS_METHODS,
    skipCompleted = true,
    verbose = false,
  } = options;
 
  // Validate date to prevent path traversal (e.g. "../../.." escaping outputDir)
  if (!/^\d{4}-\d{2}-\d{2}$/u.test(date)) {
    throw new Error(`Invalid analysis date "${date}": must match YYYY-MM-DD format`);
  }
 
  // Deduplicate enabledMethods (preserving order) so programmatic callers
  // that accidentally pass duplicates don't run the same method twice.
  const deduplicatedMethods = [...new Set(enabledMethods)];
 
  const startTime = new Date().toISOString();
  const runId = randomUUID();
  const dateOutputDir = path.resolve(outputDir, date);
 
  if (verbose) {
    console.log(`🔬 [analysis] Starting analysis stage (runId: ${runId})`);
    console.log(`   Date: ${date}`);
    console.log(`   Methods: ${deduplicatedMethods.length}`);
    console.log(`   Output: ${dateOutputDir}`);
  }
 
  ensureDirectoryExists(dateOutputDir);
 
  // Run all enabled methods sequentially; isolate failures
  const methodResults: AnalysisMethodStatus[] = [];
  for (const method of deduplicatedMethods) {
    const result = runSingleMethod(
      method,
      fetchedData,
      date,
      dateOutputDir,
      skipCompleted,
      verbose
    );
    methodResults.push(result);
  }
 
  const endTime = new Date().toISOString();
  const overallConfidence = aggregateConfidence(methodResults);
  const dataSourcesUsed = Object.keys(fetchedData).filter(
    (k) => Array.isArray(fetchedData[k]) && (fetchedData[k] as unknown[]).length > 0
  );
 
  const manifest: AnalysisManifest = {
    runId,
    date,
    startTime,
    endTime,
    articleTypes: [...articleTypes],
    methods: methodResults,
    overallConfidence,
    dataSourcesUsed,
  };
 
  // Write manifest.json
  const manifestPath = path.join(dateOutputDir, 'manifest.json');
  writeTextFile(manifestPath, JSON.stringify(manifest, null, 2));
 
  if (verbose) {
    const completed = methodResults.filter((r) => r.status === 'completed').length;
    const skipped = methodResults.filter((r) => r.status === 'skipped').length;
    const failed = methodResults.filter((r) => r.status === 'failed').length;
    console.log(
      `🔬 [analysis] Stage complete: ${completed} completed, ${skipped} skipped, ${failed} failed`
    );
    console.log(`   Overall confidence: ${overallConfidence}`);
  }
 
  const completedMethods = methodResults
    .filter((r) => r.status === 'completed' || r.status === 'skipped')
    .map((r) => r.method);
 
  const resultsMap = new Map<AnalysisMethod, AnalysisMethodStatus>(
    methodResults.map((r) => [r.method, r])
  );
 
  return {
    date,
    outputDir: dateOutputDir,
    completedMethods,
    results: resultsMap,
    manifest,
  };
}