Score financial predictions against real market data. Input: a simple 3-column CSV. Output: a scored Markdown report plus detail CSV.
For usage notes, see README.md. For scoring formulas, see reference.md.
KIMI_API_KEYscripts/.env.localLLM_API_KEY, LLM_MODEL, LLM_BASE_URLnpm install requiredcd ~/.cursor/skills/financial-prediction-verifier
KIMI_API_KEY=sk-xxx node scripts/verify.mjs /path/to/predictions.csv
也支持把 key 放在本地私有文件 scripts/.env.local,这样运行时无需每次手动 export。
cp scripts/.env.local.example scripts/.env.local
node scripts/verify.mjs /path/to/predictions.csv
Only 3 columns required:
predictor,predict_date,prediction_text
小明,2025-12-15,黄金还能再涨一段时间
小红,2026-01-10,后面可以关注下隆基绿能
predictor: Who made the predictionpredict_date: When the prediction was made (YYYY-MM-DD)prediction_text: The raw prediction textTwo files written next to the input CSV:
{input}_report.md{input}_scores.csv共 1 个版本