-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgolems.registry.json
More file actions
222 lines (216 loc) · 5.93 KB
/
golems.registry.json
File metadata and controls
222 lines (216 loc) · 5.93 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
{
"$schema": "./golems.registry.schema.json",
"version": "1.0.0",
"updatedAt": "2026-02-09",
"packages": {
"autonomous": {
"path": "packages/autonomous",
"description": "Telegram bot + email/job/recruiter/teller golems",
"runtime": "bun",
"entrypoints": {
"telegram": "src/telegram/index.ts",
"cloudWorker": "src/cloud-worker.ts",
"nightShift": "src/night-shift.ts",
"briefing": "src/briefing.ts",
"doctor": "src/doctor.ts"
}
},
"ralph": {
"path": "external:github.com/EtanHey/ralph",
"description": "Autonomous AI coding loop for PRD execution (external repo)",
"runtime": "zsh",
"entrypoints": {
"main": "ralph.zsh"
}
},
"brainlayer": {
"path": "external:github.com/EtanHey/brainlayer",
"description": "Memory layer for Claude Code — semantic search over past sessions (external repo)",
"runtime": "python",
"entrypoints": {
"cli": "brainlayer",
"mcp": "brainlayer-mcp"
}
},
"docsite": {
"path": "packages/docsite",
"description": "Docusaurus documentation site",
"runtime": "node",
"entrypoints": {}
},
"golemsTui": {
"path": "packages/golems-tui",
"description": "React Ink terminal dashboard",
"runtime": "node",
"entrypoints": {}
},
"taxHelper": {
"path": "packages/tax-helper",
"description": "Tax analysis golem (Schedule C categorization)",
"runtime": "node",
"entrypoints": {}
}
},
"golems": {
"claude": {
"name": "ClaudeGolem",
"package": "autonomous",
"description": "External face — Telegram chat, content posting",
"entrypoint": "src/telegram/index.ts"
},
"email": {
"name": "EmailGolem",
"package": "autonomous",
"description": "Email triage, scoring, routing, draft replies, follow-up tracking",
"entrypoint": "src/email-golem/index.ts",
"schedule": "every 10 min"
},
"job": {
"name": "JobGolem",
"package": "autonomous",
"description": "Job board scraping (SecretTLV, Drushim, Indeed, Goozali, Greenhouse, Lever)",
"entrypoint": "src/job-golem/index.ts",
"schedule": "6am, 9am, 1pm"
},
"recruiter": {
"name": "RecruiterGolem",
"package": "autonomous",
"description": "Outreach pipeline — contact finder, style adapter, auto-outreach, LinkedIn matching",
"entrypoint": "src/recruiter-golem/outreach.ts"
},
"teller": {
"name": "TellerGolem",
"package": "autonomous",
"description": "Finance & tax — transaction categorization, alerts, reports",
"entrypoint": "src/teller-golem/index.ts"
},
"maintainer": {
"name": "MaintainerGolem",
"package": "autonomous",
"description": "Ecosystem health — doctor checks, wizard setup, service monitoring",
"entrypoint": "src/doctor.ts"
}
},
"services": {
"telegram": {
"plist": "com.golemszikaron.telegram",
"description": "Telegram bot — always running",
"type": "keepAlive"
},
"emailGolem": {
"plist": "com.golemszikaron.email-golem",
"description": "Email poller — every 10 minutes",
"type": "interval",
"intervalSeconds": 600
},
"jobGolem": {
"plist": "com.golemszikaron.job-golem",
"description": "Job scraping — 3x daily",
"type": "calendar"
},
"briefing": {
"plist": "com.golemszikaron.briefing",
"description": "Morning briefing — daily summary",
"type": "calendar"
},
"nightShift": {
"plist": "com.golemszikaron.nightshift",
"description": "Autonomous improvements at 3am",
"type": "calendar"
},
"ollama": {
"plist": "com.golemszikaron.ollama",
"description": "Local LLM for scoring (Ollama)",
"type": "keepAlive"
},
"sessionArchiver": {
"plist": "com.golems.session-archiver",
"description": "Archive Claude Code sessions to BrainLayer",
"type": "interval"
},
"storageCleanup": {
"plist": "com.golems.storage-cleanup",
"description": "Clean up stale data and logs",
"type": "interval"
}
},
"mcpServers": {
"brainlayer": {
"description": "Memory search over past Claude Code sessions",
"transport": "stdio"
},
"golemsEmail": {
"description": "Email tools — triage, scoring, routing (7 functions)",
"transport": "stdio"
},
"golemsJobs": {
"description": "Job matching and tracking tools",
"transport": "stdio"
},
"sophtron": {
"description": "Chase banking data access",
"transport": "stdio"
},
"supabase": {
"description": "Cloud database (etanheyman.com)",
"transport": "stdio"
},
"exa": {
"description": "Web search via Exa AI",
"transport": "stdio"
}
},
"infrastructure": {
"supabase": {
"projectId": "mkijzwkuubtfjqcemorx",
"description": "etanheyman.com — dashboard, jobs, emails, outreach"
},
"railway": {
"projectName": "helpful-empathy",
"description": "Cloud worker — email poller, job scraper, briefing"
},
"vercel": {
"domain": "etanheyman.com",
"description": "Frontend dashboard + portfolio"
}
},
"skills": [
"1password",
"archive",
"brave",
"catchup",
"catchup-recent",
"cli-agents",
"coderabbit",
"commit",
"content",
"context-audit",
"context7",
"convex",
"create-pr",
"critique-waves",
"email-golem",
"github",
"github-research",
"interview-practice",
"large-plan",
"learn-mistake",
"linkedin-post",
"lsp",
"notify",
"obsidian",
"pr-comments",
"prd",
"prd-manager",
"project-context",
"railway",
"ralph-commit",
"ralph-install",
"skills",
"tax-helper",
"test-plan",
"worktrees",
"writing-skills",
"brainlayer"
]
}