ARA-Labs/Agent-Native-Research-Artifact
GitHub: ARA-Labs/Agent-Native-Research-Artifact
ARA 是一套面向 AI 科学研究的 agent skills 与工件协议,通过结构化记录、形式化验证和完全可观察性,使自主科研过程可审计、可复现。
Stars: 498 | Forks: 48
# Agent 原生研究工件 (ARA)
[](LICENSE)
[](skills/)
[](https://arxiv.org/abs/2604.24658)
[](docs/poster.pdf)
[](https://github.com/ARA-Labs/ARA-Demo)
## 科学领域的新瓶颈
AI 科学家现在能以近乎无限的速度生成假设、执行实验并产出结果。但这种加速创造了新的根本性瓶颈:**我们如何验证它?我们又如何有效地对该过程进行护栏防护?**
当 AI 生成数千个探索步骤时,人类研究人员无法手动梳理日志来确保实证的严谨性。我们需要在研究的记录和监督方式上实现根本性的转变。
` |
| 在信任、发布或提交工件之前,**验证**其认知严谨性 | **rigor-reviewer** | `/rigor-reviewer ` |
| 在交互式流程图中**观察**完整的研究轨迹 | **research-visualizer** | `/research-visualizer ` |
| **提交**一个 ARA —— 验证/编译它、将其可视化、发布到你的 GitHub,并列在 ARA Hub 上 | **submit-ara** | `/submit-ara ` |
**让记录自动化。** 将以下内容附加到你的 agent 的 system-prompt 文件(`CLAUDE.md`、`AGENTS.md`、`.cursorrules` 或 `GEMINI.md`)中,这样每次会话时记录都会自动填充:
```
## ARA: 结束会话研究记录
At the END of every coding session, invoke the `/research-manager` skill to
record decisions, experiments, dead ends, and claims into the `ara/` artifact.
```
请参阅每个 skill 的 `SKILL.md` 以获取完整规范:
[research-manager](skills/research-manager/SKILL.md) ·
[compiler](skills/compiler/SKILL.md) ·
[rigor-reviewer](skills/rigor-reviewer/SKILL.md) ·
[research-visualizer](skills/research-visualizer/SKILL.md) ·
[submit-ara](skills/submit-ara/SKILL.md)
## 深入了解 —— 工件解剖结构
这四大支柱都在读写同一个结构。ARA 将研究组织为四个相互嵌套的层级:
```
example_artifact/
PAPER.md # Root manifest + layer index (~200 tokens)
logic/ # Cognitive layer — What & Why
claims.md # Falsifiable assertions with proof refs
experiments.md # Declarative experiment plans
solution/
architecture.md # System design + component graph
algorithm.md # Math + pseudocode
constraints.md # Boundary conditions
related_work.md # Typed dependency graph
src/ # Physical layer — How
configs/ # Hyperparameters with rationale
environment.md # Dependencies, hardware, seeds
trace/ # Exploration graph — Journey
exploration_tree.yaml # Research DAG with typed nodes + dead ends
evidence/ # Raw proof
tables/ # Exact result tables
figures/ # Extracted data points
```
标签:AI安全护栏, AI科学家, LLM代理, MITM代理, 人工智能, 可验证AI, 后端开发, 文档结构分析, 用户模式Hook绕过, 科研自动化, 防御加固