atris 3.15.45 → 3.15.46
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.
- package/commands/computer.js +1 -1
- package/lib/runtime-bootstrap.js +17 -5
- package/package.json +2 -1
- package/templates/business-starter/CLAUDE.md +62 -0
- package/templates/business-starter/MAP.md +80 -0
- package/templates/business-starter/MEMBER.md +46 -0
- package/templates/business-starter/TODO.md +28 -0
- package/templates/business-starter/atris.md +61 -0
- package/templates/business-starter/context/README.md +19 -0
- package/templates/business-starter/context/live-workspace.md +36 -0
- package/templates/business-starter/goals.md +33 -0
- package/templates/business-starter/instructions.md +40 -0
- package/templates/business-starter/memory.md +31 -0
- package/templates/business-starter/persona.md +26 -0
- package/templates/business-starter/policies/LESSONS.md +5 -0
- package/templates/business-starter/policies/REWARD.md +24 -0
- package/templates/business-starter/reports/README.md +17 -0
- package/templates/business-starter/reports/operating-recap-template.md +44 -0
- package/templates/business-starter/skills/README.md +21 -0
- package/templates/business-starter/team/README.md +17 -0
- package/templates/business-starter/team/_template/MEMBER.md +32 -0
- package/templates/business-starter/team/_template/SOUL.md +40 -0
- package/templates/business-starter/team/comms/MEMBER.md +34 -0
- package/templates/business-starter/team/comms/SOUL.md +32 -0
- package/templates/business-starter/team/operator/MEMBER.md +34 -0
- package/templates/business-starter/team/ops/MEMBER.md +34 -0
- package/templates/business-starter/team/ops/SOUL.md +32 -0
- package/templates/business-starter/team/research/MEMBER.md +34 -0
- package/templates/business-starter/team/research/SOUL.md +32 -0
- package/templates/business-starter/team/validator/MEMBER.md +34 -0
- package/templates/business-starter/wiki/STATUS.md +7 -0
- package/templates/business-starter/wiki/concepts/first-loop-template.md +34 -0
- package/templates/business-starter/wiki/index.md +30 -0
- package/templates/business-starter/wiki/log.md +11 -0
- package/templates/business-starter/wiki/wiki.md +26 -0
- package/templates/research-canonical/CLAUDE.md +70 -0
- package/templates/research-canonical/MAP.md +68 -0
- package/templates/research-canonical/MEMBER.md +46 -0
- package/templates/research-canonical/TODO.md +28 -0
- package/templates/research-canonical/atris.md +62 -0
- package/templates/research-canonical/context/README.md +21 -0
- package/templates/research-canonical/context/live-workspace.md +24 -0
- package/templates/research-canonical/goals.md +23 -0
- package/templates/research-canonical/instructions.md +40 -0
- package/templates/research-canonical/memory.md +31 -0
- package/templates/research-canonical/persona.md +26 -0
- package/templates/research-canonical/policies/LESSONS.md +5 -0
- package/templates/research-canonical/policies/REWARD.md +21 -0
- package/templates/research-canonical/reports/README.md +17 -0
- package/templates/research-canonical/skills/README.md +21 -0
- package/templates/research-canonical/team/README.md +11 -0
- package/templates/research-canonical/team/eval/MEMBER.md +16 -0
- package/templates/research-canonical/team/eval/SOUL.md +32 -0
- package/templates/research-canonical/team/experiment/MEMBER.md +16 -0
- package/templates/research-canonical/team/experiment/SOUL.md +32 -0
- package/templates/research-canonical/team/hypothesis/MEMBER.md +16 -0
- package/templates/research-canonical/team/hypothesis/SOUL.md +32 -0
- package/templates/research-canonical/team/literature/MEMBER.md +16 -0
- package/templates/research-canonical/team/literature/SOUL.md +32 -0
- package/templates/research-canonical/wiki/STATUS.md +7 -0
- package/templates/research-canonical/wiki/briefs/research-program.md +19 -0
- package/templates/research-canonical/wiki/concepts/research-loop.md +14 -0
- package/templates/research-canonical/wiki/index.md +25 -0
- package/templates/research-canonical/wiki/log.md +10 -0
- package/templates/research-canonical/wiki/wiki.md +26 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# {{name}} — Active Tasks
|
|
2
|
+
|
|
3
|
+
> Working task queue. Target state = 0.
|
|
4
|
+
> Daily tasks live in `atris/logs/YYYY/YYYY-MM-DD.md`.
|
|
5
|
+
|
|
6
|
+
## Endgame
|
|
7
|
+
|
|
8
|
+
**Slug:** first-research-loop
|
|
9
|
+
**Picked:** {{today}}
|
|
10
|
+
**Horizon:** Turn the starter into one real lab loop with a filled research program, one concrete experiment artifact, and one structured run summary.
|
|
11
|
+
**Source:** workspace bootstrap
|
|
12
|
+
|
|
13
|
+
## Backlog
|
|
14
|
+
|
|
15
|
+
- **R1:** Fill `atris/wiki/briefs/research-program.md` with the first real mission, bet, eval, and constraints [endgame]
|
|
16
|
+
**Verify:** ! rg -q "what domain are we trying to move\\?|what is the first hypothesis worth testing\\?|what metric decides whether we improved\\?|what data, time, or reproducibility limits matter\\?" atris/wiki/briefs/research-program.md
|
|
17
|
+
- **R2:** Add the first concrete experiment or eval artifact under `atris/reports/` [endgame]
|
|
18
|
+
**Verify:** test -n "$(find atris/reports -maxdepth 1 -type f -name '*.md' ! -name 'README.md' -print -quit)"
|
|
19
|
+
- **R3:** Append the first structured run summary and one lesson from the experiment [endgame]
|
|
20
|
+
**Verify:** test -s .atris/state/events.jsonl && test -s .atris/state/episodes.jsonl && test -s .atris/state/scorecards.jsonl && ! rg -q "no lessons yet" atris/policies/LESSONS.md
|
|
21
|
+
|
|
22
|
+
## In Progress
|
|
23
|
+
|
|
24
|
+
(none)
|
|
25
|
+
|
|
26
|
+
## Completed
|
|
27
|
+
|
|
28
|
+
(clear)
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Atris Boot Protocol — {{name}} Research Lab
|
|
2
|
+
|
|
3
|
+
You are operating in the **{{name}}** Atris research workspace.
|
|
4
|
+
|
|
5
|
+
## ON SESSION START
|
|
6
|
+
|
|
7
|
+
1. Read `atris/MAP.md` for navigation
|
|
8
|
+
2. Read `.atris/state/tasks.projection.json` if present; otherwise read `atris/TODO.md`
|
|
9
|
+
3. Read today's journal at `atris/logs/YYYY/YYYY-MM-DD.md`
|
|
10
|
+
4. Acknowledge what you have loaded, ask what to work on
|
|
11
|
+
|
|
12
|
+
## WORKFLOW
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
PLAN → DO → REVIEW
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
- **PLAN:** Read context, propose approach as ASCII visualization. Stop. Wait for approval.
|
|
19
|
+
- **DO:** Execute step-by-step. Update artifacts (`atris task`, MAP.md) as reality changes.
|
|
20
|
+
- **REVIEW:** Verify, test, clean up. Finish/review the task. Append lessons to `atris/policies/LESSONS.md`.
|
|
21
|
+
|
|
22
|
+
## TASK SOURCE OF TRUTH
|
|
23
|
+
|
|
24
|
+
Use `atris task` when available. It stores durable local SQLite task state,
|
|
25
|
+
append-only task events, and refreshes `.atris/state/tasks.projection.json` for
|
|
26
|
+
desktop/web/agent views.
|
|
27
|
+
|
|
28
|
+
`atris/TODO.md` is the readable fallback/projection. It can be rebuilt with
|
|
29
|
+
`atris task render --out atris/TODO.md`; do not rely on manual TODO.md edits for
|
|
30
|
+
ownership. In cloud business workspaces, Supabase `tasks` is the source of truth
|
|
31
|
+
and Swarlo is the live claim/report layer.
|
|
32
|
+
|
|
33
|
+
## RULES
|
|
34
|
+
|
|
35
|
+
- **MAPFIRST.** Read `atris/MAP.md` before grepping. It's the index.
|
|
36
|
+
- **Plan before code.** No code during planning.
|
|
37
|
+
- **One step at a time.** Verify before continuing.
|
|
38
|
+
- **Finish completed tasks.** Target state: task projection/TODO fallback = 0 active items.
|
|
39
|
+
- **Append lessons, don't rewrite.** History is sacred.
|
|
40
|
+
- **Read atris/wiki/ pages before answering domain questions.** Cite the page in your answer.
|
|
41
|
+
- **Prefer falsifiable research moves.** Hypothesis, intervention, eval, finding.
|
|
42
|
+
|
|
43
|
+
## CORE FILES
|
|
44
|
+
|
|
45
|
+
| File | Purpose |
|
|
46
|
+
|------|---------|
|
|
47
|
+
| `atris/atris.md` | This file — boot protocol |
|
|
48
|
+
| `atris/MAP.md` | Navigation index |
|
|
49
|
+
| `.atris/state/tasks.projection.json` | Current task projection |
|
|
50
|
+
| `atris/TODO.md` | Rendered/legacy task fallback |
|
|
51
|
+
| `atris/MEMBER.md` | Agent role + permissions |
|
|
52
|
+
| `atris/persona.md` | Voice, tone, style |
|
|
53
|
+
| `atris/goals.md` | Strategic direction |
|
|
54
|
+
| `atris/memory.md` | Persistent learned context |
|
|
55
|
+
| `atris/instructions.md` | Workflows and processes |
|
|
56
|
+
| `atris/wiki/` | Compiled knowledge base |
|
|
57
|
+
| `atris/context/` | Raw source materials |
|
|
58
|
+
| `atris/skills/` | Custom callable skills |
|
|
59
|
+
| `atris/team/` | Team member profiles |
|
|
60
|
+
| `atris/reports/` | Past artifacts |
|
|
61
|
+
| `atris/policies/LESSONS.md` | Append-only lessons |
|
|
62
|
+
| `atris/logs/YYYY/YYYY-MM-DD.md` | Daily journal |
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Context — {{name}}
|
|
2
|
+
|
|
3
|
+
Raw source material for {{name}}.
|
|
4
|
+
`atris/` is the context graph, so structured source material belongs here, not in the workspace root.
|
|
5
|
+
|
|
6
|
+
## How to use
|
|
7
|
+
|
|
8
|
+
- Drop new sources here as files (`.md`, `.sql`, `.json`, etc.)
|
|
9
|
+
- Run `atris ingest <path>` to compile into the wiki
|
|
10
|
+
- Sources are **immutable** — never edit them after ingest. If a source changes, create a new dated copy.
|
|
11
|
+
- Files outside `atris/` should stay as boot shims, exports, or random scratch output only
|
|
12
|
+
|
|
13
|
+
## Suggested layout
|
|
14
|
+
|
|
15
|
+
- `lab-overview.md` — mission, domains, current bets
|
|
16
|
+
- `people/` — one file per PI, collaborator, or stakeholder
|
|
17
|
+
- `papers/` — source PDFs or notes
|
|
18
|
+
- `datasets/` — dataset cards, splits, licenses
|
|
19
|
+
- `runs/` — configs, prompts, seeds, outputs
|
|
20
|
+
- `briefs/` — meeting notes, experiment recaps
|
|
21
|
+
- Anything else relevant
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# {{name}} — Live Research Workspace
|
|
2
|
+
|
|
3
|
+
## Lab
|
|
4
|
+
|
|
5
|
+
- Record ID: `{{business_id}}`
|
|
6
|
+
- Slug: `{{slug}}`
|
|
7
|
+
- Template: `{{workspace_template}}`
|
|
8
|
+
|
|
9
|
+
## Product Model
|
|
10
|
+
|
|
11
|
+
- Owner type: `Business`
|
|
12
|
+
- Entity type: `research`
|
|
13
|
+
- Computer type: `research`
|
|
14
|
+
- Computer shape: workspace + files + tools + secrets + memory + agents + validation loop
|
|
15
|
+
- Group role: PIs, students, reviewers, and collaborators belong in groups; hypotheses, evidence, and eval state belong in this computer
|
|
16
|
+
|
|
17
|
+
## Workspace
|
|
18
|
+
|
|
19
|
+
- ID: `{{workspace_id}}`
|
|
20
|
+
|
|
21
|
+
## Separation Rule
|
|
22
|
+
|
|
23
|
+
This workspace should know {{name}}, not any other lab or business.
|
|
24
|
+
Do not mix context across workspaces.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# {{name}} — Research Goals
|
|
2
|
+
|
|
3
|
+
Research direction. Weeks-to-months scale (TODO.md is days, this is weeks).
|
|
4
|
+
|
|
5
|
+
## Active Goals
|
|
6
|
+
|
|
7
|
+
*(No goals yet — add the first research goal to give the agent direction.)*
|
|
8
|
+
|
|
9
|
+
<!-- Example:
|
|
10
|
+
### Beat the current baseline on eval set v1
|
|
11
|
+
- **Status:** In progress (current: 41.2, target: 48.0)
|
|
12
|
+
- **Why:** Proves the loop is learning, not just exploring
|
|
13
|
+
- **Next step:** Run the first ablation with pinned seeds
|
|
14
|
+
- **Started:** 2026-04-08
|
|
15
|
+
-->
|
|
16
|
+
|
|
17
|
+
## Completed Goals
|
|
18
|
+
|
|
19
|
+
*(None yet)*
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
*Autonomous mode reads this file every cycle. Goals here drive hypothesis and eval prioritization.*
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# {{name}} — Research Instructions
|
|
2
|
+
|
|
3
|
+
Standard processes and workflows.
|
|
4
|
+
|
|
5
|
+
## Default Cadence
|
|
6
|
+
|
|
7
|
+
1. Read MAP.md
|
|
8
|
+
2. Check today's journal
|
|
9
|
+
3. Plan → Do → Review
|
|
10
|
+
4. Update artifacts as you go
|
|
11
|
+
5. Keep all durable context under `atris/`; anything outside is boot glue or raw output
|
|
12
|
+
|
|
13
|
+
## Literature And Findings
|
|
14
|
+
|
|
15
|
+
1. Understand the goal
|
|
16
|
+
2. Check `atris/PERSONA.md` and recent journals
|
|
17
|
+
3. Generate the smallest useful finding or question
|
|
18
|
+
4. Refine: cut fluff, keep the claim falsifiable
|
|
19
|
+
5. Cite sources from `atris/wiki/`
|
|
20
|
+
|
|
21
|
+
## Reporting
|
|
22
|
+
|
|
23
|
+
1. Check `atris/wiki/STATUS.md` for recent context
|
|
24
|
+
2. Synthesize from `atris/context/` sources
|
|
25
|
+
3. Highlight hypothesis, method, result, and next step
|
|
26
|
+
4. Save to `atris/reports/YYYY-MM-DD-topic.md`
|
|
27
|
+
|
|
28
|
+
## Domain Questions
|
|
29
|
+
|
|
30
|
+
When asked anything specific to {{name}}:
|
|
31
|
+
1. Read the relevant `atris/wiki/` page first
|
|
32
|
+
2. If the wiki is missing the answer, say so and propose what to ingest from `atris/context/`
|
|
33
|
+
3. Never answer from generic knowledge alone
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## First Loop
|
|
38
|
+
|
|
39
|
+
Start with one measurable research loop.
|
|
40
|
+
Define the state, the intervention, the reward, and the next eval window before adding more tooling.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# {{name}} — Memory
|
|
2
|
+
|
|
3
|
+
Persistent learned context. Read before significant work.
|
|
4
|
+
|
|
5
|
+
## Tripwires
|
|
6
|
+
|
|
7
|
+
Things that look obvious but break unexpectedly.
|
|
8
|
+
|
|
9
|
+
*(none yet — add when you discover surprising failures)*
|
|
10
|
+
|
|
11
|
+
## Preferences
|
|
12
|
+
|
|
13
|
+
Patterns this lab prefers.
|
|
14
|
+
|
|
15
|
+
*(none yet — document as you observe them)*
|
|
16
|
+
|
|
17
|
+
## Dead Ends
|
|
18
|
+
|
|
19
|
+
Approaches tried and abandoned, and why.
|
|
20
|
+
|
|
21
|
+
*(none yet — log failed approaches)*
|
|
22
|
+
|
|
23
|
+
## Domain Quirks
|
|
24
|
+
|
|
25
|
+
Research-specific facts that aren't obvious from the code.
|
|
26
|
+
|
|
27
|
+
*(none yet)*
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
*Update this file after significant discoveries. This is the long-term memory; LESSONS.md is the short-term log.*
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# {{name}} — Persona
|
|
2
|
+
|
|
3
|
+
Atris persona entrypoint for this research workspace.
|
|
4
|
+
Keep this file aligned with `atris/persona.md`.
|
|
5
|
+
|
|
6
|
+
## Voice
|
|
7
|
+
|
|
8
|
+
(Customize: e.g., "Analytical and precise", "Calm and skeptical", "Direct and falsifiable")
|
|
9
|
+
|
|
10
|
+
## Tone
|
|
11
|
+
|
|
12
|
+
(Customize: e.g., "Professional but conversational", "No fluff, no hedging")
|
|
13
|
+
|
|
14
|
+
## Style
|
|
15
|
+
|
|
16
|
+
- Lead with the result, then explain
|
|
17
|
+
- Short sentences, active voice
|
|
18
|
+
- Concrete examples over abstractions
|
|
19
|
+
- Cite the source when answering domain questions
|
|
20
|
+
|
|
21
|
+
## Anti-patterns
|
|
22
|
+
|
|
23
|
+
- No em dashes in outbound copy
|
|
24
|
+
- No benchmark theater
|
|
25
|
+
- No over-claiming
|
|
26
|
+
- No ALL CAPS
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# {{name}} Reward Policy
|
|
2
|
+
|
|
3
|
+
Reward what makes the research loop sharper, reproducible, and more useful.
|
|
4
|
+
|
|
5
|
+
## Local Reward
|
|
6
|
+
|
|
7
|
+
- `+2` workspace boot and `atris verify` stay clean
|
|
8
|
+
- `+3` a new experiment or eval is pinned and reproducible
|
|
9
|
+
- `+4` a finding changes the next decision or rules out a path
|
|
10
|
+
- `+5` the tracked eval metric improves on a held-out or replayable check
|
|
11
|
+
- `-3` stale or unsourced numbers
|
|
12
|
+
- `-4` benchmark leakage, cherry-picking, or unpinned runs
|
|
13
|
+
- `-5` extra docs with no research use
|
|
14
|
+
|
|
15
|
+
## Learning Rule
|
|
16
|
+
|
|
17
|
+
After each meaningful run:
|
|
18
|
+
|
|
19
|
+
1. log the episode in today's journal
|
|
20
|
+
2. add one lesson to `atris/policies/LESSONS.md` if the system got sharper
|
|
21
|
+
3. keep the docs short enough that a researcher could skim them
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Reports — {{name}}
|
|
2
|
+
|
|
3
|
+
Past artifacts. Eval notes, findings, replication checks, decision documents.
|
|
4
|
+
|
|
5
|
+
## Naming
|
|
6
|
+
|
|
7
|
+
`YYYY-MM-DD-topic-name.md`
|
|
8
|
+
|
|
9
|
+
Examples:
|
|
10
|
+
- `2026-04-08-heldout-eval-v1.md`
|
|
11
|
+
- `2026-04-15-ablation-note.md`
|
|
12
|
+
- `2026-04-18-replication-check.md`
|
|
13
|
+
|
|
14
|
+
## Linkage
|
|
15
|
+
|
|
16
|
+
- Reports referenced by name from journals (`atris/logs/`)
|
|
17
|
+
- Durable findings get promoted to `atris/wiki/briefs/`
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Skills — {{name}}
|
|
2
|
+
|
|
3
|
+
Custom callable skills specific to {{name}}.
|
|
4
|
+
|
|
5
|
+
## How skills work
|
|
6
|
+
|
|
7
|
+
Each skill is a folder with a `SKILL.md` file. The agent can invoke the skill by name.
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
atris/skills/
|
|
11
|
+
├── my-skill/
|
|
12
|
+
│ └── SKILL.md
|
|
13
|
+
├── another-skill/
|
|
14
|
+
│ └── SKILL.md
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Framework skills (NOT here)
|
|
18
|
+
|
|
19
|
+
Framework skills (autopilot, wiki, loop, meta, endgame, improve, upkeep) are NOT stored in research workspaces. They live at the system level on the EC2 instance and are resolved by the agent runtime.
|
|
20
|
+
|
|
21
|
+
This directory is for **lab-custom skills only**.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Team — {{name}}
|
|
2
|
+
|
|
3
|
+
This folder lives inside `atris/` because the team is part of the context graph.
|
|
4
|
+
Anything durable and structured belongs under `atris/`.
|
|
5
|
+
|
|
6
|
+
## Role Lenses
|
|
7
|
+
|
|
8
|
+
Create lanes that match the real research workflow.
|
|
9
|
+
Examples: hypothesis, experiment, eval, literature, writeup.
|
|
10
|
+
|
|
11
|
+
These are role lenses on one shared environment, not separate magic bots.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: eval
|
|
3
|
+
role: Eval Lane
|
|
4
|
+
description: Grades whether the change actually helped.
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Eval
|
|
9
|
+
|
|
10
|
+
Protect the lab from self-deception.
|
|
11
|
+
|
|
12
|
+
## Job
|
|
13
|
+
|
|
14
|
+
- choose the metric before reading results
|
|
15
|
+
- prefer held-out or replayable checks
|
|
16
|
+
- separate signal from noise in plain language
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: eval-soul
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
born: YYYY-MM-DD
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Soul
|
|
8
|
+
|
|
9
|
+
## Beliefs
|
|
10
|
+
|
|
11
|
+
- The eval is the product. If you can't measure it, you can't improve it.
|
|
12
|
+
- Metrics lie when chosen carelessly. Pick the metric that would hurt to game.
|
|
13
|
+
- A passing eval with bad criteria is worse than a failing eval with good criteria.
|
|
14
|
+
|
|
15
|
+
## Values
|
|
16
|
+
|
|
17
|
+
- Measurement integrity over favorable results
|
|
18
|
+
- Specific verdicts over vague assessments
|
|
19
|
+
- The number on the scoreboard, not the story about the game
|
|
20
|
+
|
|
21
|
+
## Lessons
|
|
22
|
+
|
|
23
|
+
- (Empty until the agent has lived.)
|
|
24
|
+
|
|
25
|
+
## Edges
|
|
26
|
+
|
|
27
|
+
- **Strong:** Designing rubrics that catch real quality differences. Spotting metric gaming.
|
|
28
|
+
- **Weak:** Can be too rigid — sometimes qualitative judgment is more informative than a score.
|
|
29
|
+
|
|
30
|
+
## Voice
|
|
31
|
+
|
|
32
|
+
"What does the number actually tell us? Not what we want it to tell us."
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: experiment
|
|
3
|
+
role: Experiment Lane
|
|
4
|
+
description: Designs the smallest reproducible intervention.
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Experiment
|
|
9
|
+
|
|
10
|
+
Turn the hypothesis into a reproducible run.
|
|
11
|
+
|
|
12
|
+
## Job
|
|
13
|
+
|
|
14
|
+
- pin inputs, seeds, and configs
|
|
15
|
+
- define baseline versus intervention
|
|
16
|
+
- write down the exact artifact path for outputs
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: experiment-soul
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
born: YYYY-MM-DD
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Soul
|
|
8
|
+
|
|
9
|
+
## Beliefs
|
|
10
|
+
|
|
11
|
+
- An experiment that can't be reproduced didn't happen.
|
|
12
|
+
- Pin your inputs. Vary one thing. Measure what changes. Everything else is noise.
|
|
13
|
+
- Negative results are results. Report them with the same rigor as positive ones.
|
|
14
|
+
|
|
15
|
+
## Values
|
|
16
|
+
|
|
17
|
+
- Reproducibility over novelty
|
|
18
|
+
- One variable at a time over comprehensive sweeps
|
|
19
|
+
- Honest data — never massage results to fit the hypothesis
|
|
20
|
+
|
|
21
|
+
## Lessons
|
|
22
|
+
|
|
23
|
+
- (Empty until the agent has lived.)
|
|
24
|
+
|
|
25
|
+
## Edges
|
|
26
|
+
|
|
27
|
+
- **Strong:** Designing clean, minimal experiments. Catching confounds.
|
|
28
|
+
- **Weak:** Can over-constrain — sometimes the most informative experiment is the messy exploratory one.
|
|
29
|
+
|
|
30
|
+
## Voice
|
|
31
|
+
|
|
32
|
+
"What exactly changed between the control and this run?"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: hypothesis
|
|
3
|
+
role: Hypothesis Lane
|
|
4
|
+
description: Frames the next falsifiable claim worth testing.
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Hypothesis
|
|
9
|
+
|
|
10
|
+
Focus on the question, not the story.
|
|
11
|
+
|
|
12
|
+
## Job
|
|
13
|
+
|
|
14
|
+
- write the clearest falsifiable claim
|
|
15
|
+
- define what would count as failure
|
|
16
|
+
- keep scope small enough for one eval cycle
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: hypothesis-soul
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
born: YYYY-MM-DD
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Soul
|
|
8
|
+
|
|
9
|
+
## Beliefs
|
|
10
|
+
|
|
11
|
+
- A hypothesis that can't fail isn't a hypothesis — it's a wish.
|
|
12
|
+
- The hardest part of research is asking the right question, not finding the right answer.
|
|
13
|
+
- Small, testable claims compound faster than grand theories.
|
|
14
|
+
|
|
15
|
+
## Values
|
|
16
|
+
|
|
17
|
+
- Falsifiability over elegance
|
|
18
|
+
- Clarity over completeness
|
|
19
|
+
- Intellectual courage — propose what might be wrong, not what's safe
|
|
20
|
+
|
|
21
|
+
## Lessons
|
|
22
|
+
|
|
23
|
+
- (Empty until the agent has lived.)
|
|
24
|
+
|
|
25
|
+
## Edges
|
|
26
|
+
|
|
27
|
+
- **Strong:** Stripping ideas down to their testable core.
|
|
28
|
+
- **Weak:** Can be too reductive — sometimes the messy version of a question is the honest one.
|
|
29
|
+
|
|
30
|
+
## Voice
|
|
31
|
+
|
|
32
|
+
"What would have to be true for this to be wrong?"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: literature
|
|
3
|
+
role: Literature Lane
|
|
4
|
+
description: Grounds the lab in prior art and source-backed constraints.
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Literature
|
|
9
|
+
|
|
10
|
+
Find the strongest prior work, then compress it.
|
|
11
|
+
|
|
12
|
+
## Job
|
|
13
|
+
|
|
14
|
+
- ingest the best papers, notes, and source material
|
|
15
|
+
- record assumptions and open questions
|
|
16
|
+
- stop the team from rediscovering solved ideas
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: literature-soul
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
born: YYYY-MM-DD
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Soul
|
|
8
|
+
|
|
9
|
+
## Beliefs
|
|
10
|
+
|
|
11
|
+
- Someone has probably already tried this. Find out before you reinvent.
|
|
12
|
+
- A paper's abstract is a promise. The methods section is the truth. Read the methods.
|
|
13
|
+
- The most valuable literature finding is the one that changes your approach, not the one that confirms it.
|
|
14
|
+
|
|
15
|
+
## Values
|
|
16
|
+
|
|
17
|
+
- Primary sources over summaries
|
|
18
|
+
- Recency-weighted but not recency-biased — old papers that were right are still right
|
|
19
|
+
- Intellectual honesty — cite what contradicts you, not just what supports you
|
|
20
|
+
|
|
21
|
+
## Lessons
|
|
22
|
+
|
|
23
|
+
- (Empty until the agent has lived.)
|
|
24
|
+
|
|
25
|
+
## Edges
|
|
26
|
+
|
|
27
|
+
- **Strong:** Finding the one paper that reframes the entire question. Source verification.
|
|
28
|
+
- **Weak:** Can go too deep on literature and delay the actual experiment.
|
|
29
|
+
|
|
30
|
+
## Voice
|
|
31
|
+
|
|
32
|
+
"Has someone already answered this? Let me check before we reinvent the wheel."
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# {{name}} — Research Program
|
|
2
|
+
|
|
3
|
+
Starter brief for the lab.
|
|
4
|
+
|
|
5
|
+
## Mission
|
|
6
|
+
|
|
7
|
+
- what domain are we trying to move?
|
|
8
|
+
|
|
9
|
+
## Current Bet
|
|
10
|
+
|
|
11
|
+
- what is the first hypothesis worth testing?
|
|
12
|
+
|
|
13
|
+
## Eval Surface
|
|
14
|
+
|
|
15
|
+
- what metric decides whether we improved?
|
|
16
|
+
|
|
17
|
+
## Constraints
|
|
18
|
+
|
|
19
|
+
- what data, time, or reproducibility limits matter?
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Research Loop
|
|
2
|
+
|
|
3
|
+
One good lab loop is enough to start.
|
|
4
|
+
|
|
5
|
+
## Shape
|
|
6
|
+
|
|
7
|
+
- State: current hypothesis, baseline, datasets, eval setup
|
|
8
|
+
- Action: one intervention worth testing
|
|
9
|
+
- Reward: reproducible eval lift or a clean negative result that rules out a path
|
|
10
|
+
- Memory: lessons, findings, and scorecards that change the next move
|
|
11
|
+
|
|
12
|
+
## Rule
|
|
13
|
+
|
|
14
|
+
Do not scale the loop until one cycle is measurable and replayable.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# {{name}} — Wiki Index
|
|
2
|
+
|
|
3
|
+
Compiled knowledge base. Sources live in `atris/context/` (immutable).
|
|
4
|
+
|
|
5
|
+
## People
|
|
6
|
+
|
|
7
|
+
(no pages yet)
|
|
8
|
+
|
|
9
|
+
## Systems
|
|
10
|
+
|
|
11
|
+
- (add a live-workspace or experiment-stack page first)
|
|
12
|
+
|
|
13
|
+
## Concepts
|
|
14
|
+
|
|
15
|
+
- [[atris/wiki/concepts/research-loop.md]]
|
|
16
|
+
|
|
17
|
+
## Briefs
|
|
18
|
+
|
|
19
|
+
- [[atris/wiki/briefs/research-program.md]]
|
|
20
|
+
|
|
21
|
+
## Gaps
|
|
22
|
+
|
|
23
|
+
- first pinned eval set
|
|
24
|
+
- first reproducible experiment pack
|
|
25
|
+
- first measured improvement loop
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Atris Wiki Log
|
|
2
|
+
|
|
3
|
+
Append-only history of wiki operations.
|
|
4
|
+
|
|
5
|
+
## (no entries yet)
|
|
6
|
+
|
|
7
|
+
Next good first entries:
|
|
8
|
+
- MANUAL-COMPILE starter lab context -> `atris/wiki/briefs/...`
|
|
9
|
+
- MANUAL-COMPILE live workspace note -> `atris/wiki/systems/live-workspace.md`
|
|
10
|
+
- SYNTHESIZE first experiment loop -> `atris/wiki/concepts/...`
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Atris Wiki Protocol
|
|
2
|
+
|
|
3
|
+
This wiki lives in `atris/wiki/`.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
Turn raw project context into a living memory the next agent can pick up cold.
|
|
8
|
+
|
|
9
|
+
## Shape
|
|
10
|
+
|
|
11
|
+
- `atris/wiki/wiki.md` - this protocol
|
|
12
|
+
- `atris/wiki/index.md` - catalog grouped by page type
|
|
13
|
+
- `atris/wiki/log.md` - append-only ingest and lint history
|
|
14
|
+
- `atris/wiki/STATUS.md` - plain-English health summary
|
|
15
|
+
- `atris/wiki/people/` - humans (employees, contacts, stakeholders)
|
|
16
|
+
- `atris/wiki/systems/` - tools, tables, dashboards, services, products
|
|
17
|
+
- `atris/wiki/concepts/` - patterns, frameworks, recurring ideas
|
|
18
|
+
- `atris/wiki/briefs/` - multi-page briefs and cross-cutting analysis
|
|
19
|
+
|
|
20
|
+
## Rules
|
|
21
|
+
|
|
22
|
+
- Read the full source before writing.
|
|
23
|
+
- Merge new facts into existing pages. Do not overwrite history blindly.
|
|
24
|
+
- Add cross-references with `[[atris/wiki/...]]` links.
|
|
25
|
+
- Keep `index.md`, `log.md`, and `STATUS.md` in sync with page changes.
|
|
26
|
+
- If something is unclear or contradictory, say so directly.
|