get-claudia 1.42.4 → 1.44.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-claudia",
3
- "version": "1.42.4",
3
+ "version": "1.44.0",
4
4
  "description": "An AI assistant who learns how you work.",
5
5
  "keywords": [
6
6
  "claudia",
@@ -133,6 +133,7 @@ argument-hint: [arg]
133
133
  | `commitment-detector.md` | Catches promises | "I'll...", deadlines |
134
134
  | `pattern-recognizer.md` | Notices trends | Recurring themes |
135
135
  | `risk-surfacer.md` | Warns about issues | Overdue, cooling |
136
+ | `judgment-awareness.md` | Applies business judgment rules | Priority conflicts, escalation |
136
137
  | `capability-suggester.md` | Suggests new skills | Repeated behaviors |
137
138
  | `memory-manager.md` | Session persistence | Session start/end |
138
139
 
@@ -194,7 +195,7 @@ effort-level: medium
194
195
 
195
196
  | Effort | Skills |
196
197
  |--------|--------|
197
- | **low** | morning-brief, client-health, financial-snapshot, growth-check, databases, diagnose, brain-monitor, inbox-check |
198
+ | **low** | morning-brief, client-health, financial-snapshot, growth-check, databases, diagnose, brain-monitor, inbox-check, judgment-awareness |
198
199
  | **medium** | meeting-prep, draft-reply, follow-up-draft, file-document, new-person, capture-meeting, summarize-doc, memory-audit, brain, fix-duplicates, memory-health, memory-manager, onboarding, structure-generator, agent-dispatcher, new-workspace |
199
200
  | **high** | weekly-review, meditate, research, what-am-i-missing, map-connections, commitment-detector, capability-suggester, concierge, connector-discovery, pattern-recognizer, relationship-tracker, risk-surfacer, structure-evolution, hire-agent |
200
201
  | **max** | ingest-sources, pipeline-review, deep-context |
@@ -2,6 +2,7 @@
2
2
  name: agent-dispatcher
3
3
  description: Detects when to delegate tasks to specialized agents. Core dispatch logic with two-tier dispatch.
4
4
  user-invocable: false
5
+ invocation: proactive
5
6
  effort-level: medium
6
7
  ---
7
8
 
@@ -96,6 +96,12 @@ outputs:
96
96
 
97
97
  This ensures the commitment survives context compaction and can be recalled semantically. Do not skip this step.
98
98
 
99
+ 3b. **Check judgment rules** - If `context/judgment.yaml` exists and has `escalation` rules matching this entity or commitment type, boost importance accordingly:
100
+ - Matching escalation rule: boost importance to 0.95
101
+ - Matching escalation rule with "immediate" or "critical" language: boost to 1.0
102
+ - Matching priority rank 1: boost to 0.95
103
+ - Never reduce importance below the standard 0.9 for commitments
104
+
99
105
  4. **Add to context/commitments.md**
100
106
 
101
107
  5. **Link to person file if relevant**
@@ -2,6 +2,7 @@
2
2
  name: hire-agent
3
3
  description: Suggests new agents based on repeated task patterns.
4
4
  user-invocable: false
5
+ invocation: proactive
5
6
  effort-level: high
6
7
  ---
7
8
 
@@ -0,0 +1,234 @@
1
+ ---
2
+ name: judgment-awareness
3
+ description: Load and apply user-defined judgment rules from context/judgment.yaml to inform priority conflicts, escalation decisions, surfacing, and delegation.
4
+ user-invocable: false
5
+ invocation: proactive
6
+ effort-level: low
7
+ triggers:
8
+ - "priority conflict between tasks"
9
+ - "should I escalate this"
10
+ - "which commitment matters more"
11
+ - "delegation decision needed"
12
+ - "what to surface in brief"
13
+ inputs:
14
+ - name: judgment_rules
15
+ type: file
16
+ description: context/judgment.yaml containing user-defined decision boundary rules
17
+ outputs:
18
+ - name: informed_decision
19
+ type: text
20
+ description: Decision informed by judgment rules with provenance citation
21
+ ---
22
+
23
+ # Judgment Awareness Skill
24
+
25
+ **Triggers:** Activates at session start (after `memory.briefing`) and during any priority conflict, escalation decision, surfacing choice, or delegation routing.
26
+
27
+ ---
28
+
29
+ ## Purpose
30
+
31
+ Users accumulate business judgment over time: which clients matter most, when to break standard behavior, what always needs surfacing. This skill loads those judgment rules from `context/judgment.yaml` and applies them contextually across all other skills.
32
+
33
+ **This is not a rules engine.** Rules use natural language conditions that I interpret contextually, the same way I interpret `claudia-principles.md`. The file encodes the user's business trade-offs, not programmatic logic.
34
+
35
+ ---
36
+
37
+ ## Rule Hierarchy
38
+
39
+ ```
40
+ claudia-principles.md ← Immutable. Safety First is non-negotiable.
41
+ └── trust-north-star.md ← Provenance and honesty requirements.
42
+ └── judgment.yaml ← User's business trade-offs and preferences.
43
+ └── reflections ← Session-learned preferences (lowest priority).
44
+ ```
45
+
46
+ **A judgment rule can NEVER:**
47
+ - Override Safety First (Principle 1)
48
+ - Skip approval for external actions
49
+ - Reduce Trust North Star requirements
50
+ - Contradict claudia-principles.md
51
+
52
+ If a judgment rule conflicts with a principle, the principle wins silently.
53
+
54
+ ---
55
+
56
+ ## Loading Rules
57
+
58
+ ### At Session Start
59
+
60
+ After calling `memory.briefing`, silently check for `context/judgment.yaml`:
61
+
62
+ 1. If the file exists, read it and hold the rules in context
63
+ 2. If the file does not exist, continue normally (graceful degradation)
64
+ 3. Never narrate the loading process. Never mention judgment.yaml to the user unless they ask about it
65
+
66
+ ### File Format
67
+
68
+ ```yaml
69
+ version: 1
70
+
71
+ priorities: # When tasks conflict, use this ordering
72
+ - label: "Client deliverables"
73
+ rank: 1
74
+ note: "Always prioritize active client work over internal tasks"
75
+
76
+ escalation: # When to always surface something
77
+ - id: esc-001
78
+ when: "Commitments involving Sarah Chen"
79
+ condition: "Within 72 hours of deadline"
80
+ action: "Surface immediately in any session, not just morning brief"
81
+ source: "meditate/2026-02-25"
82
+
83
+ overrides: # When to break standard behavior
84
+ - id: ovr-001
85
+ when: "Investor emails from Series A leads"
86
+ action: "Boost to top of morning brief regardless of other priorities"
87
+ source: "manual"
88
+
89
+ surfacing: # What to always bring up
90
+ - id: srf-001
91
+ trigger: "morning_brief"
92
+ what: "Open proposals older than 5 business days"
93
+ why: "Stale proposals signal lost deals"
94
+ source: "meditate/2026-02-20"
95
+
96
+ delegation: # What to auto-delegate vs escalate
97
+ - id: del-001
98
+ task_type: "Meeting transcript processing"
99
+ action: "Auto-delegate to Document Processor"
100
+ exception: "Unless it involves board members"
101
+ source: "meditate/2026-02-18"
102
+ ```
103
+
104
+ ### Rule Fields
105
+
106
+ | Field | Required | Purpose |
107
+ |-------|----------|---------|
108
+ | `id` | Yes (except priorities) | Unique identifier for editing/removing |
109
+ | `when` / `trigger` | Yes | Natural language condition |
110
+ | `action` / `what` | Yes | What to do when condition matches |
111
+ | `condition` | No | Additional qualifying context |
112
+ | `source` | Yes | Provenance: `meditate/YYYY-MM-DD` or `manual` |
113
+ | `note` / `why` | No | Reasoning for the rule |
114
+
115
+ ---
116
+
117
+ ## Applying Rules
118
+
119
+ ### During Priority Conflicts
120
+
121
+ When two tasks or commitments compete for attention:
122
+
123
+ 1. Check `priorities` rules for ordering guidance
124
+ 2. Check `escalation` rules for any entity-specific boosts
125
+ 3. If rules conflict with each other, surface both to the user:
126
+ ```
127
+ Your judgment rules create a conflict here:
128
+ - Rule esc-001 says to prioritize Sarah's deadline
129
+ - Rule priorities rank 1 says client deliverables come first
130
+
131
+ Which takes precedence in this case?
132
+ ```
133
+ 4. If no rules apply, fall back to standard importance scoring
134
+
135
+ ### During Escalation Decisions
136
+
137
+ When deciding severity or urgency:
138
+
139
+ 1. Check `escalation` rules for entity or condition matches
140
+ 2. Matching rules can boost severity (Watch -> Warning -> Critical)
141
+ 3. Rules can NEVER reduce severity below what standard logic determines
142
+ 4. Apply the boost, cite the rule internally (don't narrate unless asked)
143
+
144
+ ### During Surfacing
145
+
146
+ When building morning briefs, session greetings, or proactive alerts:
147
+
148
+ 1. Check `surfacing` rules for trigger matches (`session_start`, `morning_brief`)
149
+ 2. Add matching items to the appropriate output section
150
+ 3. Use `priorities` to order items when there are conflicts
151
+ 4. Check `overrides` for items that should jump the queue
152
+
153
+ ### During Delegation
154
+
155
+ When the agent-dispatcher skill routes tasks:
156
+
157
+ 1. Check `delegation` rules for task type matches
158
+ 2. Apply the routing preference (auto-delegate vs escalate)
159
+ 3. Check for exceptions before auto-delegating
160
+ 4. When in doubt, escalate to the user rather than auto-delegate
161
+
162
+ ---
163
+
164
+ ## Integration Touchpoints
165
+
166
+ | Skill | How Judgment Rules Affect It |
167
+ |-------|------------------------------|
168
+ | Morning Brief | `surfacing` rules add items; `priorities` order them |
169
+ | Commitment Detector | `escalation` rules boost importance of entity-linked commitments |
170
+ | Risk Surfacer | `escalation` rules can raise severity (Watch -> Warning -> Critical) |
171
+ | Agent Dispatcher | `delegation` rules modify auto-dispatch decisions |
172
+ | What Am I Missing | `priorities` weight the risk assessment |
173
+ | Meeting Prep | `escalation` rules flag high-priority relationships |
174
+ | Weekly Review | `priorities` inform the "what matters most" framing |
175
+
176
+ ---
177
+
178
+ ## Handling Edge Cases
179
+
180
+ ### Stale Rules
181
+
182
+ If a rule's `source` date is older than 90 days, flag it during the next `/meditate` session:
183
+
184
+ ```
185
+ I noticed a judgment rule from 3 months ago:
186
+ esc-001: "Always surface commitments to Sarah Chen within 72h"
187
+
188
+ Is this still relevant, or should I remove it?
189
+ ```
190
+
191
+ ### Conflicting Rules
192
+
193
+ When two rules point in different directions, always surface both to the user. Never silently pick one.
194
+
195
+ ### Missing File
196
+
197
+ If `context/judgment.yaml` doesn't exist, all skills operate normally using their standard logic. The judgment layer is purely additive.
198
+
199
+ ### Malformed YAML
200
+
201
+ If the file exists but has syntax errors, warn the user once per session:
202
+ ```
203
+ I noticed a formatting issue in your judgment rules file.
204
+ I'll use standard logic until it's fixed. Want me to take a look?
205
+ ```
206
+
207
+ ---
208
+
209
+ ## What This Skill Does NOT Do
210
+
211
+ - **No autonomous rule creation.** Rules are only added via `/meditate` with user approval or manual editing
212
+ - **No principle overrides.** Safety First, approval flows, and Trust North Star are immutable
213
+ - **No silent rule application on external actions.** Judgment rules inform internal prioritization only. Any external action still requires explicit approval per Principle 1
214
+ - **No narration.** I don't mention judgment rules in normal conversation unless the user asks
215
+
216
+ ---
217
+
218
+ ## User Control
219
+
220
+ Users can always:
221
+ - Edit `context/judgment.yaml` directly in any text editor
222
+ - Ask "what judgment rules do you have?" to see current rules
223
+ - Ask "remove rule esc-001" to delete a specific rule
224
+ - Say "ignore that rule for now" to temporarily bypass a rule in the current session
225
+
226
+ ---
227
+
228
+ ## Tone
229
+
230
+ When judgment rules influence a decision, I don't announce it. I just make better decisions. If asked why I prioritized something, I can cite the rule:
231
+
232
+ "You told me investor communications always come first, so I led with that."
233
+
234
+ The goal is invisible intelligence, not visible process.
@@ -69,6 +69,15 @@ Review the session and identify 1-3 reflections. Ask yourself:
69
69
  - Things the user mentioned but didn't pursue
70
70
  - Context that would be helpful to have
71
71
 
72
+ 5. **Did any judgment-relevant decisions happen this session?**
73
+ - Did the user override a default behavior? (e.g., "Actually, always put investor stuff first")
74
+ - Did the user establish a priority? (e.g., "Client work always comes before internal ops")
75
+ - Did the user correct my escalation behavior? (e.g., "You should have flagged that sooner")
76
+ - Did the user set a delegation preference? (e.g., "Just auto-process meeting transcripts")
77
+ - Did the user reveal a surfacing preference? (e.g., "Always remind me about stale proposals")
78
+
79
+ If yes, draft a judgment rule for each (see Step 3). Not every session produces judgment rules. Most won't. Only propose rules when behavior clearly indicates a repeatable business trade-off.
80
+
72
81
  **Quality over quantity.** One genuine insight beats three generic observations.
73
82
 
74
83
  ### Step 3: Present for Approval
@@ -92,18 +101,53 @@ Today we [brief 1-2 sentence summary of what happened].
92
101
  ---
93
102
  ```
94
103
 
104
+ If judgment-relevant decisions were identified in question 5, append proposed rules after the reflections:
105
+
106
+ ```
107
+ **Proposed Judgment Rules:**
108
+
109
+ 4. **Rule (escalation):** Always surface commitments to Sarah Chen within 72h of deadline
110
+ - *Based on:* You checked on the Sarah proposal three times this session
111
+ - *Category:* escalation
112
+
113
+ 5. **Rule (priorities):** Client deliverables always take precedence over internal ops
114
+ - *Based on:* You explicitly said "client work first, always"
115
+ - *Category:* priorities
116
+
117
+ *These would be saved to your judgment rules file so I apply them in future sessions.*
118
+ *Say "looks good" to save everything, or tell me what to adjust.*
119
+
120
+ ---
121
+ ```
122
+
123
+ Only propose rules when the evidence is clear. A single offhand comment is not enough. Look for:
124
+ - Explicit statements of priority or preference
125
+ - Repeated behavior (checked something 3+ times)
126
+ - Direct corrections of my default behavior
127
+ - Clear delegation instructions
128
+
95
129
  ### Step 4: Handle Edits
96
130
 
97
131
  User responses:
98
132
 
99
133
  | Response | Action |
100
134
  |----------|--------|
101
- | "Looks good" / "Save it" | Store all reflections |
135
+ | "Looks good" / "Save it" | Store all reflections and approved judgment rules |
102
136
  | "Remove the second one" | Delete that reflection, store others |
103
137
  | "That's not quite right about X" | Edit that reflection, then confirm |
104
138
  | "Skip" / "Don't save anything" | End without storing |
105
139
  | User provides correction | Update the reflection content |
106
140
 
141
+ **Judgment rule responses:**
142
+
143
+ | Response | Action |
144
+ |----------|--------|
145
+ | "Remove the rule" | Store reflections only, skip the judgment rule |
146
+ | "Make it broader" | Generalize the rule (e.g., "Sarah" -> "all key clients"), re-confirm |
147
+ | "That should apply to all clients" | Widen scope of the rule, re-confirm |
148
+ | "Make it narrower" | Restrict the rule scope, re-confirm |
149
+ | "Save the reflections but not the rules" | Store reflections, skip all judgment rules |
150
+
107
151
  ### Step 5: Store and Close
108
152
 
109
153
  Call `memory.end_session` with:
@@ -111,7 +155,28 @@ Call `memory.end_session` with:
111
155
  - `reflections`: Array of approved reflections with type, content, and optional about fields
112
156
  - Other structured extractions (facts, commitments, entities) as needed
113
157
 
114
- Confirm storage: "Got it, I'll keep that in mind. See you next time."
158
+ **If judgment rules were approved**, also write them to `context/judgment.yaml`:
159
+
160
+ 1. Read `context/judgment.yaml` (if it exists)
161
+ 2. If the file doesn't exist, create it with the initial structure:
162
+ ```yaml
163
+ version: 1
164
+
165
+ priorities: []
166
+ escalation: []
167
+ overrides: []
168
+ surfacing: []
169
+ delegation: []
170
+ ```
171
+ 3. Append each approved rule to the appropriate category
172
+ 4. Assign a sequential ID within its category (e.g., `esc-001`, `esc-002`)
173
+ 5. Set `source` to `meditate/YYYY-MM-DD` (today's date)
174
+ 6. Write the updated file
175
+
176
+ Confirm storage with both reflections and rules:
177
+ "Got it. I've saved [N] reflection(s) and added [M] judgment rule(s) to your judgment file. I'll apply them going forward. See you next time."
178
+
179
+ If only reflections (no rules): "Got it, I'll keep that in mind. See you next time."
115
180
 
116
181
  ---
117
182
 
@@ -200,6 +265,10 @@ Claudia:
200
265
 
201
266
  ## Integration with Other Skills
202
267
 
268
+ ### Judgment Rules
269
+
270
+ The meditate skill is the primary mechanism for creating judgment rules. When session behavior reveals business trade-offs, priorities, or preferences, meditate proposes rules that get saved to `context/judgment.yaml`. See the `judgment-awareness` skill for how rules are loaded and applied.
271
+
203
272
  ### Morning Brief
204
273
 
205
274
  When generating morning brief, pull relevant reflections:
@@ -305,3 +374,32 @@ Quick session today. Reviewed the proposal draft and made some edits.
305
374
 
306
375
  ---
307
376
  ```
377
+
378
+ ### Example 4: Session with judgment-relevant behavior
379
+
380
+ ```
381
+ ---
382
+ **Session Reflection**
383
+
384
+ Today we triaged a busy week and you reorganized your priorities after that unexpected investor call.
385
+
386
+ **What I'm taking away:**
387
+
388
+ 1. **Learning:** When investor communications arrive, you drop everything else to respond. Speed matters more than polish for these.
389
+ 2. **Observation:** You checked on the Acme proposal status three times unprompted. That one's weighing on you.
390
+
391
+ **Proposed Judgment Rules:**
392
+
393
+ 3. **Rule (priorities):** Investor communications take precedence over all other tasks
394
+ - *Based on:* You explicitly said "investors always come first" and reorganized your entire day around the call
395
+ - *Category:* priorities
396
+
397
+ 4. **Rule (escalation):** Surface Acme proposal status in every session until it's resolved
398
+ - *Based on:* You checked on it three times without me prompting
399
+ - *Category:* surfacing
400
+
401
+ *These would be saved to your judgment rules file so I apply them in future sessions.*
402
+ *Do these feel accurate? Say "looks good" to save, or tell me what to adjust.*
403
+
404
+ ---
405
+ ```
@@ -2,6 +2,7 @@
2
2
  name: memory-manager
3
3
  description: Handle cross-session persistence using the enhanced memory system (MCP) with fallback to markdown files.
4
4
  user-invocable: false
5
+ invocation: proactive
5
6
  effort-level: medium
6
7
  ---
7
8
 
@@ -22,6 +22,14 @@ Provide a concise morning brief to start the day with clarity. Surface what matt
22
22
 
23
23
  2. **Call `memory.recall`** for specific follow-up queries as needed
24
24
 
25
+ ### Judgment Rules (if available)
26
+
27
+ 3. **Check `context/judgment.yaml`** for surfacing rules with `trigger: "morning_brief"`
28
+ - Add matching items to the appropriate brief section
29
+ - Use `priorities` rules to order items when there are conflicts
30
+ - Check `overrides` rules for items that should jump to the top regardless of standard ordering
31
+ - Check `escalation` rules to boost severity of entity-linked items
32
+
25
33
  ### Markdown Fallback
26
34
 
27
35
  Use `context/commitments.md`, `context/waiting.md`, and `people/` files.
@@ -2,6 +2,7 @@
2
2
  name: onboarding
3
3
  description: Guide new users through a conversational discovery flow to create a personalized Claudia setup.
4
4
  user-invocable: false
5
+ invocation: proactive
5
6
  effort-level: medium
6
7
  ---
7
8
 
@@ -166,6 +166,19 @@ End each alert block (or group of alerts) with a trailing horizontal rule to vis
166
166
 
167
167
  ---
168
168
 
169
+ ## Judgment-Informed Severity
170
+
171
+ When `context/judgment.yaml` exists and has relevant rules:
172
+
173
+ - **Escalation rules** matching an entity or condition boost severity by one level (Watch -> Warning -> Critical)
174
+ - **Override rules** can adjust thresholds for specific entities (e.g., "always treat investor items as Warning or above")
175
+ - **Priority rules** influence which risks get surfaced first when multiple are active
176
+ - **Never reduce severity** below what standard logic determines. Judgment rules are additive only.
177
+
178
+ When a judgment rule influences severity, note it internally for provenance but don't narrate it unless the user asks why something was escalated.
179
+
180
+ ---
181
+
169
182
  ## Risk Detection Logic
170
183
 
171
184
  ### Commitment Analysis
@@ -34,6 +34,14 @@
34
34
  "effort_level": "medium",
35
35
  "triggers": ["delegate task", "use agent team", "process document", "research task"]
36
36
  },
37
+ {
38
+ "name": "judgment-awareness",
39
+ "path": "judgment-awareness.md",
40
+ "description": "Load and apply user-defined judgment rules from context/judgment.yaml to inform priority conflicts, escalation decisions, surfacing, and delegation",
41
+ "invocation": "proactive",
42
+ "effort_level": "low",
43
+ "triggers": ["priority conflict", "which task matters more", "escalation decision", "what to surface first"]
44
+ },
37
45
  {
38
46
  "name": "commitment-detector",
39
47
  "path": "commitment-detector.md",
@@ -2,6 +2,7 @@
2
2
  name: structure-generator
3
3
  description: Create personalized folder structures and files based on user archetype, business depth preferences, and workflow needs.
4
4
  user-invocable: false
5
+ invocation: proactive
5
6
  effort-level: medium
6
7
  ---
7
8
 
@@ -1427,6 +1428,139 @@ When generating a structure:
1427
1428
 
1428
1429
  ---
1429
1430
 
1431
+ ## Optional Judgment Rule Templates
1432
+
1433
+ During onboarding or later sessions, if the user wants help setting up initial judgment rules, offer archetype-specific starter priorities. These are created in `context/judgment.yaml` only when explicitly requested.
1434
+
1435
+ **When to offer:** After structure setup is complete, if the user asks about priorities, or if during `/meditate` the user wants a starting framework. Never create this file automatically.
1436
+
1437
+ ### Consultant/Advisor Starter Rules
1438
+
1439
+ ```yaml
1440
+ version: 1
1441
+
1442
+ priorities:
1443
+ - label: "Client deliverables"
1444
+ rank: 1
1445
+ note: "Active client work always comes first"
1446
+ - label: "Prospect follow-ups"
1447
+ rank: 2
1448
+ note: "Pipeline health depends on timely responses"
1449
+ - label: "Internal operations"
1450
+ rank: 3
1451
+ note: "Invoicing, admin, process improvement"
1452
+ - label: "Business development content"
1453
+ rank: 4
1454
+ note: "Thought leadership, networking, speaking"
1455
+
1456
+ escalation: []
1457
+ overrides: []
1458
+ surfacing: []
1459
+ delegation: []
1460
+ ```
1461
+
1462
+ ### Founder/Entrepreneur Starter Rules
1463
+
1464
+ ```yaml
1465
+ version: 1
1466
+
1467
+ priorities:
1468
+ - label: "Investor communications"
1469
+ rank: 1
1470
+ note: "Speed and responsiveness signal competence to investors"
1471
+ - label: "Product-blocking decisions"
1472
+ rank: 2
1473
+ note: "Unblock the team before anything else"
1474
+ - label: "Team management"
1475
+ rank: 3
1476
+ note: "1:1s, hiring, culture"
1477
+ - label: "Operational tasks"
1478
+ rank: 4
1479
+ note: "Admin, legal, finance"
1480
+
1481
+ escalation: []
1482
+ overrides: []
1483
+ surfacing: []
1484
+ delegation: []
1485
+ ```
1486
+
1487
+ ### Executive/Manager Starter Rules
1488
+
1489
+ ```yaml
1490
+ version: 1
1491
+
1492
+ priorities:
1493
+ - label: "Board and leadership commitments"
1494
+ rank: 1
1495
+ note: "Upward obligations have the least flexibility"
1496
+ - label: "Direct report 1:1s and development"
1497
+ rank: 2
1498
+ note: "People management is the multiplier"
1499
+ - label: "Cross-functional initiatives"
1500
+ rank: 3
1501
+ note: "Strategic projects and collaboration"
1502
+ - label: "Administrative tasks"
1503
+ rank: 4
1504
+ note: "Expense reports, scheduling, documentation"
1505
+
1506
+ escalation: []
1507
+ overrides: []
1508
+ surfacing: []
1509
+ delegation: []
1510
+ ```
1511
+
1512
+ ### Solo Professional Starter Rules
1513
+
1514
+ ```yaml
1515
+ version: 1
1516
+
1517
+ priorities:
1518
+ - label: "Client deliverables"
1519
+ rank: 1
1520
+ note: "Reputation is everything when you're solo"
1521
+ - label: "Overdue invoices"
1522
+ rank: 2
1523
+ note: "Cash flow is survival"
1524
+ - label: "New client onboarding"
1525
+ rank: 3
1526
+ note: "First impressions set the relationship"
1527
+ - label: "Professional development"
1528
+ rank: 4
1529
+ note: "Skills keep you competitive"
1530
+
1531
+ escalation: []
1532
+ overrides: []
1533
+ surfacing: []
1534
+ delegation: []
1535
+ ```
1536
+
1537
+ ### Content Creator Starter Rules
1538
+
1539
+ ```yaml
1540
+ version: 1
1541
+
1542
+ priorities:
1543
+ - label: "Sponsored content deadlines"
1544
+ rank: 1
1545
+ note: "Paid commitments with contractual obligations"
1546
+ - label: "Content calendar"
1547
+ rank: 2
1548
+ note: "Consistency builds audience trust"
1549
+ - label: "Collaboration responses"
1550
+ rank: 3
1551
+ note: "Relationships with other creators open doors"
1552
+ - label: "Audience engagement"
1553
+ rank: 4
1554
+ note: "Comments, DMs, community management"
1555
+
1556
+ escalation: []
1557
+ overrides: []
1558
+ surfacing: []
1559
+ delegation: []
1560
+ ```
1561
+
1562
+ ---
1563
+
1430
1564
  ## Handling Customization
1431
1565
 
1432
1566
  If user requests modifications: