get-claudia 1.0.0
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/LICENSE +201 -0
- package/README.md +231 -0
- package/assets/README.md +17 -0
- package/bin/index.js +85 -0
- package/package.json +40 -0
- package/template-v2/.claude/commands/capture-meeting.md +140 -0
- package/template-v2/.claude/commands/draft-reply.md +129 -0
- package/template-v2/.claude/commands/follow-up-draft.md +127 -0
- package/template-v2/.claude/commands/meeting-prep.md +103 -0
- package/template-v2/.claude/commands/morning-brief.md +92 -0
- package/template-v2/.claude/commands/new-person.md +115 -0
- package/template-v2/.claude/commands/summarize-doc.md +172 -0
- package/template-v2/.claude/commands/weekly-review.md +127 -0
- package/template-v2/.claude/commands/what-am-i-missing.md +110 -0
- package/template-v2/.claude/hooks/hooks.json +48 -0
- package/template-v2/.claude/rules/claudia-principles.md +279 -0
- package/template-v2/.claude/skills/README.md +50 -0
- package/template-v2/.claude/skills/archetypes/consultant.md +396 -0
- package/template-v2/.claude/skills/archetypes/creator.md +518 -0
- package/template-v2/.claude/skills/archetypes/executive.md +476 -0
- package/template-v2/.claude/skills/archetypes/founder.md +491 -0
- package/template-v2/.claude/skills/archetypes/solo.md +525 -0
- package/template-v2/.claude/skills/capability-suggester.md +279 -0
- package/template-v2/.claude/skills/commitment-detector.md +210 -0
- package/template-v2/.claude/skills/memory-manager.md +267 -0
- package/template-v2/.claude/skills/onboarding.md +189 -0
- package/template-v2/.claude/skills/pattern-recognizer.md +244 -0
- package/template-v2/.claude/skills/relationship-tracker.md +140 -0
- package/template-v2/.claude/skills/risk-surfacer.md +251 -0
- package/template-v2/.claude/skills/structure-generator.md +408 -0
- package/template-v2/.mcp.json.example +25 -0
- package/template-v2/CLAUDE.md +363 -0
- package/template-v2/LICENSE +190 -0
- package/template-v2/NOTICE +7 -0
|
@@ -0,0 +1,408 @@
|
|
|
1
|
+
# Structure Generator Skill
|
|
2
|
+
|
|
3
|
+
**Purpose:** Create personalized folder structures and files based on user archetype and preferences.
|
|
4
|
+
|
|
5
|
+
**Triggers:** Invoked by the onboarding skill after archetype detection, or when user requests structure changes.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Archetype Structures
|
|
10
|
+
|
|
11
|
+
### Consultant/Advisor
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
claudia/
|
|
15
|
+
├── CLAUDE.md
|
|
16
|
+
├── .claude/
|
|
17
|
+
│ ├── commands/ ← Generated commands for consulting
|
|
18
|
+
│ ├── skills/
|
|
19
|
+
│ ├── hooks/
|
|
20
|
+
│ └── rules/
|
|
21
|
+
├── context/
|
|
22
|
+
│ ├── me.md ← User profile
|
|
23
|
+
│ ├── commitments.md ← Active promises
|
|
24
|
+
│ ├── waiting.md ← Waiting on others
|
|
25
|
+
│ ├── patterns.md ← Observed patterns
|
|
26
|
+
│ └── learnings.md ← Memory across sessions
|
|
27
|
+
├── people/
|
|
28
|
+
│ └── _template.md
|
|
29
|
+
├── clients/
|
|
30
|
+
│ └── _template/
|
|
31
|
+
│ ├── overview.md
|
|
32
|
+
│ ├── meetings/
|
|
33
|
+
│ └── deliverables/
|
|
34
|
+
├── pipeline/
|
|
35
|
+
│ ├── active.md
|
|
36
|
+
│ └── prospects/
|
|
37
|
+
└── content/ ← If thought leadership interest mentioned
|
|
38
|
+
└── calendar.md
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
**Generated Commands:**
|
|
42
|
+
- `/client-status` — Health check all engagements
|
|
43
|
+
- `/proposal-draft` — Draft new proposals
|
|
44
|
+
- `/pipeline-review` — What's in your funnel
|
|
45
|
+
- `/engagement-review [client]` — Deep dive on specific client
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
### Executive/Manager
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
claudia/
|
|
53
|
+
├── CLAUDE.md
|
|
54
|
+
├── .claude/
|
|
55
|
+
│ ├── commands/
|
|
56
|
+
│ ├── skills/
|
|
57
|
+
│ ├── hooks/
|
|
58
|
+
│ └── rules/
|
|
59
|
+
├── context/
|
|
60
|
+
│ ├── me.md
|
|
61
|
+
│ ├── commitments.md
|
|
62
|
+
│ ├── waiting.md
|
|
63
|
+
│ ├── patterns.md
|
|
64
|
+
│ └── learnings.md
|
|
65
|
+
├── people/
|
|
66
|
+
│ └── _template.md
|
|
67
|
+
├── direct-reports/
|
|
68
|
+
│ └── _template/
|
|
69
|
+
│ ├── overview.md
|
|
70
|
+
│ ├── 1on1s/
|
|
71
|
+
│ └── development.md
|
|
72
|
+
├── initiatives/
|
|
73
|
+
│ └── _template/
|
|
74
|
+
│ └── overview.md
|
|
75
|
+
└── board/
|
|
76
|
+
├── updates/
|
|
77
|
+
└── materials/
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
**Generated Commands:**
|
|
81
|
+
- `/exec-brief` — Leadership-focused morning brief
|
|
82
|
+
- `/1on1-prep [person]` — Prepare for 1:1 meeting
|
|
83
|
+
- `/board-update` — Draft board update
|
|
84
|
+
- `/initiative-status` — Status across initiatives
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
### Founder/Entrepreneur
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
claudia/
|
|
92
|
+
├── CLAUDE.md
|
|
93
|
+
├── .claude/
|
|
94
|
+
│ ├── commands/
|
|
95
|
+
│ ├── skills/
|
|
96
|
+
│ ├── hooks/
|
|
97
|
+
│ └── rules/
|
|
98
|
+
├── context/
|
|
99
|
+
│ ├── me.md
|
|
100
|
+
│ ├── commitments.md
|
|
101
|
+
│ ├── waiting.md
|
|
102
|
+
│ ├── patterns.md
|
|
103
|
+
│ └── learnings.md
|
|
104
|
+
├── people/
|
|
105
|
+
│ └── _template.md
|
|
106
|
+
├── investors/
|
|
107
|
+
│ ├── relationships/
|
|
108
|
+
│ ├── updates/
|
|
109
|
+
│ └── materials/
|
|
110
|
+
├── team/
|
|
111
|
+
│ └── _template/
|
|
112
|
+
│ └── overview.md
|
|
113
|
+
├── product/
|
|
114
|
+
│ ├── roadmap.md
|
|
115
|
+
│ └── decisions/
|
|
116
|
+
└── fundraising/
|
|
117
|
+
└── overview.md
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
**Generated Commands:**
|
|
121
|
+
- `/investor-update` — Draft investor update
|
|
122
|
+
- `/pitch-prep` — Prepare for investor meeting
|
|
123
|
+
- `/team-standup` — Prepare standup notes
|
|
124
|
+
- `/runway-check` — Financial runway summary
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
### Solo Professional
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
claudia/
|
|
132
|
+
├── CLAUDE.md
|
|
133
|
+
├── .claude/
|
|
134
|
+
│ ├── commands/
|
|
135
|
+
│ ├── skills/
|
|
136
|
+
│ ├── hooks/
|
|
137
|
+
│ └── rules/
|
|
138
|
+
├── context/
|
|
139
|
+
│ ├── me.md
|
|
140
|
+
│ ├── commitments.md
|
|
141
|
+
│ ├── waiting.md
|
|
142
|
+
│ ├── patterns.md
|
|
143
|
+
│ └── learnings.md
|
|
144
|
+
├── people/
|
|
145
|
+
│ └── _template.md
|
|
146
|
+
├── clients/
|
|
147
|
+
│ └── _template/
|
|
148
|
+
│ └── overview.md
|
|
149
|
+
├── projects/
|
|
150
|
+
│ └── _template/
|
|
151
|
+
│ └── overview.md
|
|
152
|
+
└── finances/
|
|
153
|
+
├── invoices/
|
|
154
|
+
└── tracking.md
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
**Generated Commands:**
|
|
158
|
+
- `/week-review` — Solo-focused weekly review
|
|
159
|
+
- `/invoice-draft [client]` — Draft invoice
|
|
160
|
+
- `/project-status` — Status across projects
|
|
161
|
+
- `/client-review [client]` — Deep dive on client
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
### Content Creator
|
|
166
|
+
|
|
167
|
+
```
|
|
168
|
+
claudia/
|
|
169
|
+
├── CLAUDE.md
|
|
170
|
+
├── .claude/
|
|
171
|
+
│ ├── commands/
|
|
172
|
+
│ ├── skills/
|
|
173
|
+
│ ├── hooks/
|
|
174
|
+
│ └── rules/
|
|
175
|
+
├── context/
|
|
176
|
+
│ ├── me.md
|
|
177
|
+
│ ├── commitments.md
|
|
178
|
+
│ ├── waiting.md
|
|
179
|
+
│ ├── patterns.md
|
|
180
|
+
│ └── learnings.md
|
|
181
|
+
├── people/
|
|
182
|
+
│ └── _template.md
|
|
183
|
+
├── content/
|
|
184
|
+
│ ├── calendar.md
|
|
185
|
+
│ ├── ideas/
|
|
186
|
+
│ ├── drafts/
|
|
187
|
+
│ └── published/
|
|
188
|
+
├── audience/
|
|
189
|
+
│ ├── insights.md
|
|
190
|
+
│ └── feedback/
|
|
191
|
+
└── collaborations/
|
|
192
|
+
└── _template/
|
|
193
|
+
└── overview.md
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
**Generated Commands:**
|
|
197
|
+
- `/content-calendar` — View/update content calendar
|
|
198
|
+
- `/draft-post [platform]` — Quick social draft
|
|
199
|
+
- `/audience-insights` — Review audience patterns
|
|
200
|
+
- `/collab-outreach [person]` — Draft collaboration outreach
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
## Core Files (All Archetypes)
|
|
205
|
+
|
|
206
|
+
### context/me.md Template
|
|
207
|
+
```markdown
|
|
208
|
+
# [Name]
|
|
209
|
+
|
|
210
|
+
## Profile
|
|
211
|
+
- **Role:** [Their role]
|
|
212
|
+
- **Industry:** [Their industry]
|
|
213
|
+
- **Archetype:** [Detected archetype]
|
|
214
|
+
- **Created:** [Date]
|
|
215
|
+
|
|
216
|
+
## Work Style
|
|
217
|
+
[What they described about how they work]
|
|
218
|
+
|
|
219
|
+
## Priorities
|
|
220
|
+
1. [Priority 1]
|
|
221
|
+
2. [Priority 2]
|
|
222
|
+
3. [Priority 3]
|
|
223
|
+
|
|
224
|
+
## Key Relationships
|
|
225
|
+
- [Key relationship types they mentioned]
|
|
226
|
+
|
|
227
|
+
## Tools
|
|
228
|
+
- [Tools they use]
|
|
229
|
+
|
|
230
|
+
## Notes
|
|
231
|
+
[Any additional context from onboarding]
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
### context/commitments.md Template
|
|
235
|
+
```markdown
|
|
236
|
+
# Commitments
|
|
237
|
+
|
|
238
|
+
Active promises I'm tracking for you.
|
|
239
|
+
|
|
240
|
+
## Due Soon
|
|
241
|
+
|
|
242
|
+
| Commitment | To | Due | Status |
|
|
243
|
+
|------------|-----|-----|--------|
|
|
244
|
+
| | | | |
|
|
245
|
+
|
|
246
|
+
## Upcoming
|
|
247
|
+
|
|
248
|
+
| Commitment | To | Due | Status |
|
|
249
|
+
|------------|-----|-----|--------|
|
|
250
|
+
| | | | |
|
|
251
|
+
|
|
252
|
+
## Completed (Last 30 Days)
|
|
253
|
+
|
|
254
|
+
| Commitment | To | Completed |
|
|
255
|
+
|------------|-----|-----------|
|
|
256
|
+
| | | |
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### context/waiting.md Template
|
|
260
|
+
```markdown
|
|
261
|
+
# Waiting On
|
|
262
|
+
|
|
263
|
+
Things you're waiting for from others.
|
|
264
|
+
|
|
265
|
+
## Overdue
|
|
266
|
+
|
|
267
|
+
| Item | From | Expected | Days Late |
|
|
268
|
+
|------|------|----------|-----------|
|
|
269
|
+
| | | | |
|
|
270
|
+
|
|
271
|
+
## Active
|
|
272
|
+
|
|
273
|
+
| Item | From | Expected | Notes |
|
|
274
|
+
|------|------|----------|-------|
|
|
275
|
+
| | | | |
|
|
276
|
+
|
|
277
|
+
## Received (Last 30 Days)
|
|
278
|
+
|
|
279
|
+
| Item | From | Received |
|
|
280
|
+
|------|------|----------|
|
|
281
|
+
| | | |
|
|
282
|
+
```
|
|
283
|
+
|
|
284
|
+
### context/patterns.md Template
|
|
285
|
+
```markdown
|
|
286
|
+
# Patterns
|
|
287
|
+
|
|
288
|
+
Observations across our work together.
|
|
289
|
+
|
|
290
|
+
## Work Patterns
|
|
291
|
+
<!-- Tendencies in how you work -->
|
|
292
|
+
|
|
293
|
+
## Relationship Patterns
|
|
294
|
+
<!-- Patterns in your relationships -->
|
|
295
|
+
|
|
296
|
+
## Timing Patterns
|
|
297
|
+
<!-- When you're most productive, common scheduling issues -->
|
|
298
|
+
|
|
299
|
+
## Areas to Watch
|
|
300
|
+
<!-- Potential blind spots or recurring challenges -->
|
|
301
|
+
|
|
302
|
+
---
|
|
303
|
+
|
|
304
|
+
*Last updated: [date]*
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
### context/learnings.md Template
|
|
308
|
+
```markdown
|
|
309
|
+
# Claudia's Learnings
|
|
310
|
+
|
|
311
|
+
What I've learned about working with you.
|
|
312
|
+
|
|
313
|
+
## Preferences
|
|
314
|
+
<!-- Communication style, level of detail, timing -->
|
|
315
|
+
|
|
316
|
+
## What Works Well
|
|
317
|
+
<!-- Approaches that have been effective -->
|
|
318
|
+
|
|
319
|
+
## What to Avoid
|
|
320
|
+
<!-- Approaches that don't work as well -->
|
|
321
|
+
|
|
322
|
+
## Successful Patterns
|
|
323
|
+
<!-- Things that have worked in specific contexts -->
|
|
324
|
+
|
|
325
|
+
---
|
|
326
|
+
|
|
327
|
+
*Last updated: [date]*
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
### people/_template.md
|
|
331
|
+
```markdown
|
|
332
|
+
# [Person Name]
|
|
333
|
+
|
|
334
|
+
**Role:** [Their title/position]
|
|
335
|
+
**Organization:** [Company/org]
|
|
336
|
+
**How we met:** [Context]
|
|
337
|
+
**Relationship type:** [Client, Colleague, Friend, etc.]
|
|
338
|
+
|
|
339
|
+
## Quick Stats
|
|
340
|
+
|
|
341
|
+
| Field | Value |
|
|
342
|
+
|-------|-------|
|
|
343
|
+
| Last Contact | *date* |
|
|
344
|
+
| Relationship Health | Active / Cooling / Needs attention |
|
|
345
|
+
| Sentiment | Positive / Neutral / Cautious |
|
|
346
|
+
|
|
347
|
+
## Contact
|
|
348
|
+
|
|
349
|
+
| Channel | Details |
|
|
350
|
+
|---------|---------|
|
|
351
|
+
| Email | |
|
|
352
|
+
| Phone | |
|
|
353
|
+
| LinkedIn | |
|
|
354
|
+
| Preferred | |
|
|
355
|
+
|
|
356
|
+
## Communication Style
|
|
357
|
+
<!-- How they prefer to communicate -->
|
|
358
|
+
|
|
359
|
+
## What Matters to Them
|
|
360
|
+
<!-- Their priorities, motivations -->
|
|
361
|
+
|
|
362
|
+
## Current Context
|
|
363
|
+
<!-- What they're working on now -->
|
|
364
|
+
|
|
365
|
+
## Our History
|
|
366
|
+
|
|
367
|
+
| Date | Event | Notes |
|
|
368
|
+
|------|-------|-------|
|
|
369
|
+
| | | |
|
|
370
|
+
|
|
371
|
+
## Commitments
|
|
372
|
+
|
|
373
|
+
### I owe them
|
|
374
|
+
-
|
|
375
|
+
|
|
376
|
+
### They owe me
|
|
377
|
+
-
|
|
378
|
+
|
|
379
|
+
## Notes
|
|
380
|
+
<!-- Personal details, sensitivities, conversation starters -->
|
|
381
|
+
|
|
382
|
+
---
|
|
383
|
+
|
|
384
|
+
*Created: [date]*
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
---
|
|
388
|
+
|
|
389
|
+
## Generation Process
|
|
390
|
+
|
|
391
|
+
When generating a structure:
|
|
392
|
+
|
|
393
|
+
1. **Create base folders** for the archetype
|
|
394
|
+
2. **Copy templates** to appropriate locations
|
|
395
|
+
3. **Generate archetype-specific commands** (see archetype sections)
|
|
396
|
+
4. **Create context/me.md** with user's profile data
|
|
397
|
+
5. **Initialize empty context files** (commitments, waiting, patterns, learnings)
|
|
398
|
+
6. **Report what was created**
|
|
399
|
+
|
|
400
|
+
---
|
|
401
|
+
|
|
402
|
+
## Handling Customization
|
|
403
|
+
|
|
404
|
+
If user requests modifications:
|
|
405
|
+
- Add requested folders
|
|
406
|
+
- Remove unwanted folders
|
|
407
|
+
- Rename as needed
|
|
408
|
+
- Always preserve core context/ structure
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"gmail": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["-y", "@gongrzhe/server-gmail-autoauth-mcp"],
|
|
6
|
+
"comment": "Gmail integration for email management"
|
|
7
|
+
},
|
|
8
|
+
"google-calendar": {
|
|
9
|
+
"command": "npx",
|
|
10
|
+
"args": ["-y", "@modelcontextprotocol/server-google-calendar"],
|
|
11
|
+
"comment": "Google Calendar integration for scheduling"
|
|
12
|
+
},
|
|
13
|
+
"filesystem": {
|
|
14
|
+
"command": "npx",
|
|
15
|
+
"args": ["-y", "@anthropics/mcp-filesystem-server", "/path/to/allowed/directory"],
|
|
16
|
+
"comment": "File system access (update path as needed)"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"notes": {
|
|
20
|
+
"setup": "Rename this file to .mcp.json to enable MCP integrations",
|
|
21
|
+
"gmail": "Requires OAuth setup - see gmail server documentation",
|
|
22
|
+
"calendar": "Requires Google Cloud project with Calendar API enabled",
|
|
23
|
+
"more-servers": "Find more at https://github.com/modelcontextprotocol/servers"
|
|
24
|
+
}
|
|
25
|
+
}
|