-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed-tasks.sh
More file actions
executable file
·179 lines (142 loc) · 5.9 KB
/
Copy pathseed-tasks.sh
File metadata and controls
executable file
·179 lines (142 loc) · 5.9 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#!/bin/bash
set -euo pipefail
# ============================================================================
# seed-tasks.sh — Create initial labels and task Issues for testing
# ============================================================================
echo "Creating labels..."
# Task lifecycle labels
gh label create "task" --color "808080" --description "One research question" --force
gh label create "accepted" --color "2ea44f" --description "Approved for research" --force
gh label create "proposed" --color "ffffff" --description "Awaiting /accept" --force
gh label create "in-progress" --color "fbca04" --description "Being worked on" --force
gh label create "awaiting-review" --color "f0883e" --description "PR open, judges evaluating" --force
gh label create "needs-review" --color "f0883e" --description "PR needs review" --force
gh label create "needs-better-research" --color "d73a4a" --description "PR rejected, needs rework" --force
gh label create "hard-task" --color "b60205" --description "Failed 3+ times" --force
gh label create "unanswerable" --color "000000" --description "5 attempts failed" --force
gh label create "implemented" --color "2ea44f" --description "Done and merged" --force
# Type labels
gh label create "type-research" --color "0075ca" --description "Needs web search" --force
gh label create "type-document" --color "006b75" --description "Needs synthesis" --force
gh label create "type-review" --color "5319e7" --description "Needs quality check" --force
# Priority labels
gh label create "priority-high" --color "d73a4a" --description "Research first" --force
gh label create "priority-medium" --color "fbca04" --description "Default priority" --force
gh label create "priority-low" --color "808080" --description "Research last" --force
# Other labels
gh label create "goal" --color "0075ca" --description "Research subject" --force
gh label create "goal-amendment" --color "0075ca" --description "Goal change proposal" --force
gh label create "proposal" --color "5319e7" --description "Improvement suggestion" --force
gh label create "source" --color "0e8a16" --description "Source suggestion" --force
gh label create "ai-proposed" --color "ffffff" --description "AI generated" --force
gh label create "coverage-gap" --color "f0883e" --description "Gap found by Goal Manager" --force
echo ""
echo "Creating task Issues..."
gh issue create \
--title "Research Karpathy's academic work at Stanford" \
--body "## Type
Research
## Section
Intellectual Contributions
## Why needed
Foundation of his career — PhD work on visual recognition, ImageNet contributions, and early deep learning research.
## What to find
- PhD thesis topic and advisor
- Key papers published at Stanford
- Contributions to ImageNet and visual recognition
- CS231n course creation timeline
## Suggested sources
- Stanford AI Lab pages
- Google Scholar
- Karpathy's personal blog
## Acceptance criteria
- [ ] PhD advisor and thesis topic identified with Tier 1 source
- [ ] At least 3 key papers listed with citation counts
- [ ] CS231n origin documented" \
--label "task,accepted,type-research,priority-high"
gh issue create \
--title "Research Karpathy's role at OpenAI" \
--body "## Type
Research
## Section
Intellectual Contributions
## Why needed
OpenAI founding member — understanding his contributions there is central to his story.
## What to find
- When he joined and in what capacity
- Key projects he led or contributed to
- Why he left (both times)
- His public statements about OpenAI
## Suggested sources
- OpenAI blog posts
- Karpathy's Twitter/X
- Tech press interviews
## Acceptance criteria
- [ ] Join date and role documented with Tier 1 source
- [ ] At least 2 key projects identified
- [ ] Departure context from primary sources" \
--label "task,accepted,type-research,priority-high"
gh issue create \
--title "Research Karpathy's work at Tesla Autopilot" \
--body "## Type
Research
## Section
Intellectual Contributions
## Why needed
Led Tesla's AI/Autopilot team — major career chapter with significant technical contributions.
## What to find
- Role and title at Tesla
- Duration of tenure
- Key technical decisions and approaches
- His talks about Tesla's vision-only approach
- Why he left Tesla
## Suggested sources
- Tesla AI Day presentations
- Karpathy's conference talks
- Tesla blog posts
## Acceptance criteria
- [ ] Title and tenure documented
- [ ] Vision-only approach explained with Tier 1 source
- [ ] At least 2 Tesla AI Day contributions documented" \
--label "task,accepted,type-research,priority-medium"
gh issue create \
--title "Research Eureka Labs founding and mission" \
--body "## Type
Research
## Section
Eureka Labs
## Why needed
His current venture — understanding what he's building now and why.
## What to find
- Founding date and announcement
- Stated mission and vision
- Any products or courses launched
- Team and funding (if public)
## Suggested sources
- Eureka Labs website
- Karpathy's announcement posts
- Tech press coverage
## Acceptance criteria
- [ ] Founding date confirmed with Tier 1 source
- [ ] Mission statement documented
- [ ] Any public products/courses listed" \
--label "task,accepted,type-research,priority-medium"
gh issue create \
--title "Synthesize Intellectual Contributions section" \
--body "## Type
Document
## Section
Intellectual Contributions
## Why needed
After research tasks complete, this section needs synthesis into coherent narrative.
## What to find
N/A — synthesis task, no new research.
## Acceptance criteria
- [ ] Section reads as coherent prose, not bullet points
- [ ] All existing citations preserved
- [ ] No new claims added
- [ ] Confidence levels maintained" \
--label "task,accepted,type-document,priority-low"
echo ""
echo "Done! Created 5 task Issues."
echo "Run './autoresearch.sh' to see the score."