agentpulse commited on
Commit
332ca23
·
verified ·
1 Parent(s): b88a1c9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +131 -3
README.md CHANGED
@@ -1,3 +1,131 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AgentPulse — Data and Code Release
2
+
3
+ **NeurIPS 2026 Datasets & Benchmarks Track companion artifact.**
4
+
5
+ This bundle contains all data, code, and reproduction scripts for the
6
+ AgentPulse evaluation framework described in the paper
7
+ *AgentPulse: A Continuous Multi-Signal Framework for Evaluating AI Agents in Deployment*.
8
+
9
+ License: **CC BY 4.0** (see `LICENSE`).
10
+
11
+ ---
12
+
13
+ ## Contents
14
+
15
+ ```
16
+ AgentPulse-Data-v6/
17
+ ├── README.md ← this file
18
+ ├── LICENSE ← CC BY 4.0
19
+ ├── croissant.json ← Croissant metadata (JSON-LD)
20
+ ├── data/
21
+ │ ├── csv/ ← 18 CSV exports of every relevant DB table
22
+ │ └── sqlite/ ← (optional) full SQLite database, if present
23
+ ├── code/
24
+ │ ├── collectors/ ← 18 signal-collector implementations
25
+ │ ├── scoring/ ← NLP pipeline + factor composite + data quality
26
+ │ ├── pipeline/ ← scheduler / orchestration
27
+ │ ├── config.py ← global pipeline configuration
28
+ │ ├── main.py ← entrypoint (`python main.py --serve`, etc.)
29
+ │ └── requirements.txt ← Python dependencies
30
+ ├── paper/
31
+ │ ├── neurips_agentpulse.tex ← LaTeX source
32
+ │ ├── neurips_agentpulse.pdf ← compiled paper
33
+ │ ├── neurips_2026.sty ← NeurIPS 2026 style file
34
+ │ ├── checklist_.tex ← NeurIPS Paper Checklist
35
+ │ ├── regen_figures.py ← regenerates all 5 paper figures from the data
36
+ │ └── fig*.{png,pdf} ← compiled figures
37
+ └── docs/
38
+ └── schema.md ← per-table column documentation
39
+ ```
40
+
41
+ ---
42
+
43
+ ## Data tables (`data/csv/`)
44
+
45
+ | File | Rows | Description |
46
+ |-----------------------------------|---------|-------------|
47
+ | `agent_scores.csv` | 13,504 | Composite + per-factor scores per agent per category, time-stamped. The headline scoring output. |
48
+ | `agent_signals_raw.csv` | 3,283 | Raw per-signal observations per agent (pre-aggregation). |
49
+ | `agent_benchmark_signals.csv` | 1,563 | Published benchmark scores (SWE-bench, GAIA, WebArena, HumanEval+, τ-bench). |
50
+ | `agent_github_history.csv` | 62 | GitHub stars / contributors / commits time-series. |
51
+ | `agent_pypi_history.csv` | 1,440 | PyPI / npm download history. |
52
+ | `sentiment_scores.csv` | 60,639 | NLP-scored texts (VADER + TextBlob + FinBERT + DistilBERT-SST2 ensemble). |
53
+ | `data_quality.csv` | 38,965 | Composite quality score per text (uniqueness × bot × credibility × specificity). |
54
+ | `models.csv` | 148 | Agent + model registry with vendor / category metadata. |
55
+ | `bluesky_signals.csv` | 35,326 | Per-platform raw text + engagement. |
56
+ | `reddit_signals.csv` | 2,413 | "" |
57
+ | `hn_signals.csv` | 21,205 | "" |
58
+ | `stackoverflow_signals.csv` | 571 | "" |
59
+ | `github_signals.csv` | 23,288 | "" |
60
+ | `github_discussions_signals.csv` | 2,090 | "" |
61
+ | `devto_signals.csv` | 596 | "" |
62
+ | `mastodon_signals.csv` | 1,160 | "" |
63
+ | `v2ex_signals.csv` | 1,794 | "" |
64
+ | `devtools_signals.csv` | 89 | VS Code / IDE marketplace install counts. |
65
+
66
+ All CSVs are UTF-8 encoded with a header row. Timestamps are ISO-8601
67
+ in UTC. See `docs/schema.md` for full column documentation.
68
+
69
+ ---
70
+
71
+ ## Reproducing paper results
72
+
73
+ ```bash
74
+ cd code/
75
+ pip install -r requirements.txt
76
+
77
+ # Reproduce all figures (writes into ../paper/)
78
+ python ../paper/regen_figures.py
79
+
80
+ # Re-derive composite scores from raw signals
81
+ python -m scoring.agent_scoring_v2 --rebuild
82
+
83
+ # Re-run the full pipeline end-to-end (continuous mode)
84
+ python main.py
85
+ ```
86
+
87
+ The cross-factor predictive validity result (Table 3, ρₛ=0.52, p<0.01,
88
+ n=35) is computed in `code/scoring/agent_scoring_v2.py` and can be
89
+ re-derived directly from `data/csv/agent_scores.csv` and external
90
+ adoption proxies.
91
+
92
+ ---
93
+
94
+ ## Provenance
95
+
96
+ All signals are collected from public APIs with documented rate-limits
97
+ under each API's terms of service. Specifically:
98
+
99
+ - **GitHub**: REST + GraphQL APIs (60 req/hr unauth, 5,000 req/hr authed)
100
+ - **PyPI**: BigQuery public dataset
101
+ - **VS Code Marketplace**: Public extension API
102
+ - **Bluesky / Mastodon**: AT-Protocol / ActivityPub public firehose
103
+ - **Reddit / Hacker News / Stack Overflow / Lemmy / Lobsters / Dev.to / V2EX**:
104
+ Documented public APIs
105
+ - **Benchmark scores**: Scraped from the official leaderboard pages
106
+ cited in the paper (SWE-bench, GAIA, WebArena, HumanEval+, τ-bench)
107
+
108
+ No private data, no scraped paywalled content, no PII beyond public
109
+ authorship metadata is included. The release contains no individual
110
+ user records — only aggregated per-text metadata required for sentiment
111
+ scoring (post id, author handle if public, engagement counts).
112
+
113
+ ---
114
+
115
+ ## Citation
116
+
117
+ ```
118
+ @inproceedings{agentpulse2026,
119
+ title = {AgentPulse: A Continuous Multi-Signal Framework for Evaluating
120
+ AI Agents in Deployment},
121
+ author = {Anonymous},
122
+ booktitle = {NeurIPS Datasets and Benchmarks Track},
123
+ year = {2026}
124
+ }
125
+ ```
126
+
127
+ ## Contact
128
+
129
+ Per the NeurIPS double-blind review policy, author contact is withheld
130
+ during review. Issues with the artifact may be reported via the
131
+ submission system.