File size: 2,115 Bytes
c11b76c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# How to bootstrap the registry repo

Once you create `karlesmarin/tafagent-registry` on GitHub (empty, public, no README),
copy the contents of this `registry-bootstrap/` directory into the new repo.

## Steps

```bash
# 1. Clone the empty registry repo somewhere
git clone https://github.com/karlesmarin/tafagent-registry
cd tafagent-registry

# 2. Copy bootstrap files
cp -r /path/to/tafagent/registry-bootstrap/* .
cp -r /path/to/tafagent/registry-bootstrap/.github .

# 3. Initial commit
git add -A
git commit -m "feat: initial registry bootstrap (README + issue templates)"
git push

# 4. Done — registry is now ready to receive submissions
```

## Or via GitHub web UI (no clone needed)

1. https://github.com/karlesmarin/tafagent-registry → "Add file" → "Upload files"
2. Drag the entire contents of `registry-bootstrap/` (including `.github/` folder)
3. Commit message: "feat: initial registry bootstrap"
4. Submit

## What this gives you

- Public README explaining the registry
- 5 issue templates that auto-appear when contributors click "New issue":
  * ✅ Verified analysis
  * ❌ Refute a prediction
  * 🐛 Bug in TAF Agent
  * 💡 Propose new recipe
  * ➕ Add new model preset
- Labels are NOT auto-created — you'll need to manually add them on first issue
  (verified, refuted, recipe-proposed, preset-proposed, bug, discussion, question,
  frontier)

## Recommended labels to create manually

In repo Settings → Labels:

| Label | Color | Description |
|-------|-------|-------------|
| `verified` | green (#0e8a16) | independently confirmed by user |
| `refuted` | red (#d73a4a) | empirical measurement contradicts TAF |
| `recipe-proposed` | blue (#0075ca) | new recipe request |
| `preset-proposed` | blue (#0075ca) | new model preset request |
| `bug` | red (#d73a4a) | bug in TAF Agent web tool |
| `discussion` | gray (#cfd3d7) | open discussion |
| `question` | purple (#cc317c) | clarification needed |
| `frontier` | yellow (#fbca04) | very recent model under evaluation |

That's it. After this, the **📤 Submit to registry** button in TAF Agent
will work end-to-end.