@vectorize-io/self-driving-agents 0.0.23 โ 0.0.26
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/README.md +486 -87
- package/dist/cli.d.ts +9 -1
- package/dist/cli.js +110 -35
- package/dist/skill/SKILL.md +3 -1
- package/dist/tests/cli.test.js +88 -0
- package/dist/tests/lint.test.d.ts +1 -0
- package/dist/tests/lint.test.js +85 -0
- package/hermes-plugin/__init__.py +470 -0
- package/hermes-plugin/plugin.yaml +7 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,128 +1,527 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="public/sda-banner.jpg" alt="Self-Driving Agents" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="https://www.npmjs.com/package/@vectorize-io/self-driving-agents"><img src="https://img.shields.io/npm/v/@vectorize-io/self-driving-agents?style=flat-square" alt="npm version" /></a>
|
|
7
|
+
<a href="https://www.npmjs.com/package/@vectorize-io/self-driving-agents"><img src="https://img.shields.io/npm/dm/@vectorize-io/self-driving-agents?style=flat-square" alt="npm downloads" /></a>
|
|
8
|
+
<a href="https://github.com/vectorize-io/self-driving-agents/stargazers"><img src="https://img.shields.io/github/stars/vectorize-io/self-driving-agents?style=flat-square" alt="GitHub stars" /></a>
|
|
9
|
+
<a href="https://github.com/vectorize-io/self-driving-agents/commits"><img src="https://img.shields.io/github/last-commit/vectorize-io/self-driving-agents?style=flat-square" alt="Last commit" /></a>
|
|
10
|
+
<a href="https://github.com/vectorize-io/self-driving-agents/issues"><img src="https://img.shields.io/github/issues/vectorize-io/self-driving-agents?style=flat-square" alt="Open issues" /></a>
|
|
11
|
+
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-yellow.svg?style=flat-square" alt="License: MIT" /></a>
|
|
12
|
+
<a href="https://vectorize-io.github.io/self-driving-agents/"><img src="https://img.shields.io/badge/docs-online-blue?style=flat-square" alt="Docs" /></a>
|
|
13
|
+
</p>
|
|
4
14
|
|
|
5
|
-
|
|
15
|
+
## A Complete AI Workforce in a Box
|
|
6
16
|
|
|
7
|
-
|
|
17
|
+
179 ready-to-use, self-learning AI agents organized into 13 departments. Powered by [Hindsight](https://github.com/vectorize-io/hindsight).
|
|
8
18
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Claude Chat / Cowork
|
|
19
|
+
**Divisions:** [Design](#design) ยท [Engineering](#engineering) ยท [Finance](#finance) ยท [Game Development](#game-development) ยท [Marketing](#marketing) ยท [Paid Media](#paid-media) ยท [Product](#product) ยท [Project Management](#project-management) ยท [Sales](#sales) ยท [Spatial Computing](#spatial-computing) ยท [Specialized](#specialized) ยท [Support](#support) ยท [Testing](#testing)
|
|
12
20
|
|
|
13
21
|
```bash
|
|
22
|
+
# Built-in agent
|
|
14
23
|
npx @vectorize-io/self-driving-agents install marketing/seo --harness claude
|
|
24
|
+
|
|
25
|
+
# Local directory or any GitHub repo
|
|
26
|
+
npx @vectorize-io/self-driving-agents install ./my-agent --harness claude
|
|
27
|
+
npx @vectorize-io/self-driving-agents install my-org/my-repo/path --harness claude
|
|
28
|
+
|
|
29
|
+
# Start blank, build through conversation
|
|
30
|
+
npx @vectorize-io/self-driving-agents install my-agent --harness claude --empty
|
|
15
31
|
```
|
|
16
32
|
|
|
17
|
-
|
|
33
|
+
Harnesses: `claude` ยท `claude-code` ยท `openclaw` ยท `nemoclaw` ยท `hermes`
|
|
18
34
|
|
|
19
|
-
|
|
35
|
+
**Type `/<agent-name>` in any conversation to activate.** Claude Chat / Cowork only: upload the generated skill via `Customize โ Skills โ Upload`, then allowlist the API host at `Settings โ Capabilities`.
|
|
20
36
|
|
|
21
|
-
|
|
22
|
-
npx @vectorize-io/self-driving-agents install marketing/seo --harness openclaw
|
|
23
|
-
```
|
|
37
|
+
---
|
|
24
38
|
|
|
25
|
-
|
|
39
|
+
## Roster
|
|
26
40
|
|
|
27
|
-
|
|
28
|
-
npx @vectorize-io/self-driving-agents install marketing/seo --harness nemoclaw
|
|
29
|
-
```
|
|
41
|
+
### Design
|
|
30
42
|
|
|
31
|
-
|
|
43
|
+
#### [`design/ux`](design/ux/) โ UX research, UI, architecture
|
|
32
44
|
|
|
33
|
-
|
|
45
|
+
| Agent | Vibe |
|
|
46
|
+
|-------|------|
|
|
47
|
+
| ๐จ [UI Designer](design/ux/ui-designer.md) | Beautiful, consistent, accessible interfaces. |
|
|
48
|
+
| ๐ [UX Architect](design/ux/ux-architect.md) | Developer-friendly CSS foundations and implementation paths. |
|
|
49
|
+
| ๐ฌ [UX Researcher](design/ux/ux-researcher.md) | Real user data, not assumptions. |
|
|
34
50
|
|
|
35
|
-
|
|
36
|
-
npx @vectorize-io/self-driving-agents install ./my-agent --harness claude
|
|
37
|
-
npx @vectorize-io/self-driving-agents install my-org/my-repo/my-agent --harness openclaw
|
|
38
|
-
```
|
|
51
|
+
#### [`design/visual`](design/visual/) โ Brand, imagery, motion, delight
|
|
39
52
|
|
|
40
|
-
|
|
53
|
+
| Agent | Vibe |
|
|
54
|
+
|-------|------|
|
|
55
|
+
| ๐จ [Brand Guardian](design/visual/brand-guardian.md) | Fiercest protector of your brand. |
|
|
56
|
+
| ๐ท [Image Prompt Engineer](design/visual/image-prompt-engineer.md) | Precise prompts for stunning AI imagery. |
|
|
57
|
+
| ๐ [Inclusive Visuals Specialist](design/visual/inclusive-visuals-specialist.md) | Defeats AI bias for culturally accurate imagery. |
|
|
58
|
+
| ๐ฌ [Visual Storyteller](design/visual/visual-storyteller.md) | Visual narratives that move people. |
|
|
59
|
+
| โจ [Whimsy Injector](design/visual/whimsy-injector.md) | The unexpected moments of delight. |
|
|
41
60
|
|
|
42
|
-
|
|
43
|
-
2. Conversations are automatically retained into memory
|
|
44
|
-
3. The agent builds knowledge pages that update themselves after each conversation
|
|
45
|
-
4. Next session, the agent reads its updated pages โ it remembers what works and what you prefer
|
|
61
|
+
### Engineering
|
|
46
62
|
|
|
47
|
-
|
|
63
|
+
#### [`engineering/ai`](engineering/ai/) โ AI/ML
|
|
48
64
|
|
|
49
|
-
|
|
65
|
+
| Agent | Vibe |
|
|
66
|
+
|-------|------|
|
|
67
|
+
| ๐ค [AI Engineer](engineering/ai/ai-engineer.md) | Turns ML models into production features that actually scale. |
|
|
68
|
+
| โก [Autonomous Optimization Architect](engineering/ai/autonomous-optimization-architect.md) | System governor that makes things faster without bankrupting you. |
|
|
69
|
+
| ๐ง [Email Intelligence Engineer](engineering/ai/email-intelligence-engineer.md) | Turns messy MIME into reasoning-ready context. |
|
|
70
|
+
| ๐ง [Filament Optimization Specialist](engineering/ai/filament-optimization-specialist.md) | Streamlines complex Filament admin environments. |
|
|
71
|
+
| ๐๏ธ [Voice AI Integration Engineer](engineering/ai/voice-ai-integration-engineer.md) | Turns raw audio into structured, production-ready text. |
|
|
50
72
|
|
|
51
|
-
|
|
73
|
+
#### [`engineering/architecture`](engineering/architecture/) โ System & code architecture
|
|
52
74
|
|
|
53
|
-
|
|
75
|
+
| Agent | Vibe |
|
|
76
|
+
|-------|------|
|
|
77
|
+
| โก [Rapid Prototyper](engineering/architecture/rapid-prototyper.md) | Working prototype before the meeting's over. |
|
|
78
|
+
| ๐ [Senior Developer](engineering/architecture/senior-developer.md) | Laravel, Livewire, Three.js, advanced CSS. |
|
|
79
|
+
| ๐๏ธ [Software Architect](engineering/architecture/software-architect.md) | Systems that survive the team that built them. |
|
|
54
80
|
|
|
55
|
-
|
|
56
|
-
|---------|-------------|
|
|
57
|
-
| `marketing` | Generalist โ all 30 agent knowledge files across every specialty |
|
|
58
|
-
| `marketing/seo` | SEO specialist, search optimizer, citation strategist |
|
|
59
|
-
| `marketing/social-media` | Platform strategists for TikTok, Instagram, LinkedIn, X, Reddit |
|
|
60
|
-
| `marketing/content` | Content creator, growth hacker, book co-author |
|
|
61
|
-
| `marketing/ecommerce` | Cross-border commerce, livestream selling |
|
|
62
|
-
| `marketing/china-market` | WeChat, Douyin, Xiaohongshu, Baidu, Bilibili |
|
|
81
|
+
#### [`engineering/backend`](engineering/backend/) โ APIs, data, databases
|
|
63
82
|
|
|
64
|
-
|
|
83
|
+
| Agent | Vibe |
|
|
84
|
+
|-------|------|
|
|
85
|
+
| ๐งฌ [AI Data Remediation Engineer](engineering/backend/ai-data-remediation-engineer.md) | Fixes broken data with surgical AI precision. |
|
|
86
|
+
| ๐๏ธ [Backend Architect](engineering/backend/backend-architect.md) | Databases, APIs, cloud, scale. |
|
|
87
|
+
| ๐งฑ [CMS Developer](engineering/backend/cms-developer.md) | Drupal & WordPress at enterprise scale. |
|
|
88
|
+
| ๐ง [Data Engineer](engineering/backend/data-engineer.md) | Pipelines that turn raw data into analytics-ready assets. |
|
|
89
|
+
| ๐๏ธ [Database Optimizer](engineering/backend/database-optimizer.md) | Indexes, query plans, schema design โ no 3am pages. |
|
|
65
90
|
|
|
66
|
-
|
|
91
|
+
#### [`engineering/frontend`](engineering/frontend/) โ Web & mobile UI
|
|
67
92
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
```
|
|
93
|
+
| Agent | Vibe |
|
|
94
|
+
|-------|------|
|
|
95
|
+
| ๐ฅ๏ธ [Frontend Developer](engineering/frontend/frontend-developer.md) | Responsive, accessible web apps, pixel-perfect. |
|
|
96
|
+
| ๐ฒ [Mobile App Builder](engineering/frontend/mobile-app-builder.md) | Native-quality iOS and Android, fast. |
|
|
97
|
+
| ๐ฌ [WeChat Mini Program Developer](engineering/frontend/wechat-mini-program-developer.md) | Mini Programs that thrive in the WeChat ecosystem. |
|
|
74
98
|
|
|
75
|
-
|
|
99
|
+
#### [`engineering/ops`](engineering/ops/) โ DevOps, SRE, firmware, incidents
|
|
76
100
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
101
|
+
| Agent | Vibe |
|
|
102
|
+
|-------|------|
|
|
103
|
+
| โ๏ธ [DevOps Automator](engineering/ops/devops-automator.md) | Infra automation so the team ships faster and sleeps better. |
|
|
104
|
+
| ๐ฉ [Embedded Firmware Engineer](engineering/ops/embedded-firmware-engineer.md) | Production-grade firmware for hardware that can't crash. |
|
|
105
|
+
| ๐จ [Incident Response Commander](engineering/ops/incident-response-commander.md) | Production chaos โ structured resolution. |
|
|
106
|
+
| ๐ก๏ธ [SRE](engineering/ops/sre.md) | Error budgets fund velocity โ spend them wisely. |
|
|
107
|
+
|
|
108
|
+
#### [`engineering/security`](engineering/security/) โ AppSec, smart contracts, detection
|
|
109
|
+
|
|
110
|
+
| Agent | Vibe |
|
|
111
|
+
|-------|------|
|
|
112
|
+
| ๐ [Security Engineer](engineering/security/security-engineer.md) | Threat modeling, code review, hunting โ holds under adversaries. |
|
|
113
|
+
| โ๏ธ [Solidity Smart Contract Engineer](engineering/security/solidity-smart-contract-engineer.md) | Battle-hardened EVM developer. |
|
|
114
|
+
| ๐ฏ [Threat Detection Engineer](engineering/security/threat-detection-engineer.md) | Catches attackers after they bypass prevention. |
|
|
115
|
+
|
|
116
|
+
#### [`engineering/workflow`](engineering/workflow/) โ Code review, Git, docs, onboarding
|
|
117
|
+
|
|
118
|
+
| Agent | Vibe |
|
|
119
|
+
|-------|------|
|
|
120
|
+
| ๐๏ธ [Code Reviewer](engineering/workflow/code-reviewer.md) | Mentor, not gatekeeper โ every comment teaches. |
|
|
121
|
+
| ๐งญ [Codebase Onboarding Engineer](engineering/workflow/codebase-onboarding-engineer.md) | New devs productive โ read code, trace paths, state facts. |
|
|
122
|
+
| ๐ [Feishu Integration Developer](engineering/workflow/feishu-integration-developer.md) | Feishu/Lark integrations โ bots, approvals, data sync, SSO. |
|
|
123
|
+
| ๐ฟ [Git Workflow Master](engineering/workflow/git-workflow-master.md) | Clean history, atomic commits, branches that tell a story. |
|
|
124
|
+
| ๐ชก [Minimal Change Engineer](engineering/workflow/minimal-change-engineer.md) | Smallest diff that solves the problem. |
|
|
125
|
+
| ๐ [Technical Writer](engineering/workflow/technical-writer.md) | Docs developers actually read. |
|
|
126
|
+
|
|
127
|
+
### Finance
|
|
128
|
+
|
|
129
|
+
#### [`finance/accounting`](finance/accounting/) โ Bookkeeping & tax
|
|
130
|
+
|
|
131
|
+
| Agent | Vibe |
|
|
132
|
+
|-------|------|
|
|
133
|
+
| ๐ [Bookkeeper & Controller](finance/accounting/bookkeeper-controller.md) | Every penny accounted, every close on time. |
|
|
134
|
+
| ๐๏ธ [Tax Strategist](finance/accounting/tax-strategist.md) | Every legal dollar of savings. |
|
|
135
|
+
|
|
136
|
+
#### [`finance/analysis`](finance/analysis/) โ FP&A, financial analysis, investment research
|
|
137
|
+
|
|
138
|
+
| Agent | Vibe |
|
|
139
|
+
|-------|------|
|
|
140
|
+
| ๐ [Financial Analyst](finance/analysis/financial-analyst.md) | Spreadsheets โ strategy. |
|
|
141
|
+
| ๐ [FP&A Analyst](finance/analysis/fpa-analyst.md) | The budget whisperer. |
|
|
142
|
+
| ๐ [Investment Researcher](finance/analysis/investment-researcher.md) | Alpha in the footnotes, risk in the narratives. |
|
|
143
|
+
|
|
144
|
+
### Game Development
|
|
145
|
+
|
|
146
|
+
#### [`game-development/blender`](game-development/blender/)
|
|
147
|
+
|
|
148
|
+
| Agent | Vibe |
|
|
149
|
+
|-------|------|
|
|
150
|
+
| ๐งฉ [Blender Add-on Engineer](game-development/blender/addon-engineer.md) | Pipeline drudgery โ one-click tools. |
|
|
151
|
+
|
|
152
|
+
#### [`game-development/core`](game-development/core/) โ Engine-agnostic
|
|
153
|
+
|
|
154
|
+
| Agent | Vibe |
|
|
155
|
+
|-------|------|
|
|
156
|
+
| ๐ต [Game Audio Engineer](game-development/core/game-audio-engineer.md) | Every sound alive in the world. |
|
|
157
|
+
| ๐ฎ [Game Designer](game-development/core/game-designer.md) | Loops, levers, motivations. |
|
|
158
|
+
| ๐บ๏ธ [Level Designer](game-development/core/level-designer.md) | Authored space tells the story. |
|
|
159
|
+
| ๐ [Narrative Designer](game-development/core/narrative-designer.md) | Narrative and gameplay inseparable. |
|
|
160
|
+
| ๐จ [Technical Artist](game-development/core/technical-artist.md) | Art vision โ engine reality. |
|
|
161
|
+
|
|
162
|
+
#### [`game-development/godot`](game-development/godot/)
|
|
163
|
+
|
|
164
|
+
| Agent | Vibe |
|
|
165
|
+
|-------|------|
|
|
166
|
+
| ๐ฏ [Godot Gameplay Scripter](game-development/godot/gameplay-scripter.md) | Godot 4 with software-architect discipline. |
|
|
167
|
+
| ๐ [Godot Multiplayer Engineer](game-development/godot/multiplayer-engineer.md) | MultiplayerAPI made seamless. |
|
|
168
|
+
| ๐ [Godot Shader Developer](game-development/godot/shader-developer.md) | Light and pixels through Godot shading. |
|
|
169
|
+
|
|
170
|
+
#### [`game-development/roblox-studio`](game-development/roblox-studio/)
|
|
171
|
+
|
|
172
|
+
| Agent | Vibe |
|
|
173
|
+
|-------|------|
|
|
174
|
+
| ๐ค [Roblox Avatar Creator](game-development/roblox-studio/roblox-avatar-creator.md) | UGC pipeline from rig to Marketplace. |
|
|
175
|
+
| ๐ช [Roblox Experience Designer](game-development/roblox-studio/roblox-experience-designer.md) | Engagement loops and monetization. |
|
|
176
|
+
| ๐ง [Roblox Systems Scripter](game-development/roblox-studio/roblox-systems-scripter.md) | Luau, client-server security, scale. |
|
|
177
|
+
|
|
178
|
+
#### [`game-development/unity`](game-development/unity/)
|
|
179
|
+
|
|
180
|
+
| Agent | Vibe |
|
|
181
|
+
|-------|------|
|
|
182
|
+
| ๐๏ธ [Unity Architect](game-development/unity/architect.md) | Data-driven, decoupled, no spaghetti. |
|
|
183
|
+
| ๐ ๏ธ [Unity Editor Tool Developer](game-development/unity/editor-tool-developer.md) | Custom editor tools that save hours. |
|
|
184
|
+
| ๐ [Unity Multiplayer Engineer](game-development/unity/multiplayer-engineer.md) | Netcode that feels local. |
|
|
185
|
+
| โจ [Unity Shader Graph Artist](game-development/unity/shader-graph-artist.md) | Shader Graph + custom render passes. |
|
|
186
|
+
|
|
187
|
+
#### [`game-development/unreal-engine`](game-development/unreal-engine/)
|
|
188
|
+
|
|
189
|
+
| Agent | Vibe |
|
|
190
|
+
|-------|------|
|
|
191
|
+
| ๐ [Unreal Multiplayer Architect](game-development/unreal-engine/unreal-multiplayer-architect.md) | Server-authoritative, feels lag-free. |
|
|
192
|
+
| โ๏ธ [Unreal Systems Engineer](game-development/unreal-engine/unreal-systems-engineer.md) | C++/Blueprint for AAA Unreal. |
|
|
193
|
+
| ๐จ [Unreal Technical Artist](game-development/unreal-engine/unreal-technical-artist.md) | Niagara, Material Editor, PCG. |
|
|
194
|
+
| ๐ [Unreal World Builder](game-development/unreal-engine/unreal-world-builder.md) | World Partition, Nanite, procedural foliage. |
|
|
195
|
+
|
|
196
|
+
### Marketing
|
|
197
|
+
|
|
198
|
+
#### [`marketing/china-market`](marketing/china-market/) โ Douyin, WeChat, Xiaohongshu, Bilibili, Weibo, Zhihu, Kuaishou
|
|
199
|
+
|
|
200
|
+
| Agent | Vibe |
|
|
201
|
+
|-------|------|
|
|
202
|
+
| ๐ฌ [Bilibili Content Strategist](marketing/china-market/bilibili-content-strategist.md) | Fluent danmaku, grows your brand on B็ซ. |
|
|
203
|
+
| ๐ [China E-Commerce Operator](marketing/china-market/china-ecommerce-operator.md) | Taobao, Tmall, Pinduoduo, JD โ like a native operator. |
|
|
204
|
+
| ๐จ๐ณ [China Market Localization Strategist](marketing/china-market/china-market-localization-strategist.md) | China trend chaos โ precision marketing. |
|
|
205
|
+
| ๐ต [Douyin Strategist](marketing/china-market/douyin-strategist.md) | Masters the Douyin algorithm. |
|
|
206
|
+
| ๐ฅ [Kuaishou Strategist](marketing/china-market/kuaishou-strategist.md) | Grassroots audiences and live commerce on ๅฟซๆ. |
|
|
207
|
+
| ๐ [Private Domain Operator](marketing/china-market/private-domain-operator.md) | WeChat private traffic empire. |
|
|
208
|
+
| ๐ฑ [WeChat Official Account Manager](marketing/china-market/wechat-official-account.md) | Loyal WeChat subscriber communities. |
|
|
209
|
+
| ๐ฅ [Weibo Strategist](marketing/china-market/weibo-strategist.md) | Makes your brand trend on Weibo. |
|
|
210
|
+
| ๐ธ [Xiaohongshu Specialist](marketing/china-market/xiaohongshu-specialist.md) | Lifestyle and aesthetic storytelling on ๅฐ็บขไนฆ. |
|
|
211
|
+
| ๐ง [Zhihu Strategist](marketing/china-market/zhihu-strategist.md) | Brand authority through expert Q&A. |
|
|
212
|
+
|
|
213
|
+
#### [`marketing/content`](marketing/content/) โ Content, books, growth
|
|
214
|
+
|
|
215
|
+
| Agent | Vibe |
|
|
216
|
+
|-------|------|
|
|
217
|
+
| ๐ [Book Co-Author](marketing/content/book-co-author.md) | Expertise โ book people quote and buy into. |
|
|
218
|
+
| โ๏ธ [Content Creator](marketing/content/content-creator.md) | Stories across every platform your audience uses. |
|
|
219
|
+
| ๐ [Growth Hacker](marketing/content/growth-hacker.md) | Unexploited channel โ find and scale. |
|
|
220
|
+
|
|
221
|
+
#### [`marketing/ecommerce`](marketing/ecommerce/) โ Cross-border & livestream commerce
|
|
222
|
+
|
|
223
|
+
| Agent | Vibe |
|
|
224
|
+
|-------|------|
|
|
225
|
+
| ๐ [Cross-Border E-Commerce Specialist](marketing/ecommerce/cross-border-ecommerce.md) | Chinese factory โ global bestseller. |
|
|
226
|
+
| ๐๏ธ [Livestream Commerce Coach](marketing/ecommerce/livestream-commerce-coach.md) | Hosts: awkward beginner โ million-yuan seller. |
|
|
227
|
+
|
|
228
|
+
#### [`marketing/seo`](marketing/seo/) โ Search, AI citations, app store
|
|
229
|
+
|
|
230
|
+
| Agent | Vibe |
|
|
231
|
+
|-------|------|
|
|
232
|
+
| ๐ค [Agentic Search Optimizer](marketing/seo/agentic-search-optimizer.md) | Makes sure AI can actually do the thing on your site. |
|
|
233
|
+
| ๐ฎ [AI Citation Strategist](marketing/seo/ai-citation-strategist.md) | Rewires signals so AI recommends you, not the competitor. |
|
|
234
|
+
| ๐ฑ [App Store Optimizer](marketing/seo/app-store-optimizer.md) | Found, downloaded, loved in the store. |
|
|
235
|
+
| ๐จ๐ณ [Baidu SEO Specialist](marketing/seo/baidu-seo-specialist.md) | Ranks in China's search ecosystem. |
|
|
236
|
+
| ๐ [SEO Specialist](marketing/seo/seo-specialist.md) | Technical SEO + content for sustainable organic. |
|
|
237
|
+
| ๐ฌ [Video Optimization Specialist](marketing/seo/video-optimization-specialist.md) | Data-driven retention obsession. |
|
|
238
|
+
|
|
239
|
+
#### [`marketing/social-media`](marketing/social-media/) โ TikTok, Instagram, LinkedIn, Reddit, X
|
|
240
|
+
|
|
241
|
+
| Agent | Vibe |
|
|
242
|
+
|-------|------|
|
|
243
|
+
| ๐ [Carousel Growth Engine](marketing/social-media/carousel-growth-engine.md) | Viral carousels from any URL, auto-published. |
|
|
244
|
+
| ๐ธ [Instagram Curator](marketing/social-media/instagram-curator.md) | Grid aesthetic โ engaged community. |
|
|
245
|
+
| ๐ผ [LinkedIn Content Creator](marketing/social-media/linkedin-content-creator.md) | Scroll-stopping professional content. |
|
|
246
|
+
| ๐ง [Podcast Strategist](marketing/social-media/podcast-strategist.md) | Podcast from concept to loyal audience. |
|
|
247
|
+
| ๐ฌ [Reddit Community Builder](marketing/social-media/reddit-community-builder.md) | Fluent Reddit. Trust the authentic way. |
|
|
248
|
+
| ๐ฌ [Short-Video Editing Coach](marketing/social-media/short-video-editing-coach.md) | Raw footage โ scroll-stopping short videos. |
|
|
249
|
+
| ๐ฃ [Social Media Strategist](marketing/social-media/social-media-strategist.md) | Cross-platform campaigns that build community. |
|
|
250
|
+
| ๐ต [TikTok Strategist](marketing/social-media/tiktok-strategist.md) | Rides the algorithm, builds the culture. |
|
|
251
|
+
| ๐ฆ [Twitter Engager](marketing/social-media/twitter-engager.md) | Thought leadership 280 chars at a time. |
|
|
252
|
+
|
|
253
|
+
### Paid Media
|
|
254
|
+
|
|
255
|
+
#### [`paid-media/analytics`](paid-media/analytics/) โ Audits, attribution, search-term mining
|
|
256
|
+
|
|
257
|
+
| Agent | Vibe |
|
|
258
|
+
|-------|------|
|
|
259
|
+
| ๐ [Paid Media Auditor](paid-media/analytics/auditor.md) | Finds the waste before your CFO does. |
|
|
260
|
+
| ๐ [Search Query Analyst](paid-media/analytics/search-query-analyst.md) | Mines queries for gold competitors miss. |
|
|
261
|
+
| ๐ก [Tracking & Measurement Specialist](paid-media/analytics/tracking-specialist.md) | If it's not tracked correctly, it didn't happen. |
|
|
262
|
+
|
|
263
|
+
#### [`paid-media/channels`](paid-media/channels/) โ Creative, PPC, paid social, programmatic
|
|
264
|
+
|
|
265
|
+
| Agent | Vibe |
|
|
266
|
+
|-------|------|
|
|
267
|
+
| โ๏ธ [Ad Creative Strategist](paid-media/channels/creative-strategist.md) | Creative as a repeatable science. |
|
|
268
|
+
| ๐ฑ [Paid Social Strategist](paid-media/channels/paid-social-strategist.md) | Meta, LinkedIn, TikTok โ every dollar working harder. |
|
|
269
|
+
| ๐ฐ [PPC Campaign Strategist](paid-media/channels/ppc-strategist.md) | $10K to $10M+/mo PPC architectures. |
|
|
270
|
+
| ๐บ [Programmatic & Display Buyer](paid-media/channels/programmatic-buyer.md) | Display and video at scale. |
|
|
271
|
+
|
|
272
|
+
### Product
|
|
273
|
+
|
|
274
|
+
#### [`product/delivery`](product/delivery/) โ PM, prioritization, behavioral
|
|
275
|
+
|
|
276
|
+
| Agent | Vibe |
|
|
277
|
+
|-------|------|
|
|
278
|
+
| ๐ง [Behavioral Nudge Engine](product/delivery/behavioral-nudge-engine.md) | Behavioral psych for user motivation. |
|
|
279
|
+
| ๐งญ [Product Manager](product/delivery/manager.md) | Ships the right thing, not the next thing. |
|
|
280
|
+
| ๐ฏ [Sprint Prioritizer](product/delivery/sprint-prioritizer.md) | Ruthless focus on sprint value. |
|
|
281
|
+
|
|
282
|
+
#### [`product/discovery`](product/discovery/) โ Research & feedback
|
|
283
|
+
|
|
284
|
+
| Agent | Vibe |
|
|
285
|
+
|-------|------|
|
|
286
|
+
| ๐ [Feedback Synthesizer](product/discovery/feedback-synthesizer.md) | 1000 user voices โ 5 things to build. |
|
|
287
|
+
| ๐ญ [Trend Researcher](product/discovery/trend-researcher.md) | Trends before mainstream. |
|
|
288
|
+
|
|
289
|
+
### Project Management
|
|
290
|
+
|
|
291
|
+
#### [`project-management/delivery`](project-management/delivery/) โ Experiments & Jira workflow
|
|
292
|
+
|
|
293
|
+
| Agent | Vibe |
|
|
294
|
+
|-------|------|
|
|
295
|
+
| ๐งช [Experiment Tracker](project-management/delivery/experiment-tracker.md) | Designs experiments, tracks results, lets data decide. |
|
|
296
|
+
| ๐ [Jira Workflow Steward](project-management/delivery/jira-workflow-steward.md) | Traceable commits, structured PRs, release-safe branches. |
|
|
297
|
+
|
|
298
|
+
#### [`project-management/planning`](project-management/planning/) โ PM, scoping, shepherding
|
|
299
|
+
|
|
300
|
+
| Agent | Vibe |
|
|
301
|
+
|-------|------|
|
|
302
|
+
| ๐ [Project Shepherd](project-management/planning/project-shepherd.md) | Cross-functional chaos โ on-time delivery. |
|
|
303
|
+
| ๐ [Senior Project Manager](project-management/planning/project-manager-senior.md) | Realistic scope โ no gold-plating. |
|
|
304
|
+
|
|
305
|
+
#### [`project-management/studio`](project-management/studio/) โ Studio production & ops
|
|
306
|
+
|
|
307
|
+
| Agent | Vibe |
|
|
308
|
+
|-------|------|
|
|
309
|
+
| ๐ญ [Studio Operations](project-management/studio/studio-operations.md) | Processes, tools, people in sync. |
|
|
310
|
+
| ๐ฌ [Studio Producer](project-management/studio/studio-producer.md) | Creative vision aligned to business. |
|
|
311
|
+
|
|
312
|
+
### Sales
|
|
313
|
+
|
|
314
|
+
#### [`sales/coaching`](sales/coaching/) โ Discovery and rep coaching
|
|
315
|
+
|
|
316
|
+
| Agent | Vibe |
|
|
317
|
+
|-------|------|
|
|
318
|
+
| ๐ [Discovery Coach](sales/coaching/discovery-coach.md) | The one extra question that closes the deal. |
|
|
319
|
+
| ๐๏ธ [Sales Coach](sales/coaching/coach.md) | Makes the rep rethink the deal. |
|
|
320
|
+
|
|
321
|
+
#### [`sales/ops`](sales/ops/) โ Pipeline analytics & sales engineering
|
|
87
322
|
|
|
88
|
-
|
|
323
|
+
| Agent | Vibe |
|
|
324
|
+
|-------|------|
|
|
325
|
+
| ๐ [Pipeline Analyst](sales/ops/pipeline-analyst.md) | Tells you your forecast is wrong before you do. |
|
|
326
|
+
| ๐ ๏ธ [Sales Engineer](sales/ops/engineer.md) | Wins the technical decision pre-procurement. |
|
|
89
327
|
|
|
90
|
-
|
|
328
|
+
#### [`sales/strategy`](sales/strategy/) โ Account, deal, outbound, proposal
|
|
91
329
|
|
|
92
|
-
|
|
330
|
+
| Agent | Vibe |
|
|
331
|
+
|-------|------|
|
|
332
|
+
| ๐บ๏ธ [Account Strategist](sales/strategy/account-strategist.md) | Maps the org, finds the whitespace, expands. |
|
|
333
|
+
| โ๏ธ [Deal Strategist](sales/strategy/deal-strategist.md) | Qualifies like a surgeon, kills happy ears. |
|
|
334
|
+
| ๐ฏ [Outbound Strategist](sales/strategy/outbound-strategist.md) | Buying signals into booked meetings. |
|
|
335
|
+
| ๐น [Proposal Strategist](sales/strategy/proposal-strategist.md) | RFP responses buyers can't put down. |
|
|
93
336
|
|
|
94
|
-
|
|
95
|
-
2. **Configures connection** โ prompts for Hindsight Cloud or self-hosted API URL and token
|
|
96
|
-
3. **Connects to Hindsight** and imports the `bank-template.json` (memory bank config, knowledge pages, directives)
|
|
97
|
-
4. **Ingests all content files** (`.md`, `.txt`, etc.) found recursively as seed knowledge
|
|
98
|
-
5. **Generates the agent** โ creates a skill (Claude) or workspace (OpenClaw/NemoClaw) with the knowledge tools baked in
|
|
337
|
+
### Spatial Computing
|
|
99
338
|
|
|
100
|
-
|
|
339
|
+
#### [`spatial-computing/platform`](spatial-computing/platform/) โ visionOS, Metal, terminals
|
|
101
340
|
|
|
102
|
-
|
|
341
|
+
| Agent | Vibe |
|
|
342
|
+
|-------|------|
|
|
343
|
+
| ๐ [macOS Spatial/Metal Engineer](spatial-computing/platform/macos-spatial-metal-engineer.md) | Metal pushed to its limits on macOS and Vision Pro. |
|
|
344
|
+
| ๐ฅ๏ธ [Terminal Integration Specialist](spatial-computing/platform/terminal-integration-specialist.md) | Terminal emulation and text rendering in Swift. |
|
|
345
|
+
| ๐ฅฝ [visionOS Spatial Engineer](spatial-computing/platform/visionos-spatial-engineer.md) | Native volumetric interfaces, Liquid Glass. |
|
|
103
346
|
|
|
104
|
-
-
|
|
105
|
-
- No external dependencies โ uses `curl` to call the Hindsight REST API
|
|
106
|
-
- The skill instructs Claude to load knowledge pages at startup, retain user feedback during conversations, and manage pages
|
|
107
|
-
- Upload the zip via **Customize โ Skills โ Upload** in Claude Chat or Cowork
|
|
108
|
-
- After upload, allowlist the API host in **Settings โ Capabilities**
|
|
109
|
-
- Type `/<agent-name>` in any conversation to activate
|
|
347
|
+
#### [`spatial-computing/xr`](spatial-computing/xr/) โ XR/WebXR/cockpit
|
|
110
348
|
|
|
111
|
-
|
|
349
|
+
| Agent | Vibe |
|
|
350
|
+
|-------|------|
|
|
351
|
+
| ๐น๏ธ [XR Cockpit Interaction Specialist](spatial-computing/xr/xr-cockpit-interaction-specialist.md) | Immersive cockpit control systems. |
|
|
352
|
+
| ๐ [XR Immersive Developer](spatial-computing/xr/xr-immersive-developer.md) | Browser-based AR/VR/XR pushing WebXR. |
|
|
353
|
+
| ๐ซง [XR Interface Architect](spatial-computing/xr/xr-interface-architect.md) | Spatial interaction that feels like instinct. |
|
|
354
|
+
|
|
355
|
+
### Specialized
|
|
356
|
+
|
|
357
|
+
#### [`specialized/automation`](specialized/automation/) โ Data, docs, distribution
|
|
358
|
+
|
|
359
|
+
| Agent | Vibe |
|
|
360
|
+
|-------|------|
|
|
361
|
+
| ๐๏ธ [Data Consolidation Agent](specialized/automation/data-consolidation-agent.md) | Scattered sales data โ live dashboards. |
|
|
362
|
+
| ๐ [Document Generator](specialized/automation/document-generator.md) | PDFs, slides, spreadsheets from code. |
|
|
363
|
+
| ๐ค [Report Distribution Agent](specialized/automation/report-distribution-agent.md) | Reports delivered to the right reps. |
|
|
364
|
+
|
|
365
|
+
#### [`specialized/compliance-trust`](specialized/compliance-trust/) โ Identity, audits, ZK
|
|
366
|
+
|
|
367
|
+
| Agent | Vibe |
|
|
368
|
+
|-------|------|
|
|
369
|
+
| ๐ [Agentic Identity & Trust Architect](specialized/compliance-trust/agentic-identity-trust.md) | Every agent proves who, what, when. |
|
|
370
|
+
| โ๏ธ [Automation Governance Architect](specialized/compliance-trust/automation-governance-architect.md) | Reliable systems > automation hype. |
|
|
371
|
+
| ๐ก๏ธ [Blockchain Security Auditor](specialized/compliance-trust/blockchain-security-auditor.md) | Finds the exploit before the attacker. |
|
|
372
|
+
| ๐ [Compliance Auditor](specialized/compliance-trust/compliance-auditor.md) | Readiness โ SOC 2 certification. |
|
|
373
|
+
| ๐ธ๏ธ [Identity Graph Operator](specialized/compliance-trust/identity-graph-operator.md) | Same canonical answer across all agents. |
|
|
374
|
+
| ๐๏ธ [ZK Steward](specialized/compliance-trust/zk-steward.md) | Zettelkasten for validated knowledge bases. |
|
|
375
|
+
|
|
376
|
+
#### [`specialized/customer-service`](specialized/customer-service/) โ Hospitality, retail, general
|
|
377
|
+
|
|
378
|
+
| Agent | Vibe |
|
|
379
|
+
|-------|------|
|
|
380
|
+
| ๐ง [Customer Service](specialized/customer-service/customer-service.md) | Problem โ loyalty, with speed and care. |
|
|
381
|
+
| ๐จ [Hospitality Guest Services](specialized/customer-service/hospitality-guest-services.md) | Hospitality is a feeling. |
|
|
382
|
+
| ๐ [Retail Customer Returns](specialized/customer-service/retail-customer-returns.md) | A return is an opportunity. |
|
|
383
|
+
|
|
384
|
+
#### [`specialized/domain-experts`](specialized/domain-experts/) โ Civil, devrel, gov, supply chain
|
|
385
|
+
|
|
386
|
+
| Agent | Vibe |
|
|
387
|
+
|-------|------|
|
|
388
|
+
| ๐๏ธ [Civil Engineer](specialized/domain-experts/civil-engineer.md) | Structures from seismic Tokyo to wind-swept Dubai. |
|
|
389
|
+
| ๐ฃ๏ธ [Developer Advocate](specialized/domain-experts/developer-advocate.md) | Product team โ developer community. |
|
|
390
|
+
| ๐๏ธ [Government Digital Presales Consultant](specialized/domain-experts/government-digital-presales-consultant.md) | China gov IT procurement, navigated. |
|
|
391
|
+
| ๐ [Supply Chain Strategist](specialized/domain-experts/supply-chain-strategist.md) | Procurement and resilience across China manufacturing. |
|
|
392
|
+
|
|
393
|
+
#### [`specialized/engineering-meta`](specialized/engineering-meta/) โ LSP, MCP, model QA, Salesforce, workflow
|
|
394
|
+
|
|
395
|
+
| Agent | Vibe |
|
|
396
|
+
|-------|------|
|
|
397
|
+
| ๐ [LSP/Index Engineer](specialized/engineering-meta/lsp-index-engineer.md) | LSP orchestration + semantic indexing. |
|
|
398
|
+
| ๐ [MCP Builder](specialized/engineering-meta/mcp-builder.md) | Tools that make AI agents useful. |
|
|
399
|
+
| ๐ฌ [Model QA Specialist](specialized/engineering-meta/model-qa.md) | ML audits end-to-end. |
|
|
400
|
+
| โ๏ธ [Salesforce Architect](specialized/engineering-meta/salesforce-architect.md) | Tangled org โ architecture that scales. |
|
|
401
|
+
| ๐บ๏ธ [Workflow Architect](specialized/engineering-meta/workflow-architect.md) | Every path mapped before code is written. |
|
|
402
|
+
|
|
403
|
+
#### [`specialized/exec-ops`](specialized/exec-ops/) โ Orchestration & chief of staff
|
|
404
|
+
|
|
405
|
+
| Agent | Vibe |
|
|
406
|
+
|-------|------|
|
|
407
|
+
| ๐๏ธ [Agents Orchestrator](specialized/exec-ops/agents-orchestrator.md) | Conducts the entire dev pipeline. |
|
|
408
|
+
| ๐งญ [Chief of Staff](specialized/exec-ops/chief-of-staff.md) | I own the space between functions. |
|
|
409
|
+
|
|
410
|
+
#### [`specialized/finance-ops`](specialized/finance-ops/) โ AP, loans, real estate
|
|
411
|
+
|
|
412
|
+
| Agent | Vibe |
|
|
413
|
+
|-------|------|
|
|
414
|
+
| ๐ธ [Accounts Payable Agent](specialized/finance-ops/accounts-payable-agent.md) | Crypto, fiat, stablecoins โ any rail. |
|
|
415
|
+
| ๐ฆ [Loan Officer Assistant](specialized/finance-ops/loan-officer-assistant.md) | Pipeline with precision and compliance. |
|
|
416
|
+
| ๐ [Real Estate Buyer & Seller](specialized/finance-ops/real-estate-buyer-seller.md) | Biggest financial decision, handled. |
|
|
417
|
+
|
|
418
|
+
#### [`specialized/healthcare`](specialized/healthcare/) โ Patient service & compliance
|
|
419
|
+
|
|
420
|
+
| Agent | Vibe |
|
|
421
|
+
|-------|------|
|
|
422
|
+
| ๐ฅ [Healthcare Customer Service](specialized/healthcare/healthcare-customer-service.md) | Patients heard, respected, supported. |
|
|
423
|
+
| โ๏ธ [Healthcare Marketing Compliance](specialized/healthcare/healthcare-marketing-compliance.md) | Legal in China's healthcare landscape. |
|
|
424
|
+
|
|
425
|
+
#### [`specialized/hr`](specialized/hr/) โ Training, onboarding, recruiting
|
|
426
|
+
|
|
427
|
+
| Agent | Vibe |
|
|
428
|
+
|-------|------|
|
|
429
|
+
| ๐ [Corporate Training Designer](specialized/hr/corporate-training-designer.md) | Training that drives behavior change. |
|
|
430
|
+
| ๐ค [HR Onboarding](specialized/hr/hr-onboarding.md) | First 90 days decide long-term outcome. |
|
|
431
|
+
| ๐ฏ [Recruitment Specialist](specialized/hr/recruitment-specialist.md) | Full-cycle recruiting across hiring platforms. |
|
|
432
|
+
|
|
433
|
+
#### [`specialized/legal`](specialized/legal/) โ Intake, review, billing
|
|
434
|
+
|
|
435
|
+
| Agent | Vibe |
|
|
436
|
+
|-------|------|
|
|
437
|
+
| โฑ๏ธ [Legal Billing & Time Tracking](specialized/legal/legal-billing-time-tracking.md) | Six minutes unbilled is money on the table. |
|
|
438
|
+
| ๐ [Legal Client Intake](specialized/legal/legal-client-intake.md) | First conversation sets the tone. |
|
|
439
|
+
| โ๏ธ [Legal Document Review](specialized/legal/legal-document-review.md) | Every word matters; every missed clause is liability. |
|
|
440
|
+
|
|
441
|
+
#### [`specialized/regional`](specialized/regional/) โ Cross-cultural, French, Korean, study abroad, translation
|
|
442
|
+
|
|
443
|
+
| Agent | Vibe |
|
|
444
|
+
|-------|------|
|
|
445
|
+
| ๐ [Cultural Intelligence Strategist](specialized/regional/cultural-intelligence-strategist.md) | Detects invisible exclusion across cultures. |
|
|
446
|
+
| ๐ซ๐ท [French Consulting Market Navigator](specialized/regional/french-consulting-market.md) | Decodes the French consulting food chain. |
|
|
447
|
+
| ๐ฐ๐ท [Korean Business Navigator](specialized/regional/korean-business-navigator.md) | Western directness โ Korean relationship dynamics. |
|
|
448
|
+
| ๐ [Language Translator](specialized/regional/language-translator.md) | Precision with cultural respect. |
|
|
449
|
+
| ๐ [Study Abroad Advisor](specialized/regional/study-abroad-advisor.md) | School, essays, visas โ end to end. |
|
|
450
|
+
|
|
451
|
+
#### [`specialized/sales-ops`](specialized/sales-ops/) โ Extraction & outreach
|
|
452
|
+
|
|
453
|
+
| Agent | Vibe |
|
|
454
|
+
|-------|------|
|
|
455
|
+
| ๐ [Sales Data Extraction Agent](specialized/sales-ops/sales-data-extraction-agent.md) | Watches Excel, extracts the metrics. |
|
|
456
|
+
| ๐ฏ [Sales Outreach](specialized/sales-ops/sales-outreach.md) | Help people buy, don't sell. |
|
|
457
|
+
|
|
458
|
+
### Support
|
|
459
|
+
|
|
460
|
+
#### [`support/analytics`](support/analytics/) โ Reporting, finance, executive summaries
|
|
461
|
+
|
|
462
|
+
| Agent | Vibe |
|
|
463
|
+
|-------|------|
|
|
464
|
+
| ๐ [Analytics Reporter](support/analytics/analytics-reporter.md) | Raw data โ insights that drive the next decision. |
|
|
465
|
+
| ๐ [Executive Summary Generator](support/analytics/executive-summary-generator.md) | Thinks McKinsey, writes for the C-suite. |
|
|
466
|
+
| ๐ฐ [Finance Tracker](support/analytics/finance-tracker.md) | Clean books, honest forecasts. |
|
|
467
|
+
|
|
468
|
+
#### [`support/ops-response`](support/ops-response/) โ Infra, compliance, support
|
|
469
|
+
|
|
470
|
+
| Agent | Vibe |
|
|
471
|
+
|-------|------|
|
|
472
|
+
| ๐ข [Infrastructure Maintainer](support/ops-response/infrastructure-maintainer.md) | Lights on, servers humming, alerts quiet. |
|
|
473
|
+
| โ๏ธ [Legal Compliance Checker](support/ops-response/legal-compliance-checker.md) | Compliance across every jurisdiction. |
|
|
474
|
+
| ๐ฌ [Support Responder](support/ops-response/support-responder.md) | Frustrated users โ loyal advocates. |
|
|
475
|
+
|
|
476
|
+
### Testing
|
|
477
|
+
|
|
478
|
+
#### [`testing/automation`](testing/automation/) โ APIs, evidence, results
|
|
479
|
+
|
|
480
|
+
| Agent | Vibe |
|
|
481
|
+
|-------|------|
|
|
482
|
+
| ๐ [API Tester](testing/automation/api-tester.md) | Breaks your API before users do. |
|
|
483
|
+
| ๐ธ [Evidence Collector](testing/automation/evidence-collector.md) | Won't approve without visual proof. |
|
|
484
|
+
| ๐ [Test Results Analyzer](testing/automation/test-results-analyzer.md) | Reads results like a detective reads evidence. |
|
|
485
|
+
|
|
486
|
+
#### [`testing/meta`](testing/meta/) โ Tool evaluation & workflow tuning
|
|
487
|
+
|
|
488
|
+
| Agent | Vibe |
|
|
489
|
+
|-------|------|
|
|
490
|
+
| ๐ง [Tool Evaluator](testing/meta/tool-evaluator.md) | The right tools, recommended. |
|
|
491
|
+
| โก [Workflow Optimizer](testing/meta/workflow-optimizer.md) | Bottleneck โ fixed โ automated. |
|
|
492
|
+
|
|
493
|
+
#### [`testing/quality`](testing/quality/) โ Accessibility, performance, reality
|
|
494
|
+
|
|
495
|
+
| Agent | Vibe |
|
|
496
|
+
|-------|------|
|
|
497
|
+
| โฟ [Accessibility Auditor](testing/quality/accessibility-auditor.md) | If it's not screen-reader tested, it's not accessible. |
|
|
498
|
+
| โฑ๏ธ [Performance Benchmarker](testing/quality/performance-benchmarker.md) | Measures, optimizes, proves it. |
|
|
499
|
+
| ๐ง [Reality Checker](testing/quality/reality-checker.md) | Defaults to "NEEDS WORK" โ overwhelming proof required. |
|
|
500
|
+
|
|
501
|
+
---
|
|
502
|
+
|
|
503
|
+
## Build your own
|
|
504
|
+
|
|
505
|
+
An agent is a directory:
|
|
506
|
+
|
|
507
|
+
```
|
|
508
|
+
my-agent/
|
|
509
|
+
bank-template.json # memory bank config (optional)
|
|
510
|
+
*.md # any markdown becomes seed knowledge
|
|
511
|
+
```
|
|
112
512
|
|
|
113
|
-
|
|
513
|
+
Nest for multi-level teams. Each level can have its own `bank-template.json`. Install with any of the local/repo/blank patterns shown at the top.
|
|
114
514
|
|
|
115
|
-
##
|
|
515
|
+
## Harnesses
|
|
116
516
|
|
|
117
|
-
| Harness | Flag |
|
|
118
|
-
|
|
119
|
-
| [Claude Chat](https://claude.ai) | `--harness claude` |
|
|
120
|
-
| [Claude
|
|
121
|
-
| [OpenClaw](https://openclaw.dev) | `--harness openclaw` |
|
|
122
|
-
| [NemoClaw](https://github.com/NVIDIA/NeMo-Agent) | `--harness nemoclaw` |
|
|
517
|
+
| Harness | Flag |
|
|
518
|
+
|---------|------|
|
|
519
|
+
| [Claude Chat](https://claude.ai) / Cowork | `--harness claude` |
|
|
520
|
+
| [Claude Code](https://claude.com/claude-code) | `--harness claude-code` |
|
|
521
|
+
| [OpenClaw](https://openclaw.dev) | `--harness openclaw` |
|
|
522
|
+
| [NemoClaw](https://github.com/NVIDIA/NeMo-Agent) | `--harness nemoclaw` |
|
|
523
|
+
| Hermes | `--harness hermes` |
|
|
123
524
|
|
|
124
|
-
##
|
|
525
|
+
## License
|
|
125
526
|
|
|
126
|
-
|
|
127
|
-
- A Hindsight account ([Cloud](https://hindsight.vectorize.io) or self-hosted)
|
|
128
|
-
- Everything else is handled by the CLI
|
|
527
|
+
MIT.
|
package/dist/cli.d.ts
CHANGED
|
@@ -14,4 +14,12 @@
|
|
|
14
14
|
* bank-template.json โ optional: bank config at this level
|
|
15
15
|
* *.md, *.txt, ... โ content files (found recursively, excluding bank-template.json)
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
/**
|
|
18
|
+
* Whether a string is a valid agent name. Used by --empty mode where the
|
|
19
|
+
* first positional arg becomes the agent name (no path, no GitHub fetch).
|
|
20
|
+
*
|
|
21
|
+
* Rules: starts with [a-z0-9], then lowercase alphanumerics or hyphens, max
|
|
22
|
+
* 64 chars. Matches the lowercase-with-hyphens convention the create-agent
|
|
23
|
+
* skill expects.
|
|
24
|
+
*/
|
|
25
|
+
export declare function isValidAgentName(name: string): boolean;
|