stata-code 0.8.0__tar.gz → 0.8.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {stata_code-0.8.0 → stata_code-0.8.1}/CHANGELOG.md +14 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/PKG-INFO +56 -5
- {stata_code-0.8.0 → stata_code-0.8.1}/README.md +55 -4
- {stata_code-0.8.0 → stata_code-0.8.1}/pyproject.toml +1 -1
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/__init__.py +1 -1
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/mcp/server.py +1 -1
- {stata_code-0.8.0 → stata_code-0.8.1}/.gitignore +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/LICENSE +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/LICENSE-POLICY.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/PUBLISHING.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/SCHEMA.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/docs/design/hard_timeout.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/docs/industry-leader-roadmap.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/examples/01-basic-regression.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/examples/02-did-card-krueger.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/examples/03-graphs.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/examples/04-multi-session.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/examples/05-large-matrix.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/examples/06-cross-stack-parity-audit.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/examples/07-data-mcp-handoff.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/examples/README.md +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/schema/run_result.schema.json +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/scripts/build_skill_zip.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/scripts/check_github_actions.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/scripts/check_versions.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/scripts/export_schema.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/__main__.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/cli.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/__init__.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/_pool.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/_refs.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/_runtime.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/errors.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/log_artifacts.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/notebook.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/run_index.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/runner.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/core/schema.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/doctor.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/kernel/__init__.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/kernel/__main__.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/kernel/assets/logo-32x32.png +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/kernel/assets/logo-64x64.png +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/kernel/assets/logo-svg.svg +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/kernel/kernel.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/mcp/__init__.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/stata_code/mcp/__main__.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/__init__.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/conftest.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/fixtures/.gitkeep +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_cancel.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_doctor.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_errors.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_github_actions.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_kernel.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_log_artifacts.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_mcp.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_mcp_stdio.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_method_prompts.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_new_tools.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_notebook.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_notebook_phase2.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_pool.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_public_api.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_release_versions.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_run_index.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_runner.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_runtime_discovery.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_schema.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_schema_artifact.py +0 -0
- {stata_code-0.8.0 → stata_code-0.8.1}/tests/test_skill_package.py +0 -0
|
@@ -4,6 +4,20 @@ All notable changes to `stata-code` are documented here. The format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); the project adheres
|
|
5
5
|
to semver-major.minor for the result schema (see `SCHEMA.md` §6).
|
|
6
6
|
|
|
7
|
+
## 0.8.1 — 2026-06-20
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **README & metadata refresh.** Documented the VS Code extension's
|
|
12
|
+
seven-view sidebar (added the **Data** variables browser and the
|
|
13
|
+
**Outputs** table/export-artifact panel), corrected the error taxonomy
|
|
14
|
+
count to 31 kinds, and sharpened the Claude Code plugin / VS Code
|
|
15
|
+
Marketplace descriptions to lead with the empirical-economics workflow
|
|
16
|
+
(DiD/IV/RDD, publication tables, StatsPAI cross-validation).
|
|
17
|
+
- **Partner module.** Added a Stanford REAP × CoPaper.AI partner block
|
|
18
|
+
(logos, QR, links) to both the English and Chinese README, with the logo
|
|
19
|
+
assets bundled under `branding/partners/`.
|
|
20
|
+
|
|
7
21
|
## 0.8.0 — 2026-06-20
|
|
8
22
|
|
|
9
23
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stata-code
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.1
|
|
4
4
|
Summary: Agent-native Stata bridge — one core, multiple frontends (MCP, Jupyter, VSCode)
|
|
5
5
|
Project-URL: Homepage, https://github.com/brycewang-stanford/stata-code
|
|
6
6
|
Project-URL: Repository, https://github.com/brycewang-stanford/stata-code
|
|
@@ -59,6 +59,24 @@ Description-Content-Type: text/markdown
|
|
|
59
59
|
[](https://github.com/brycewang-stanford/stata-code/releases)
|
|
60
60
|
[](https://github.com/brycewang-stanford/stata-code)
|
|
61
61
|
|
|
62
|
+
<div align="center">
|
|
63
|
+
|
|
64
|
+
<table>
|
|
65
|
+
<tr>
|
|
66
|
+
<td align="center">
|
|
67
|
+
<a href="https://copaper.ai"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/copaper-logo.png" alt="CoPaper.AI" width="200" /></a>
|
|
68
|
+
</td>
|
|
69
|
+
<td width="48"></td>
|
|
70
|
+
<td align="center">
|
|
71
|
+
<a href="https://sccei.fsi.stanford.edu/reap"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/stanford-reap-logo.png" alt="Stanford REAP — Center on China's Economy & Institutions" width="280" /></a>
|
|
72
|
+
</td>
|
|
73
|
+
</tr>
|
|
74
|
+
</table>
|
|
75
|
+
|
|
76
|
+
<sub><strong>Stanford REAP × CoPaper.AI</strong> · an academic–industrial AI toolkit for empirical research</sub>
|
|
77
|
+
|
|
78
|
+
</div>
|
|
79
|
+
|
|
62
80
|
<p align="center">
|
|
63
81
|
<img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/github-instructions.png" alt="stata-code: agent-native Stata bridge — one Python core, multiple frontends (Jupyter kernel, MCP server, VS Code extension)" width="720" />
|
|
64
82
|
</p>
|
|
@@ -385,7 +403,7 @@ Then open Jupyter Notebook / JupyterLab (or a `.ipynb` in VS Code), pick **Stata
|
|
|
385
403
|
|
|
386
404
|
### As a VS Code Extension
|
|
387
405
|
|
|
388
|
-
The companion extension is on the Marketplace as [`brycewang-stanford.stata-code-vscode`](https://marketplace.visualstudio.com/items?itemName=brycewang-stanford.stata-code-vscode). It spawns `stata-code-mcp` as a child process and adds syntax highlighting, an Outline view for `**#` sections and `program define` blocks, code-lens "Run cell" and "Run section" actions on `.do` files, a sidebar (sessions / last result / run history / logs / graphs)
|
|
406
|
+
The companion extension is on the Marketplace as [`brycewang-stanford.stata-code-vscode`](https://marketplace.visualstudio.com/items?itemName=brycewang-stanford.stata-code-vscode). It spawns `stata-code-mcp` as a child process and adds syntax highlighting, an Outline view for `**#` sections and `program define` blocks, code-lens "Run cell" and "Run section" actions on `.do` files, a **seven-view sidebar** (sessions / last result / **data variables** / run history / logs / graphs / **outputs**) — including an agent-native equivalent of Stata's **Variables window** and an **Outputs** panel that surfaces the `esttab` tables and `export` files each run writes to disk — status-bar indicators, completions, help lookup, conservative variable rename, and inline diagnostics from the v1.0 typed errors.
|
|
389
407
|
|
|
390
408
|
```bash
|
|
391
409
|
# from the VS Code CLI
|
|
@@ -481,7 +499,7 @@ stata_code/
|
|
|
481
499
|
| Jupyter kernel | ✓ | — | — | ✓ |
|
|
482
500
|
| Unified result schema | ✓ ([SCHEMA.md](SCHEMA.md)) | per-tool | per-tool | per-tool |
|
|
483
501
|
| Token-economy defaults | ✓ (log refs, graph refs) | — | — | — |
|
|
484
|
-
| Typed errors + suggestions | ✓ (
|
|
502
|
+
| Typed errors + suggestions | ✓ (31 kinds) | — | — | — |
|
|
485
503
|
| Multi-session | ✓ (Stata frames) | partial | — | — |
|
|
486
504
|
| Mature ecosystem | early | ✓ (statamcp.com, cookbook) | ✓ (11k installs) | ✓ |
|
|
487
505
|
|
|
@@ -500,7 +518,7 @@ stata_code/
|
|
|
500
518
|
- Graph capture: `png` / `svg` / `pdf` with ref store and source-command attribution
|
|
501
519
|
- Log truncation with ref store
|
|
502
520
|
- Warning extraction: 5 categories + generic notes
|
|
503
|
-
-
|
|
521
|
+
- 31-kind error taxonomy with canonical suggestions
|
|
504
522
|
- MCP server: 18 tools, including notebook navigation / search / atomic edits, the run-bundle index (`list_runs`), log grep (`search_log`), dataset inspection (`inspect_data`), and package installation (`install_package`)
|
|
505
523
|
- Jupyter kernel: rewired to the v1.0 pipeline, kernel logos bundled
|
|
506
524
|
- Matrix size cap + `get_matrix(ref)` for large matrices (>10k cells)
|
|
@@ -514,7 +532,7 @@ stata_code/
|
|
|
514
532
|
IV/weak-IV, RDD, table export, data-MCP handoff, and cross-stack parity
|
|
515
533
|
audits
|
|
516
534
|
- JSON Schema artifact auto-generated from `schema.py`: [`schema/run_result.schema.json`](schema/run_result.schema.json)
|
|
517
|
-
- VS Code extension published to the Marketplace as [`brycewang-stanford.stata-code-vscode`](https://marketplace.visualstudio.com/items?itemName=brycewang-stanford.stata-code-vscode): syntax highlighting, section outline/navigation, code-lens cell and section runners, sidebar (sessions / last result / run history / logs / graphs), status bar, completions, conservative variable rename, diagnostics, MCP child-process spawn
|
|
535
|
+
- VS Code extension published to the Marketplace as [`brycewang-stanford.stata-code-vscode`](https://marketplace.visualstudio.com/items?itemName=brycewang-stanford.stata-code-vscode): syntax highlighting, section outline/navigation, code-lens cell and section runners, seven-view sidebar (sessions / last result / data variables / run history / logs / graphs / outputs), status bar, completions, conservative variable rename, diagnostics, MCP child-process spawn
|
|
518
536
|
- Clean-room license policy ([LICENSE-POLICY.md](LICENSE-POLICY.md))
|
|
519
537
|
|
|
520
538
|
### Next Up
|
|
@@ -560,3 +578,36 @@ Stata is a registered trademark of StataCorp LLC. This project is independent an
|
|
|
560
578
|
## Acknowledgements
|
|
561
579
|
|
|
562
580
|
The Stata tooling landscape that this project builds on and learns from is surveyed in [References-tools.md](References-tools.md). All listed projects retain their own licenses and authorship; please consult each repository before reuse.
|
|
581
|
+
|
|
582
|
+
---
|
|
583
|
+
|
|
584
|
+
<div align="center">
|
|
585
|
+
|
|
586
|
+
<table>
|
|
587
|
+
<tr>
|
|
588
|
+
<td align="center">
|
|
589
|
+
<a href="https://copaper.ai"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/copaper-logo.png" alt="CoPaper.AI" width="200" /></a>
|
|
590
|
+
</td>
|
|
591
|
+
<td width="40"></td>
|
|
592
|
+
<td align="center">
|
|
593
|
+
<a href="https://sccei.fsi.stanford.edu/reap"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/stanford-reap-logo.png" alt="Stanford REAP" width="280" /></a>
|
|
594
|
+
</td>
|
|
595
|
+
</tr>
|
|
596
|
+
</table>
|
|
597
|
+
|
|
598
|
+
<table>
|
|
599
|
+
<tr>
|
|
600
|
+
<td align="center">
|
|
601
|
+
<a href="https://copaper.ai"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/copaper-qrcode.png" alt="Visit copaper.ai" width="160" /></a><br/>
|
|
602
|
+
<strong>Visit <a href="https://copaper.ai">copaper.ai</a></strong>
|
|
603
|
+
</td>
|
|
604
|
+
<td align="center">
|
|
605
|
+
<img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/copaper-wechat.jpg" alt="CoPaper.AI WeChat" width="160" /><br/>
|
|
606
|
+
<strong>WeChat: CoPaper.AI</strong>
|
|
607
|
+
</td>
|
|
608
|
+
</tr>
|
|
609
|
+
</table>
|
|
610
|
+
|
|
611
|
+
<sub>Maintained by <a href="https://copaper.ai"><strong>CoPaper.AI</strong></a>, incubated at <a href="https://sccei.fsi.stanford.edu/reap"><strong>Stanford REAP / SCCEI</strong></a> · AI Assistant for Empirical Research</sub>
|
|
612
|
+
|
|
613
|
+
</div>
|
|
@@ -20,6 +20,24 @@
|
|
|
20
20
|
[](https://github.com/brycewang-stanford/stata-code/releases)
|
|
21
21
|
[](https://github.com/brycewang-stanford/stata-code)
|
|
22
22
|
|
|
23
|
+
<div align="center">
|
|
24
|
+
|
|
25
|
+
<table>
|
|
26
|
+
<tr>
|
|
27
|
+
<td align="center">
|
|
28
|
+
<a href="https://copaper.ai"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/copaper-logo.png" alt="CoPaper.AI" width="200" /></a>
|
|
29
|
+
</td>
|
|
30
|
+
<td width="48"></td>
|
|
31
|
+
<td align="center">
|
|
32
|
+
<a href="https://sccei.fsi.stanford.edu/reap"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/stanford-reap-logo.png" alt="Stanford REAP — Center on China's Economy & Institutions" width="280" /></a>
|
|
33
|
+
</td>
|
|
34
|
+
</tr>
|
|
35
|
+
</table>
|
|
36
|
+
|
|
37
|
+
<sub><strong>Stanford REAP × CoPaper.AI</strong> · an academic–industrial AI toolkit for empirical research</sub>
|
|
38
|
+
|
|
39
|
+
</div>
|
|
40
|
+
|
|
23
41
|
<p align="center">
|
|
24
42
|
<img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/github-instructions.png" alt="stata-code: agent-native Stata bridge — one Python core, multiple frontends (Jupyter kernel, MCP server, VS Code extension)" width="720" />
|
|
25
43
|
</p>
|
|
@@ -346,7 +364,7 @@ Then open Jupyter Notebook / JupyterLab (or a `.ipynb` in VS Code), pick **Stata
|
|
|
346
364
|
|
|
347
365
|
### As a VS Code Extension
|
|
348
366
|
|
|
349
|
-
The companion extension is on the Marketplace as [`brycewang-stanford.stata-code-vscode`](https://marketplace.visualstudio.com/items?itemName=brycewang-stanford.stata-code-vscode). It spawns `stata-code-mcp` as a child process and adds syntax highlighting, an Outline view for `**#` sections and `program define` blocks, code-lens "Run cell" and "Run section" actions on `.do` files, a sidebar (sessions / last result / run history / logs / graphs)
|
|
367
|
+
The companion extension is on the Marketplace as [`brycewang-stanford.stata-code-vscode`](https://marketplace.visualstudio.com/items?itemName=brycewang-stanford.stata-code-vscode). It spawns `stata-code-mcp` as a child process and adds syntax highlighting, an Outline view for `**#` sections and `program define` blocks, code-lens "Run cell" and "Run section" actions on `.do` files, a **seven-view sidebar** (sessions / last result / **data variables** / run history / logs / graphs / **outputs**) — including an agent-native equivalent of Stata's **Variables window** and an **Outputs** panel that surfaces the `esttab` tables and `export` files each run writes to disk — status-bar indicators, completions, help lookup, conservative variable rename, and inline diagnostics from the v1.0 typed errors.
|
|
350
368
|
|
|
351
369
|
```bash
|
|
352
370
|
# from the VS Code CLI
|
|
@@ -442,7 +460,7 @@ stata_code/
|
|
|
442
460
|
| Jupyter kernel | ✓ | — | — | ✓ |
|
|
443
461
|
| Unified result schema | ✓ ([SCHEMA.md](SCHEMA.md)) | per-tool | per-tool | per-tool |
|
|
444
462
|
| Token-economy defaults | ✓ (log refs, graph refs) | — | — | — |
|
|
445
|
-
| Typed errors + suggestions | ✓ (
|
|
463
|
+
| Typed errors + suggestions | ✓ (31 kinds) | — | — | — |
|
|
446
464
|
| Multi-session | ✓ (Stata frames) | partial | — | — |
|
|
447
465
|
| Mature ecosystem | early | ✓ (statamcp.com, cookbook) | ✓ (11k installs) | ✓ |
|
|
448
466
|
|
|
@@ -461,7 +479,7 @@ stata_code/
|
|
|
461
479
|
- Graph capture: `png` / `svg` / `pdf` with ref store and source-command attribution
|
|
462
480
|
- Log truncation with ref store
|
|
463
481
|
- Warning extraction: 5 categories + generic notes
|
|
464
|
-
-
|
|
482
|
+
- 31-kind error taxonomy with canonical suggestions
|
|
465
483
|
- MCP server: 18 tools, including notebook navigation / search / atomic edits, the run-bundle index (`list_runs`), log grep (`search_log`), dataset inspection (`inspect_data`), and package installation (`install_package`)
|
|
466
484
|
- Jupyter kernel: rewired to the v1.0 pipeline, kernel logos bundled
|
|
467
485
|
- Matrix size cap + `get_matrix(ref)` for large matrices (>10k cells)
|
|
@@ -475,7 +493,7 @@ stata_code/
|
|
|
475
493
|
IV/weak-IV, RDD, table export, data-MCP handoff, and cross-stack parity
|
|
476
494
|
audits
|
|
477
495
|
- JSON Schema artifact auto-generated from `schema.py`: [`schema/run_result.schema.json`](schema/run_result.schema.json)
|
|
478
|
-
- VS Code extension published to the Marketplace as [`brycewang-stanford.stata-code-vscode`](https://marketplace.visualstudio.com/items?itemName=brycewang-stanford.stata-code-vscode): syntax highlighting, section outline/navigation, code-lens cell and section runners, sidebar (sessions / last result / run history / logs / graphs), status bar, completions, conservative variable rename, diagnostics, MCP child-process spawn
|
|
496
|
+
- VS Code extension published to the Marketplace as [`brycewang-stanford.stata-code-vscode`](https://marketplace.visualstudio.com/items?itemName=brycewang-stanford.stata-code-vscode): syntax highlighting, section outline/navigation, code-lens cell and section runners, seven-view sidebar (sessions / last result / data variables / run history / logs / graphs / outputs), status bar, completions, conservative variable rename, diagnostics, MCP child-process spawn
|
|
479
497
|
- Clean-room license policy ([LICENSE-POLICY.md](LICENSE-POLICY.md))
|
|
480
498
|
|
|
481
499
|
### Next Up
|
|
@@ -521,3 +539,36 @@ Stata is a registered trademark of StataCorp LLC. This project is independent an
|
|
|
521
539
|
## Acknowledgements
|
|
522
540
|
|
|
523
541
|
The Stata tooling landscape that this project builds on and learns from is surveyed in [References-tools.md](References-tools.md). All listed projects retain their own licenses and authorship; please consult each repository before reuse.
|
|
542
|
+
|
|
543
|
+
---
|
|
544
|
+
|
|
545
|
+
<div align="center">
|
|
546
|
+
|
|
547
|
+
<table>
|
|
548
|
+
<tr>
|
|
549
|
+
<td align="center">
|
|
550
|
+
<a href="https://copaper.ai"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/copaper-logo.png" alt="CoPaper.AI" width="200" /></a>
|
|
551
|
+
</td>
|
|
552
|
+
<td width="40"></td>
|
|
553
|
+
<td align="center">
|
|
554
|
+
<a href="https://sccei.fsi.stanford.edu/reap"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/stanford-reap-logo.png" alt="Stanford REAP" width="280" /></a>
|
|
555
|
+
</td>
|
|
556
|
+
</tr>
|
|
557
|
+
</table>
|
|
558
|
+
|
|
559
|
+
<table>
|
|
560
|
+
<tr>
|
|
561
|
+
<td align="center">
|
|
562
|
+
<a href="https://copaper.ai"><img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/copaper-qrcode.png" alt="Visit copaper.ai" width="160" /></a><br/>
|
|
563
|
+
<strong>Visit <a href="https://copaper.ai">copaper.ai</a></strong>
|
|
564
|
+
</td>
|
|
565
|
+
<td align="center">
|
|
566
|
+
<img src="https://raw.githubusercontent.com/brycewang-stanford/stata-code/main/branding/partners/copaper-wechat.jpg" alt="CoPaper.AI WeChat" width="160" /><br/>
|
|
567
|
+
<strong>WeChat: CoPaper.AI</strong>
|
|
568
|
+
</td>
|
|
569
|
+
</tr>
|
|
570
|
+
</table>
|
|
571
|
+
|
|
572
|
+
<sub>Maintained by <a href="https://copaper.ai"><strong>CoPaper.AI</strong></a>, incubated at <a href="https://sccei.fsi.stanford.edu/reap"><strong>Stanford REAP / SCCEI</strong></a> · AI Assistant for Empirical Research</sub>
|
|
573
|
+
|
|
574
|
+
</div>
|
|
@@ -98,7 +98,7 @@ from stata_code.core.runner import (
|
|
|
98
98
|
)
|
|
99
99
|
from stata_code.core.schema import RunResult
|
|
100
100
|
|
|
101
|
-
__version__ = "0.8.
|
|
101
|
+
__version__ = "0.8.1"
|
|
102
102
|
|
|
103
103
|
SERVER_INSTRUCTIONS = (
|
|
104
104
|
"Use stata-code for running and inspecting Stata code. Prefer structuredContent "
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|