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.
Files changed (34) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +231 -0
  3. package/assets/README.md +17 -0
  4. package/bin/index.js +85 -0
  5. package/package.json +40 -0
  6. package/template-v2/.claude/commands/capture-meeting.md +140 -0
  7. package/template-v2/.claude/commands/draft-reply.md +129 -0
  8. package/template-v2/.claude/commands/follow-up-draft.md +127 -0
  9. package/template-v2/.claude/commands/meeting-prep.md +103 -0
  10. package/template-v2/.claude/commands/morning-brief.md +92 -0
  11. package/template-v2/.claude/commands/new-person.md +115 -0
  12. package/template-v2/.claude/commands/summarize-doc.md +172 -0
  13. package/template-v2/.claude/commands/weekly-review.md +127 -0
  14. package/template-v2/.claude/commands/what-am-i-missing.md +110 -0
  15. package/template-v2/.claude/hooks/hooks.json +48 -0
  16. package/template-v2/.claude/rules/claudia-principles.md +279 -0
  17. package/template-v2/.claude/skills/README.md +50 -0
  18. package/template-v2/.claude/skills/archetypes/consultant.md +396 -0
  19. package/template-v2/.claude/skills/archetypes/creator.md +518 -0
  20. package/template-v2/.claude/skills/archetypes/executive.md +476 -0
  21. package/template-v2/.claude/skills/archetypes/founder.md +491 -0
  22. package/template-v2/.claude/skills/archetypes/solo.md +525 -0
  23. package/template-v2/.claude/skills/capability-suggester.md +279 -0
  24. package/template-v2/.claude/skills/commitment-detector.md +210 -0
  25. package/template-v2/.claude/skills/memory-manager.md +267 -0
  26. package/template-v2/.claude/skills/onboarding.md +189 -0
  27. package/template-v2/.claude/skills/pattern-recognizer.md +244 -0
  28. package/template-v2/.claude/skills/relationship-tracker.md +140 -0
  29. package/template-v2/.claude/skills/risk-surfacer.md +251 -0
  30. package/template-v2/.claude/skills/structure-generator.md +408 -0
  31. package/template-v2/.mcp.json.example +25 -0
  32. package/template-v2/CLAUDE.md +363 -0
  33. package/template-v2/LICENSE +190 -0
  34. package/template-v2/NOTICE +7 -0
@@ -0,0 +1,279 @@
1
+ # Capability Suggester Skill
2
+
3
+ **Purpose:** Notice repeated user behaviors and suggest new commands, workflows, or structure to streamline their work.
4
+
5
+ **Triggers:** Activates when patterns of repeated behavior reach a threshold.
6
+
7
+ ---
8
+
9
+ ## What I Watch For
10
+
11
+ ### Repeated Tasks
12
+
13
+ **Detection:**
14
+ - Same type of request 3+ times in a week
15
+ - Manual process that could be templated
16
+ - Multi-step workflow repeated frequently
17
+
18
+ **Examples:**
19
+ ```
20
+ "I notice you draft LinkedIn posts almost daily.
21
+ Want me to add a /linkedin-quick command for faster posting?"
22
+
23
+ "You've asked me to summarize meeting notes 5 times this week.
24
+ Should we add this to your standard meeting capture flow?"
25
+ ```
26
+
27
+ ### Frequent Queries
28
+
29
+ **Detection:**
30
+ - Same question asked regularly
31
+ - Status checks on specific topics
32
+ - Information retrieval patterns
33
+
34
+ **Examples:**
35
+ ```
36
+ "You often ask about project status on Mondays.
37
+ Should I add a project summary to your morning brief automatically?"
38
+
39
+ "You check on pipeline status frequently.
40
+ Want me to create a /pipeline-quick command for a one-line summary?"
41
+ ```
42
+
43
+ ### Workflow Gaps
44
+
45
+ **Detection:**
46
+ - Steps that are often forgotten
47
+ - Manual connections between automated parts
48
+ - Handoffs that could be smoother
49
+
50
+ **Examples:**
51
+ ```
52
+ "After meetings, you usually update commitments manually.
53
+ Should I automatically suggest commitment updates after /capture-meeting?"
54
+
55
+ "You often forget to update the client file after calls.
56
+ Want me to prompt for client file updates after meeting captures?"
57
+ ```
58
+
59
+ ### Structure Needs
60
+
61
+ **Detection:**
62
+ - Topics that don't have a home
63
+ - Files that are getting too long
64
+ - Categories that are emerging
65
+
66
+ **Examples:**
67
+ ```
68
+ "You've mentioned 'partnerships' in several contexts but don't
69
+ have a dedicated folder. Should we create partnerships/ ?"
70
+
71
+ "Your patterns.md is getting long. Want me to split it into
72
+ work-patterns.md and relationship-patterns.md?"
73
+ ```
74
+
75
+ ---
76
+
77
+ ## Suggestion Flow
78
+
79
+ ### 1. Observe Pattern
80
+
81
+ Track behavior without mentioning it until threshold reached:
82
+ - 3+ occurrences for simple tasks
83
+ - 2+ for complex workflows
84
+ - Immediate for obvious improvements
85
+
86
+ ### 2. Propose Enhancement
87
+
88
+ **Format:**
89
+ ```
90
+ "I've noticed [observation].
91
+
92
+ Would you like me to [specific solution]?
93
+
94
+ This would [benefit]."
95
+ ```
96
+
97
+ **Examples:**
98
+
99
+ ```
100
+ "I've noticed you check client health status at the start of each week.
101
+
102
+ Would you like me to add a client health summary to your Monday morning brief?
103
+
104
+ This would save you from manually checking each client file."
105
+ ```
106
+
107
+ ```
108
+ "You often draft follow-up emails after sales calls.
109
+
110
+ Would you like me to create a /sales-followup command that:
111
+ - Uses the meeting notes as context
112
+ - Drafts a templated follow-up
113
+ - Suggests next steps based on the conversation
114
+
115
+ I could have this ready for your next call."
116
+ ```
117
+
118
+ ### 3. Accept Response
119
+
120
+ **If yes:**
121
+ - Create the enhancement
122
+ - Explain how to use it
123
+ - Note in learnings.md
124
+
125
+ **If no:**
126
+ - Acknowledge gracefully
127
+ - Don't suggest again for a while
128
+ - Note preference in learnings.md
129
+
130
+ **If "maybe later":**
131
+ - Note for future
132
+ - Remind in a week or when context is relevant
133
+
134
+ ---
135
+
136
+ ## Types of Suggestions
137
+
138
+ ### New Commands
139
+
140
+ **Template:**
141
+ ```markdown
142
+ # [Command Name]
143
+
144
+ [Brief description of what it does]
145
+
146
+ ## When to Use
147
+ [Trigger conditions]
148
+
149
+ ## What It Does
150
+ [Step by step]
151
+
152
+ ## Output
153
+ [What user gets]
154
+ ```
155
+
156
+ **Process:**
157
+ 1. Draft command based on observed pattern
158
+ 2. Propose to user with explanation
159
+ 3. If approved, create in `.claude/commands/`
160
+ 4. Confirm creation and explain usage
161
+
162
+ ### Workflow Enhancements
163
+
164
+ **Modifications to existing flows:**
165
+ - Add steps to existing commands
166
+ - Connect previously separate processes
167
+ - Add automation triggers
168
+
169
+ **Example:**
170
+ ```
171
+ "Currently /capture-meeting extracts decisions and commitments.
172
+
173
+ Want me to enhance it to also:
174
+ - Update the person file with meeting date
175
+ - Add any new people mentioned to your list
176
+ - Suggest follow-up timing based on meeting content?"
177
+ ```
178
+
179
+ ### Structure Changes
180
+
181
+ **New folders or files:**
182
+ - Create folder for emerging category
183
+ - Split growing files
184
+ - Add templates for new types
185
+
186
+ **Example:**
187
+ ```
188
+ "You've started tracking vendor relationships separately from clients.
189
+
190
+ Should I create:
191
+ - vendors/ folder with similar structure to clients/
192
+ - /vendor-status command for quick checks?"
193
+ ```
194
+
195
+ ---
196
+
197
+ ## Learning Integration
198
+
199
+ ### What Gets Stored
200
+
201
+ In `context/learnings.md`:
202
+
203
+ ```markdown
204
+ ## Suggested Capabilities
205
+
206
+ ### Accepted
207
+ - /linkedin-quick command (created Jan 15)
208
+ - Auto-client-update after meetings (enabled Jan 18)
209
+
210
+ ### Declined
211
+ - Partnership folder (user prefers flat structure)
212
+ - Automatic deadline reminders (user finds them annoying)
213
+
214
+ ### Pending
215
+ - Sales follow-up template (user said "maybe later" - Jan 20)
216
+ ```
217
+
218
+ ### Feedback Loop
219
+
220
+ Track whether suggestions are used:
221
+ - Command created but never used → Note for learning
222
+ - Command used frequently → Validated pattern
223
+ - Enhancement enabled then disabled → Preference noted
224
+
225
+ ---
226
+
227
+ ## Guardrails
228
+
229
+ ### Don't Overwhelm
230
+
231
+ - Max 1 suggestion per session (unless asked)
232
+ - Space out suggestions over time
233
+ - Don't repeat declined suggestions
234
+
235
+ ### Don't Over-Engineer
236
+
237
+ - Start with simple solutions
238
+ - Only suggest what's clearly needed
239
+ - Avoid adding complexity for its own sake
240
+
241
+ ### Respect User Style
242
+
243
+ - Some users like lots of structure
244
+ - Some prefer minimal tooling
245
+ - Learn and adapt to their preference
246
+
247
+ ---
248
+
249
+ ## Proactive vs. Reactive
250
+
251
+ ### Proactive (I bring it up)
252
+ - When pattern is clear and benefit is obvious
253
+ - During natural pauses in work
254
+ - At start of session if something significant
255
+
256
+ ### Reactive (when asked)
257
+ ```
258
+ User: "Is there anything you think we should add?"
259
+ User: "What could we do to make this easier?"
260
+ User: "Any suggestions for improving my workflow?"
261
+ ```
262
+
263
+ Provide comprehensive list of observed opportunities.
264
+
265
+ ---
266
+
267
+ ## Integration
268
+
269
+ ### With Pattern Recognizer
270
+ - Feed patterns into capability analysis
271
+ - Notice when patterns suggest tooling needs
272
+
273
+ ### With Memory Manager
274
+ - Persist suggestions and responses
275
+ - Track what works over time
276
+
277
+ ### With Onboarding
278
+ - During initial setup, note user preferences for suggestions
279
+ - Some users want lots of suggestions, others want minimal
@@ -0,0 +1,210 @@
1
+ # Commitment Detector Skill
2
+
3
+ **Purpose:** Automatically detect promises and commitments in conversation and offer to track them.
4
+
5
+ **Triggers:** Activates when language patterns suggest a commitment has been made.
6
+
7
+ ---
8
+
9
+ ## Detection Patterns
10
+
11
+ ### Explicit Promises
12
+
13
+ **High confidence patterns:**
14
+ - "I'll [action] by [time]"
15
+ - "I'll send you [thing] by [day/date]"
16
+ - "I promised to [action]"
17
+ - "I committed to [action]"
18
+ - "I need to [action] by [deadline]"
19
+ - "I told them I would [action]"
20
+
21
+ **Examples:**
22
+ - "I'll send the proposal by Friday" → Track: proposal, Friday
23
+ - "I promised Sarah I'd review her doc" → Track: review doc, for Sarah, needs deadline
24
+ - "I told the team I'd have feedback by EOD" → Track: feedback, EOD today
25
+
26
+ ### Implicit Obligations
27
+
28
+ **Medium confidence patterns:**
29
+ - "Let me get back to you on that"
30
+ - "I should follow up on [thing]"
31
+ - "I need to [action]" (without deadline)
32
+ - "I'll think about [topic] and respond"
33
+
34
+ **Response:** Ask for clarification
35
+ ```
36
+ "Sounds like a commitment. When should this be done?"
37
+ ```
38
+
39
+ ### What NOT to Track
40
+
41
+ **Vague intentions (skip):**
42
+ - "We should explore that someday"
43
+ - "That might be worth looking into"
44
+ - "Maybe I'll try that"
45
+ - "I've been meaning to..."
46
+
47
+ **These don't have accountability attached.**
48
+
49
+ ---
50
+
51
+ ## Tracking Flow
52
+
53
+ ### When I Detect a Commitment
54
+
55
+ 1. **Surface what I heard:**
56
+ ```
57
+ "I heard a commitment: Send proposal to Sarah by Friday.
58
+ Should I track this?"
59
+ ```
60
+
61
+ 2. **If confirmed, capture:**
62
+ - What: The specific deliverable
63
+ - To: Who it's for (if anyone)
64
+ - Due: Deadline
65
+ - Context: Any relevant notes
66
+
67
+ 3. **Add to context/commitments.md**
68
+
69
+ 4. **Link to person file if relevant**
70
+
71
+ ### If Deadline is Unclear
72
+
73
+ ```
74
+ "I'll track: Review Sarah's document.
75
+ When should this be done?"
76
+ ```
77
+
78
+ Options:
79
+ - Specific date/time → Use that
80
+ - "Soon" or "ASAP" → Ask for actual date
81
+ - "No rush" → Don't track (vague intention)
82
+
83
+ ---
84
+
85
+ ## Commitment Types
86
+
87
+ ### You Owe Others
88
+ Stored in `context/commitments.md`
89
+
90
+ ```markdown
91
+ ## Due Soon
92
+
93
+ | Commitment | To | Due | Status |
94
+ |------------|-----|-----|--------|
95
+ | Send proposal draft | Sarah | Fri Jan 24 | On track |
96
+ | Review contract | Legal team | Mon Jan 27 | Needs attention |
97
+ ```
98
+
99
+ ### Others Owe You
100
+ Stored in `context/waiting.md`
101
+
102
+ **Detection patterns:**
103
+ - "They said they'd [action] by [time]"
104
+ - "[Person] owes me [thing]"
105
+ - "Waiting on [person] for [thing]"
106
+ - "They promised to [action]"
107
+
108
+ ```
109
+ "I heard: Waiting on Sarah's feedback by Thursday.
110
+ Should I track this in your waiting list?"
111
+ ```
112
+
113
+ ---
114
+
115
+ ## Warning System
116
+
117
+ ### 48-Hour Warning
118
+ Two days before deadline, surface in morning brief:
119
+
120
+ ```
121
+ ### ⚠️ Due Soon
122
+ - [WARNING] Proposal to Sarah due in 48 hours (Friday)
123
+ ```
124
+
125
+ ### Day-Of Reminder
126
+ On due date:
127
+
128
+ ```
129
+ ### ⚠️ Due Today
130
+ - [DUE TODAY] Proposal to Sarah
131
+ ```
132
+
133
+ ### Overdue Escalation
134
+ When past due:
135
+
136
+ ```
137
+ ### ⚠️ OVERDUE
138
+ - [OVERDUE] Proposal to Sarah was due Friday (2 days ago)
139
+ → Suggested action: Send what you have, or communicate delay
140
+ ```
141
+
142
+ ---
143
+
144
+ ## Recovery Suggestions
145
+
146
+ When something is overdue, offer recovery options:
147
+
148
+ ```
149
+ The proposal for Sarah is 2 days overdue. Options:
150
+
151
+ 1. Send it now (if ready)
152
+ 2. Send partial progress + timeline for rest
153
+ 3. Communicate delay with new ETA
154
+ 4. Acknowledge and ask for extension
155
+
156
+ What would you like to do?
157
+ ```
158
+
159
+ ---
160
+
161
+ ## Commitment Lifecycle
162
+
163
+ ```
164
+ Detected → Confirmed → Tracked → Warning → Due → Completed/Overdue
165
+
166
+ Recovery (if overdue)
167
+ ```
168
+
169
+ ### Marking Complete
170
+
171
+ When user mentions completing something:
172
+ - "I sent that proposal to Sarah"
173
+ - "Done with the contract review"
174
+
175
+ ```
176
+ "Got it. Marking the proposal to Sarah as complete.
177
+ Anything to note about how it went?"
178
+ ```
179
+
180
+ Move from active to completed section with date.
181
+
182
+ ---
183
+
184
+ ## Integration
185
+
186
+ ### With Relationship Tracker
187
+ - Link commitments to people files
188
+ - Show open commitments when person is mentioned
189
+
190
+ ### With Morning Brief
191
+ - Surface warnings and due-todays
192
+ - Highlight overdue items
193
+
194
+ ### With Pattern Recognizer
195
+ - Notice if certain commitments consistently slip
196
+ - Track estimation accuracy over time
197
+
198
+ ---
199
+
200
+ ## Settings
201
+
202
+ Can be configured in `context/me.md`:
203
+
204
+ ```yaml
205
+ commitment_tracking:
206
+ warning_days: 2 # Days before deadline to warn
207
+ auto_detect: true # Automatically detect or only when asked
208
+ track_waiting: true # Also track what others owe
209
+ completion_notes: optional # Ask for notes on completion
210
+ ```