@pellux/goodvibes-agent 0.1.33 → 0.1.34

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to GoodVibes Agent will be recorded here.
4
4
 
5
+ ## 0.1.34 - 2026-05-31
6
+
7
+ - 28838cc Add curated Agent profile starters
8
+
5
9
  ## 0.1.33 - 2026-05-31
6
10
 
7
11
  - bfe0127 Add profile portability workspace coverage
package/README.md CHANGED
@@ -49,12 +49,13 @@ Use `goodvibes-agent capabilities` or `/capabilities` to inspect the OpenClaw/He
49
49
  Use isolated Agent runtime profiles when one machine needs separate operator identities or local state:
50
50
 
51
51
  ```sh
52
- goodvibes-agent profiles create household --yes
52
+ goodvibes-agent profiles templates
53
+ goodvibes-agent profiles create household --template household --yes
53
54
  goodvibes-agent --agent-profile household status
54
55
  GOODVIBES_AGENT_HOME=/path/to/agent-home goodvibes-agent status
55
56
  ```
56
57
 
57
- Profiles isolate Agent-local config, sessions, local memory, personas, skills, routines, and setup state. The daemon is still external and shared unless your daemon host is separately configured otherwise.
58
+ Profiles isolate Agent-local config, sessions, local memory, personas, skills, routines, and setup state. Starter templates seed local personas, skills, and routines for household, research, travel, operations, and personal productivity profiles. The daemon is still external and shared unless your daemon host is separately configured otherwise.
58
59
 
59
60
  Local Agent behavior is editable from the TUI:
60
61
 
package/docs/README.md CHANGED
@@ -20,7 +20,8 @@ Important baseline constraints:
20
20
  - Agent does not start, stop, restart, install, uninstall, or own daemon/listener/web/service lifecycle.
21
21
  - Agent Knowledge/Wiki uses only `/api/goodvibes-agent/knowledge/*`; there is no default Knowledge/Wiki, HomeGraph, or Home Assistant fallback.
22
22
  - Agent exposes `goodvibes-agent capabilities` and `/capabilities` to compare OpenClaw/Hermes capability targets against current Agent readiness and configuration paths.
23
- - Agent supports isolated runtime homes with `GOODVIBES_AGENT_HOME=<path>` and named profile homes with `goodvibes-agent profiles create <name> --yes` plus `--agent-profile <name>`.
23
+ - Agent supports isolated runtime homes with `GOODVIBES_AGENT_HOME=<path>` and named profile homes with `goodvibes-agent profiles create <name> --template <starter> --yes` plus `--agent-profile <name>`.
24
+ - Agent ships starter profile templates for household, research, travel, operations, and personal productivity local state.
24
25
  - Local personas, routines, and Agent skills are stored under the Agent surface root and are injected only into the serial Agent conversation.
25
26
  - Normal assistant chat is not coding-session delegation.
26
27
  - Build/fix/review delegation to GoodVibes TUI must be explicit; WRFC is not the default Agent behavior.
@@ -48,12 +48,13 @@ GOODVIBES_AGENT_HOME=/path/to/agent-home goodvibes-agent status
48
48
  Use named runtime profiles for repeatable local identities:
49
49
 
50
50
  ```sh
51
- goodvibes-agent profiles create household --yes
51
+ goodvibes-agent profiles templates
52
+ goodvibes-agent profiles create household --template household --yes
52
53
  goodvibes-agent --agent-profile household status
53
54
  goodvibes-agent --agent-profile household
54
55
  ```
55
56
 
56
- Named profiles isolate Agent-local config, sessions, memory, personas, skills, routines, and setup state under a profile-specific home. They do not start or isolate the external daemon by themselves.
57
+ Named profiles isolate Agent-local config, sessions, memory, personas, skills, routines, and setup state under a profile-specific home. Starter templates seed local personas, skills, and routines for household, research, travel, operations, and personal productivity profiles. They do not start or isolate the external daemon by themselves.
57
58
 
58
59
  ## Local Personas, Routines, And Skills
59
60
 
@@ -57,7 +57,7 @@ Primary sources used for the benchmark:
57
57
  | Tools/MCP | Broad toolsets, MCP, browser, media, terminal, files | GoodVibes SDK tools with Agent policy guards and MCP/provider integrations |
58
58
  | Voice/media/canvas/nodes | Voice, TTS, mobile nodes, live canvas, browser automation | GoodVibes media/voice/browser/node primitives with an Agent workspace for setup, image input, browser posture, MCP, and remote/node inspection |
59
59
  | Build/code work | Direct terminal/file/code tools and subagents | Explicit delegation to GoodVibes TUI; local WRFC/spawn fanout blocked |
60
- | Profiles | Independent profiles with own config/memory/skills/gateway | `GOODVIBES_AGENT_HOME` and named `--agent-profile` homes isolate Agent-local state; the Agent workspace exposes profile and portability flows; daemon remains external |
60
+ | Profiles | Independent profiles with own config/memory/skills/gateway | `GOODVIBES_AGENT_HOME` and named `--agent-profile` homes isolate Agent-local state; starter templates seed local personas/skills/routines; the Agent workspace exposes profile and portability flows; daemon remains external |
61
61
  | Security | DM pairing, approvals, sandboxing, allowlists | Daemon approvals, auth diagnostics, secret refs, confirmation gates, model-tool policy |
62
62
 
63
63
  ## Exceed Targets
@@ -75,7 +75,7 @@ GoodVibes Agent should exceed OpenClaw/Hermes by making these properties true fr
75
75
 
76
76
  - Live daemon account health and last delivery errors in the Channels workspace once a stable read-only route is available.
77
77
  - Artifact and multimodal Agent Knowledge ingest affordances once Agent-specific routes are stable.
78
- - Curated profile starter templates for household, research, travel, operations, and personal productivity profiles.
78
+ - Custom starter profile authoring/import for teams and repeatable operator lanes.
79
79
  - Artifact and multimodal Agent Knowledge ingestion when the isolated Agent route accepts artifact-backed media.
80
80
  - Delegation receipts and artifact review inside the operator workspace.
81
81
  - Approval center with route risk labels and saved policy presets.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-agent",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "private": false,
5
5
  "description": "Near-fork GoodVibes operator assistant with the GoodVibes TUI shell, renderer, input, fullscreen workspace, and daemon-connected Agent product brain.",
6
6
  "type": "module",
@@ -1,5 +1,20 @@
1
1
  import { existsSync, mkdirSync, readFileSync, readdirSync, rmSync, statSync, writeFileSync } from 'node:fs';
2
2
  import { join } from 'node:path';
3
+ import { GOODVIBES_AGENT_SURFACE_ROOT } from '../config/surface.ts';
4
+ import { AgentPersonaRegistry } from './persona-registry.ts';
5
+ import { AgentRoutineRegistry } from './routine-registry.ts';
6
+ import { AgentSkillRegistry } from './skill-registry.ts';
7
+
8
+ export type AgentRuntimeProfileTemplateId = 'household' | 'research' | 'travel' | 'operations' | 'personal-productivity';
9
+
10
+ export interface AgentRuntimeProfileTemplateSummary {
11
+ readonly id: AgentRuntimeProfileTemplateId;
12
+ readonly name: string;
13
+ readonly description: string;
14
+ readonly personaName: string;
15
+ readonly skillNames: readonly string[];
16
+ readonly routineNames: readonly string[];
17
+ }
3
18
 
4
19
  export interface AgentRuntimeProfileResolution {
5
20
  readonly id: string;
@@ -8,6 +23,22 @@ export interface AgentRuntimeProfileResolution {
8
23
 
9
24
  export interface AgentRuntimeProfileInfo extends AgentRuntimeProfileResolution {
10
25
  readonly createdAt: string | null;
26
+ readonly starterTemplateId?: AgentRuntimeProfileTemplateId;
27
+ readonly starterTemplateName?: string;
28
+ readonly starterTemplateApplication?: AgentRuntimeProfileTemplateApplication;
29
+ }
30
+
31
+ export interface AgentRuntimeProfileTemplateApplication {
32
+ readonly id: AgentRuntimeProfileTemplateId;
33
+ readonly name: string;
34
+ readonly appliedAt: string;
35
+ readonly personaIds: readonly string[];
36
+ readonly skillIds: readonly string[];
37
+ readonly routineIds: readonly string[];
38
+ }
39
+
40
+ export interface CreateAgentRuntimeProfileOptions {
41
+ readonly templateId?: AgentRuntimeProfileTemplateId;
11
42
  }
12
43
 
13
44
  export interface AgentRuntimeProfileCommandResult {
@@ -15,12 +46,15 @@ export interface AgentRuntimeProfileCommandResult {
15
46
  readonly kind:
16
47
  | 'agent.profiles.list'
17
48
  | 'agent.profiles.show'
49
+ | 'agent.profiles.templates'
18
50
  | 'agent.profiles.create'
19
51
  | 'agent.profiles.delete'
20
52
  | 'agent.profiles.error';
21
53
  readonly data?: {
22
54
  readonly profiles?: readonly AgentRuntimeProfileInfo[];
23
55
  readonly profile?: AgentRuntimeProfileInfo;
56
+ readonly templates?: readonly AgentRuntimeProfileTemplateSummary[];
57
+ readonly appliedTemplate?: AgentRuntimeProfileTemplateApplication;
24
58
  readonly nextCommand?: string;
25
59
  };
26
60
  readonly error?: string;
@@ -29,6 +63,326 @@ export interface AgentRuntimeProfileCommandResult {
29
63
  const PROFILE_CREATED_FILE = 'profile.json';
30
64
  const PROFILE_ID_PATTERN = /^[a-z0-9](?:[a-z0-9._-]{0,62}[a-z0-9])?$/;
31
65
 
66
+ interface AgentRuntimeProfileStarterTemplate extends AgentRuntimeProfileTemplateSummary {
67
+ readonly persona: {
68
+ readonly name: string;
69
+ readonly description: string;
70
+ readonly body: string;
71
+ readonly tags: readonly string[];
72
+ readonly triggers: readonly string[];
73
+ };
74
+ readonly skills: readonly {
75
+ readonly name: string;
76
+ readonly description: string;
77
+ readonly procedure: string;
78
+ readonly triggers: readonly string[];
79
+ readonly tags: readonly string[];
80
+ }[];
81
+ readonly routines: readonly {
82
+ readonly name: string;
83
+ readonly description: string;
84
+ readonly steps: string;
85
+ readonly triggers: readonly string[];
86
+ readonly tags: readonly string[];
87
+ }[];
88
+ }
89
+
90
+ const STARTER_TEMPLATES: readonly AgentRuntimeProfileStarterTemplate[] = [
91
+ {
92
+ id: 'household',
93
+ name: 'Household Operator',
94
+ description: 'Coordinate household tasks, home service checks, shared routines, and family logistics.',
95
+ personaName: 'Household Operator',
96
+ skillNames: ['Household Triage', 'Home Service Check'],
97
+ routineNames: ['Weekly Household Review'],
98
+ persona: {
99
+ name: 'Household Operator',
100
+ description: 'Practical assistant for home operations, shared chores, services, and family logistics.',
101
+ body: [
102
+ 'Operate as a calm household coordinator.',
103
+ 'Track preferences, routines, device/service notes, and recurring decisions in Agent-local memory after they are durable and non-secret.',
104
+ 'Use read-only daemon/operator routes for status checks. Require explicit approval for purchases, messages to other people, service changes, deletions, or secret handling.',
105
+ 'Keep replies concrete: next action, owner, date, and open question when one is needed.',
106
+ ].join('\n'),
107
+ tags: ['household', 'home', 'coordination'],
108
+ triggers: ['home', 'household', 'family', 'chores', 'errands'],
109
+ },
110
+ skills: [
111
+ {
112
+ name: 'Household Triage',
113
+ description: 'Turn a household request into owner, urgency, next step, and reminder/delegation posture.',
114
+ procedure: [
115
+ '1. Identify whether the task is information, coordination, purchase, repair, or reminder.',
116
+ '2. Check Agent-local memory for known preferences or constraints before asking repeat questions.',
117
+ '3. Propose the next non-destructive action. Ask before external messages, payments, account changes, or device/service changes.',
118
+ '4. Record durable non-secret decisions locally with provenance.',
119
+ ].join('\n'),
120
+ triggers: ['plan household', 'home task', 'family logistics'],
121
+ tags: ['household', 'triage'],
122
+ },
123
+ {
124
+ name: 'Home Service Check',
125
+ description: 'Review configured services and surface actionable household status without taking hidden action.',
126
+ procedure: [
127
+ '1. Inspect configured read-only status, approval, schedule, and knowledge routes.',
128
+ '2. Summarize degraded services, pending approvals, and stale routines.',
129
+ '3. Suggest explicit commands for approved follow-up instead of mutating services directly.',
130
+ ].join('\n'),
131
+ triggers: ['home status', 'service check', 'household check'],
132
+ tags: ['household', 'ops'],
133
+ },
134
+ ],
135
+ routines: [
136
+ {
137
+ name: 'Weekly Household Review',
138
+ description: 'Review open household commitments, pending approvals, and stale home notes.',
139
+ steps: [
140
+ '1. List pending local routines, workplan tasks, and approvals.',
141
+ '2. Summarize what changed since the last review from local Agent state.',
142
+ '3. Ask for confirmation before scheduling, sending messages, purchasing, or changing services.',
143
+ '4. Record reviewed preferences and stale notes locally.',
144
+ ].join('\n'),
145
+ triggers: ['weekly review', 'household review'],
146
+ tags: ['household', 'review'],
147
+ },
148
+ ],
149
+ },
150
+ {
151
+ id: 'research',
152
+ name: 'Research Analyst',
153
+ description: 'Source-grounded research, brief generation, question tracking, and evidence review.',
154
+ personaName: 'Research Analyst',
155
+ skillNames: ['Source-grounded Brief', 'Research Gap Tracker'],
156
+ routineNames: ['Research Packet Review'],
157
+ persona: {
158
+ name: 'Research Analyst',
159
+ description: 'Evidence-first analyst for research questions, summaries, and decision support.',
160
+ body: [
161
+ 'Prefer primary sources and cite provenance clearly.',
162
+ 'Use Agent Knowledge only through the isolated Agent knowledge routes.',
163
+ 'Separate findings, confidence, gaps, and recommendations.',
164
+ 'Do not store secrets or unsupported claims as durable knowledge.',
165
+ ].join('\n'),
166
+ tags: ['research', 'analysis', 'evidence'],
167
+ triggers: ['research', 'brief', 'compare', 'investigate'],
168
+ },
169
+ skills: [
170
+ {
171
+ name: 'Source-grounded Brief',
172
+ description: 'Produce concise findings with source provenance and confidence.',
173
+ procedure: [
174
+ '1. Clarify the decision or question if the request is ambiguous.',
175
+ '2. Search current sources when freshness matters.',
176
+ '3. Return answer, evidence, confidence, gaps, and suggested follow-up.',
177
+ '4. Save durable, reviewed, non-secret facts to Agent-local memory only when useful later.',
178
+ ].join('\n'),
179
+ triggers: ['brief me', 'research this', 'compare options'],
180
+ tags: ['research', 'briefing'],
181
+ },
182
+ {
183
+ name: 'Research Gap Tracker',
184
+ description: 'Maintain open research questions and stale assumptions.',
185
+ procedure: [
186
+ '1. Extract unknowns, weak evidence, and stale facts from the current task.',
187
+ '2. Convert actionable follow-up into workplan or local routine guidance only after explicit user direction.',
188
+ '3. Mark resolved gaps with source and date.',
189
+ ].join('\n'),
190
+ triggers: ['research gaps', 'unknowns', 'follow up'],
191
+ tags: ['research', 'quality'],
192
+ },
193
+ ],
194
+ routines: [
195
+ {
196
+ name: 'Research Packet Review',
197
+ description: 'Review recent research notes for stale assumptions and missing citations.',
198
+ steps: [
199
+ '1. Inspect local memory/skills/personas relevant to the current topic.',
200
+ '2. Identify claims lacking provenance.',
201
+ '3. Recommend refresh searches for time-sensitive claims.',
202
+ '4. Mark stale local notes instead of deleting them without explicit command intent.',
203
+ ].join('\n'),
204
+ triggers: ['review research', 'research packet'],
205
+ tags: ['research', 'review'],
206
+ },
207
+ ],
208
+ },
209
+ {
210
+ id: 'travel',
211
+ name: 'Travel Planner',
212
+ description: 'Trip planning, itinerary decisions, packing, local constraints, and travel follow-through.',
213
+ personaName: 'Travel Planner',
214
+ skillNames: ['Trip Decision Matrix', 'Travel Checklist Builder'],
215
+ routineNames: ['Pre-trip Readiness Review'],
216
+ persona: {
217
+ name: 'Travel Planner',
218
+ description: 'Travel planning assistant focused on constraints, itinerary tradeoffs, and readiness.',
219
+ body: [
220
+ 'Track destinations, dates, preferences, constraints, and open decisions locally.',
221
+ 'Search current details for prices, schedules, visa/rule changes, weather, and safety.',
222
+ 'Ask before bookings, purchases, external messages, or account changes.',
223
+ 'Keep recommendations practical and time-aware.',
224
+ ].join('\n'),
225
+ tags: ['travel', 'planning', 'logistics'],
226
+ triggers: ['trip', 'travel', 'itinerary', 'flight', 'hotel'],
227
+ },
228
+ skills: [
229
+ {
230
+ name: 'Trip Decision Matrix',
231
+ description: 'Compare travel options against user constraints and live facts.',
232
+ procedure: [
233
+ '1. List hard constraints: dates, budget, location, accessibility, work needs, and risk tolerance.',
234
+ '2. Search current schedule/price/rule data when decisions depend on fresh details.',
235
+ '3. Present ranked options with tradeoffs and next checks.',
236
+ '4. Ask for confirmation before bookings or payments.',
237
+ ].join('\n'),
238
+ triggers: ['choose travel', 'compare hotels', 'compare flights'],
239
+ tags: ['travel', 'decision'],
240
+ },
241
+ {
242
+ name: 'Travel Checklist Builder',
243
+ description: 'Create trip-specific prep lists and reminders from known constraints.',
244
+ procedure: [
245
+ '1. Infer trip type and constraints from the current conversation and local memory.',
246
+ '2. Build checklist sections for documents, packing, transport, lodging, work, health, and communications.',
247
+ '3. Keep tasks local until the user explicitly requests scheduling or external coordination.',
248
+ ].join('\n'),
249
+ triggers: ['packing list', 'trip checklist', 'travel prep'],
250
+ tags: ['travel', 'checklist'],
251
+ },
252
+ ],
253
+ routines: [
254
+ {
255
+ name: 'Pre-trip Readiness Review',
256
+ description: 'Check documents, reservations, transport, packing, weather, and open decisions.',
257
+ steps: [
258
+ '1. Review trip dates, locations, reservations, and open decisions from local Agent state.',
259
+ '2. Refresh current weather, schedule, and rule data when needed.',
260
+ '3. Summarize blockers and next confirmed action.',
261
+ '4. Ask before external sends, purchases, or reservation changes.',
262
+ ].join('\n'),
263
+ triggers: ['pre trip review', 'before travel'],
264
+ tags: ['travel', 'review'],
265
+ },
266
+ ],
267
+ },
268
+ {
269
+ id: 'operations',
270
+ name: 'Operations Lead',
271
+ description: 'Operational monitoring, incident triage, approvals, schedules, and service health.',
272
+ personaName: 'Operations Lead',
273
+ skillNames: ['Incident Intake', 'Approval Review'],
274
+ routineNames: ['Daily Operations Sweep'],
275
+ persona: {
276
+ name: 'Operations Lead',
277
+ description: 'Operator persona for systems, incidents, runbooks, approvals, and service posture.',
278
+ body: [
279
+ 'Favor explicit state, logs, health, approvals, and next action.',
280
+ 'Use read-only daemon/operator routes by default.',
281
+ 'Require explicit confirmation for run, pause, resume, cancel, retry, approve, deny, service changes, or writes.',
282
+ 'Delegate code/build fixes to GoodVibes TUI when explicitly requested.',
283
+ ].join('\n'),
284
+ tags: ['operations', 'incident', 'runbook'],
285
+ triggers: ['incident', 'ops', 'approval', 'automation', 'service'],
286
+ },
287
+ skills: [
288
+ {
289
+ name: 'Incident Intake',
290
+ description: 'Convert a symptom into severity, suspected system, evidence, and next safe checks.',
291
+ procedure: [
292
+ '1. Identify symptom, affected surface, time window, severity, and user impact.',
293
+ '2. Pull read-only status, approvals, schedules, runs, and workplan summaries.',
294
+ '3. Separate evidence from hypothesis.',
295
+ '4. Ask before mutating services, automation, schedules, or approvals.',
296
+ ].join('\n'),
297
+ triggers: ['incident', 'outage', 'broken', 'triage'],
298
+ tags: ['operations', 'incident'],
299
+ },
300
+ {
301
+ name: 'Approval Review',
302
+ description: 'Summarize pending approvals with risk, route, and required decision.',
303
+ procedure: [
304
+ '1. List pending approvals and classify risk labels.',
305
+ '2. Explain what each approval would allow.',
306
+ '3. Only approve, deny, or cancel from exact user command with confirmation.',
307
+ ].join('\n'),
308
+ triggers: ['approvals', 'pending approval', 'review approvals'],
309
+ tags: ['operations', 'approvals'],
310
+ },
311
+ ],
312
+ routines: [
313
+ {
314
+ name: 'Daily Operations Sweep',
315
+ description: 'Inspect service posture, pending approvals, failed runs, and stale tasks.',
316
+ steps: [
317
+ '1. Refresh daemon status, compat, approvals, workplan, automation snapshot, runs, schedules, and capacity.',
318
+ '2. Summarize degraded items and blocked work.',
319
+ '3. Recommend exact follow-up commands with confirmation gates for side effects.',
320
+ ].join('\n'),
321
+ triggers: ['daily ops', 'operations sweep'],
322
+ tags: ['operations', 'review'],
323
+ },
324
+ ],
325
+ },
326
+ {
327
+ id: 'personal-productivity',
328
+ name: 'Personal Productivity',
329
+ description: 'Task capture, weekly planning, focus blocks, reminders, and decision hygiene.',
330
+ personaName: 'Personal Productivity Coach',
331
+ skillNames: ['Inbox Zero Triage', 'Focus Block Planner'],
332
+ routineNames: ['Weekly Personal Planning'],
333
+ persona: {
334
+ name: 'Personal Productivity Coach',
335
+ description: 'Personal assistant for task capture, planning, prioritization, and follow-through.',
336
+ body: [
337
+ 'Keep planning lightweight and action-oriented.',
338
+ 'Capture durable preferences, commitments, and constraints locally when they are useful later.',
339
+ 'Prefer one clear next action over broad plans.',
340
+ 'Ask before sending messages, spending money, changing services, or deleting records.',
341
+ ].join('\n'),
342
+ tags: ['productivity', 'planning', 'personal'],
343
+ triggers: ['plan my day', 'prioritize', 'tasks', 'focus'],
344
+ },
345
+ skills: [
346
+ {
347
+ name: 'Inbox Zero Triage',
348
+ description: 'Sort loose tasks into do, delegate, defer, drop, or ask-for-info.',
349
+ procedure: [
350
+ '1. Capture each item as an outcome and next action.',
351
+ '2. Classify by urgency, effort, dependency, and consequence.',
352
+ '3. Recommend a short ordered list for today and parking lot for later.',
353
+ '4. Store durable commitments locally with source and date.',
354
+ ].join('\n'),
355
+ triggers: ['triage tasks', 'organize tasks', 'inbox'],
356
+ tags: ['productivity', 'triage'],
357
+ },
358
+ {
359
+ name: 'Focus Block Planner',
360
+ description: 'Design realistic focus blocks around constraints and energy.',
361
+ procedure: [
362
+ '1. Identify available time, constraints, and high-value outcome.',
363
+ '2. Split work into 25-90 minute blocks with breakpoints.',
364
+ '3. Keep schedule changes local unless the user explicitly asks for calendar or external updates.',
365
+ ].join('\n'),
366
+ triggers: ['focus block', 'plan my day', 'deep work'],
367
+ tags: ['productivity', 'focus'],
368
+ },
369
+ ],
370
+ routines: [
371
+ {
372
+ name: 'Weekly Personal Planning',
373
+ description: 'Review commitments, priorities, routines, and open decisions for the week.',
374
+ steps: [
375
+ '1. Review local tasks, routines, memory, and recent decisions.',
376
+ '2. Identify top outcomes, blockers, and decisions needed from the user.',
377
+ '3. Suggest a small weekly plan and ask before creating external reminders or sending messages.',
378
+ ].join('\n'),
379
+ triggers: ['weekly planning', 'plan my week'],
380
+ tags: ['productivity', 'review'],
381
+ },
382
+ ],
383
+ },
384
+ ];
385
+
32
386
  export function normalizeAgentRuntimeProfileId(value: string): string {
33
387
  return value
34
388
  .trim()
@@ -74,12 +428,126 @@ function readProfileCreatedAt(homeDirectory: string): string | null {
74
428
  return null;
75
429
  }
76
430
 
431
+ function readProfileStarterTemplate(homeDirectory: string): Pick<AgentRuntimeProfileInfo, 'starterTemplateId' | 'starterTemplateName'> {
432
+ const path = join(homeDirectory, PROFILE_CREATED_FILE);
433
+ if (!existsSync(path)) return {};
434
+ try {
435
+ const raw: unknown = JSON.parse(readFileSync(path, 'utf-8'));
436
+ if (!raw || typeof raw !== 'object' || Array.isArray(raw)) return {};
437
+ const record = raw as Record<string, unknown>;
438
+ const starter = record.starterTemplate;
439
+ if (!starter || typeof starter !== 'object' || Array.isArray(starter)) return {};
440
+ const starterRecord = starter as Record<string, unknown>;
441
+ const id = starterRecord.id;
442
+ const name = starterRecord.name;
443
+ if (!isAgentRuntimeProfileTemplateId(id) || typeof name !== 'string') return {};
444
+ return {
445
+ starterTemplateId: id,
446
+ starterTemplateName: name,
447
+ };
448
+ } catch {
449
+ return {};
450
+ }
451
+ }
452
+
77
453
  function buildProfileInfo(baseHomeDirectory: string, id: string): AgentRuntimeProfileInfo {
78
454
  const { homeDirectory } = resolveAgentRuntimeProfileHome(baseHomeDirectory, id);
79
455
  return {
80
456
  id,
81
457
  homeDirectory,
82
458
  createdAt: readProfileCreatedAt(homeDirectory),
459
+ ...readProfileStarterTemplate(homeDirectory),
460
+ };
461
+ }
462
+
463
+ function profileStorePath(homeDirectory: string, folder: string, file: string): string {
464
+ return join(homeDirectory, '.goodvibes', GOODVIBES_AGENT_SURFACE_ROOT, folder, file);
465
+ }
466
+
467
+ export function isAgentRuntimeProfileTemplateId(value: unknown): value is AgentRuntimeProfileTemplateId {
468
+ return typeof value === 'string' && STARTER_TEMPLATES.some((template) => template.id === value);
469
+ }
470
+
471
+ export function listAgentRuntimeProfileTemplates(): readonly AgentRuntimeProfileTemplateSummary[] {
472
+ return STARTER_TEMPLATES.map((template) => ({
473
+ id: template.id,
474
+ name: template.name,
475
+ description: template.description,
476
+ personaName: template.personaName,
477
+ skillNames: [...template.skillNames],
478
+ routineNames: [...template.routineNames],
479
+ }));
480
+ }
481
+
482
+ export function getAgentRuntimeProfileTemplate(templateId: AgentRuntimeProfileTemplateId): AgentRuntimeProfileTemplateSummary {
483
+ const template = STARTER_TEMPLATES.find((entry) => entry.id === templateId);
484
+ if (!template) throw new Error(`Unknown Agent starter profile template: ${templateId}`);
485
+ return {
486
+ id: template.id,
487
+ name: template.name,
488
+ description: template.description,
489
+ personaName: template.personaName,
490
+ skillNames: [...template.skillNames],
491
+ routineNames: [...template.routineNames],
492
+ };
493
+ }
494
+
495
+ function createMissingSkill(registry: AgentSkillRegistry, template: AgentRuntimeProfileStarterTemplate['skills'][number]): string {
496
+ const existing = registry.get(template.name);
497
+ if (existing) return existing.id;
498
+ return registry.create({
499
+ name: template.name,
500
+ description: template.description,
501
+ procedure: template.procedure,
502
+ triggers: template.triggers,
503
+ tags: template.tags,
504
+ enabled: true,
505
+ source: 'system',
506
+ provenance: `goodvibes-agent starter:${template.name}`,
507
+ }).id;
508
+ }
509
+
510
+ function createMissingRoutine(registry: AgentRoutineRegistry, template: AgentRuntimeProfileStarterTemplate['routines'][number]): string {
511
+ const existing = registry.get(template.name);
512
+ if (existing) return existing.id;
513
+ return registry.create({
514
+ name: template.name,
515
+ description: template.description,
516
+ steps: template.steps,
517
+ triggers: template.triggers,
518
+ tags: template.tags,
519
+ enabled: true,
520
+ source: 'system',
521
+ provenance: `goodvibes-agent starter:${template.name}`,
522
+ }).id;
523
+ }
524
+
525
+ export function applyAgentRuntimeProfileTemplate(homeDirectory: string, templateId: AgentRuntimeProfileTemplateId): AgentRuntimeProfileTemplateApplication {
526
+ const template = STARTER_TEMPLATES.find((entry) => entry.id === templateId);
527
+ if (!template) throw new Error(`Unknown Agent starter profile template: ${templateId}`);
528
+ const personaRegistry = new AgentPersonaRegistry(profileStorePath(homeDirectory, 'personas', 'personas.json'));
529
+ const skillRegistry = new AgentSkillRegistry(profileStorePath(homeDirectory, 'skills', 'skills.json'));
530
+ const routineRegistry = new AgentRoutineRegistry(profileStorePath(homeDirectory, 'routines', 'routines.json'));
531
+ const existingPersona = personaRegistry.get(template.persona.name);
532
+ const persona = existingPersona ?? personaRegistry.create({
533
+ name: template.persona.name,
534
+ description: template.persona.description,
535
+ body: template.persona.body,
536
+ tags: template.persona.tags,
537
+ triggers: template.persona.triggers,
538
+ source: 'system',
539
+ provenance: `goodvibes-agent starter:${template.name}`,
540
+ });
541
+ personaRegistry.setActive(persona.id);
542
+ const skillIds = template.skills.map((skill) => createMissingSkill(skillRegistry, skill));
543
+ const routineIds = template.routines.map((routine) => createMissingRoutine(routineRegistry, routine));
544
+ return {
545
+ id: template.id,
546
+ name: template.name,
547
+ appliedAt: new Date().toISOString(),
548
+ personaIds: [persona.id],
549
+ skillIds,
550
+ routineIds,
83
551
  };
84
552
  }
85
553
 
@@ -99,16 +567,29 @@ export function listAgentRuntimeProfiles(baseHomeDirectory: string): readonly Ag
99
567
  .map((entry) => buildProfileInfo(baseHomeDirectory, entry));
100
568
  }
101
569
 
102
- export function createAgentRuntimeProfile(baseHomeDirectory: string, profileName: string): AgentRuntimeProfileInfo {
570
+ export function createAgentRuntimeProfile(baseHomeDirectory: string, profileName: string, options: CreateAgentRuntimeProfileOptions = {}): AgentRuntimeProfileInfo {
103
571
  const resolution = resolveAgentRuntimeProfileHome(baseHomeDirectory, profileName);
104
572
  mkdirSync(resolution.homeDirectory, { recursive: true });
105
573
  const createdAt = new Date().toISOString();
574
+ const appliedTemplate = options.templateId
575
+ ? applyAgentRuntimeProfileTemplate(resolution.homeDirectory, options.templateId)
576
+ : undefined;
106
577
  writeFileSync(
107
578
  join(resolution.homeDirectory, PROFILE_CREATED_FILE),
108
- `${JSON.stringify({ id: resolution.id, createdAt }, null, 2)}\n`,
579
+ `${JSON.stringify({
580
+ id: resolution.id,
581
+ createdAt,
582
+ starterTemplate: appliedTemplate,
583
+ }, null, 2)}\n`,
109
584
  'utf-8',
110
585
  );
111
- return { ...resolution, createdAt };
586
+ return {
587
+ ...resolution,
588
+ createdAt,
589
+ starterTemplateId: appliedTemplate?.id,
590
+ starterTemplateName: appliedTemplate?.name,
591
+ starterTemplateApplication: appliedTemplate,
592
+ };
112
593
  }
113
594
 
114
595
  export function deleteAgentRuntimeProfile(baseHomeDirectory: string, profileName: string): boolean {
package/src/cli/help.ts CHANGED
@@ -96,7 +96,7 @@ export function renderGoodVibesHelp(binary = 'goodvibes-agent'): string {
96
96
  ` ${binary} models current`,
97
97
  ` ${binary} models use openai:gpt-5.2`,
98
98
  ` ${binary} providers inspect openai`,
99
- ` ${binary} profiles create household --yes`,
99
+ ` ${binary} profiles create household --template household --yes`,
100
100
  ` ${binary} --agent-profile household`,
101
101
  ` ${binary} compat`,
102
102
  ` ${binary} capabilities`,
@@ -154,9 +154,9 @@ const COMMAND_HELP: Record<string, CommandHelp> = {
154
154
  examples: ['providers', 'providers inspect openai-subscriber', 'providers use openai openai:gpt-5.4'],
155
155
  },
156
156
  profiles: {
157
- usage: ['profiles list', 'profiles show <name>', 'profiles create <name> --yes', 'profiles delete <name> --yes', '--agent-profile <name>'],
158
- summary: 'Create and inspect isolated Agent runtime profile homes. A profile changes Agent-local config, sessions, memory, personas, skills, routines, and setup paths without changing the externally owned daemon.',
159
- examples: ['profiles create household --yes', 'profiles list', '--agent-profile household status', '--agent-profile household'],
157
+ usage: ['profiles list', 'profiles templates', 'profiles show <name>', 'profiles create <name> [--template <id>] --yes', 'profiles delete <name> --yes', '--agent-profile <name>'],
158
+ summary: 'Create and inspect isolated Agent runtime profile homes, with starter templates for household, research, travel, operations, and personal productivity. A profile changes Agent-local config, sessions, memory, personas, skills, routines, and setup paths without changing the externally owned daemon.',
159
+ examples: ['profiles templates', 'profiles create household --template household --yes', 'profiles list', '--agent-profile household status', '--agent-profile household'],
160
160
  },
161
161
  models: {
162
162
  usage: ['models [provider]', 'models current', 'models use <registryKey>', 'models pin <registryKey>', 'models recent'],
@@ -1,8 +1,11 @@
1
1
  import {
2
2
  createAgentRuntimeProfile,
3
3
  deleteAgentRuntimeProfile,
4
+ isAgentRuntimeProfileTemplateId,
4
5
  listAgentRuntimeProfiles,
6
+ listAgentRuntimeProfileTemplates,
5
7
  resolveAgentRuntimeProfileHome,
8
+ type AgentRuntimeProfileTemplateId,
6
9
  type AgentRuntimeProfileCommandResult,
7
10
  type AgentRuntimeProfileInfo,
8
11
  } from '../agent/runtime-profile.ts';
@@ -26,26 +29,68 @@ function commandValues(args: readonly string[]): readonly string[] {
26
29
  return values;
27
30
  }
28
31
 
32
+ function flagValue(args: readonly string[], names: readonly string[]): string | null {
33
+ for (let index = 0; index < args.length; index += 1) {
34
+ const token = args[index]!;
35
+ for (const name of names) {
36
+ if (token === name) {
37
+ const next = args[index + 1];
38
+ return next && !next.startsWith('--') ? next : null;
39
+ }
40
+ if (token.startsWith(`${name}=`)) return token.slice(name.length + 1);
41
+ }
42
+ }
43
+ return null;
44
+ }
45
+
46
+ function parseTemplate(args: readonly string[]): AgentRuntimeProfileTemplateId | undefined {
47
+ const raw = flagValue(args, ['--template', '--starter']);
48
+ if (!raw || raw === 'blank') return undefined;
49
+ const normalized = raw.trim().toLowerCase().replace(/_/g, '-');
50
+ if (isAgentRuntimeProfileTemplateId(normalized)) return normalized;
51
+ throw new Error(`Unknown Agent starter profile template: ${raw}. Use profiles templates to list starters.`);
52
+ }
53
+
29
54
  function profileLine(profile: AgentRuntimeProfileInfo): string {
30
55
  const created = profile.createdAt ? ` created=${profile.createdAt}` : '';
31
- return ` ${profile.id} home=${profile.homeDirectory}${created}`;
56
+ const starter = profile.starterTemplateId ? ` starter=${profile.starterTemplateId}` : '';
57
+ return ` ${profile.id} home=${profile.homeDirectory}${created}${starter}`;
32
58
  }
33
59
 
34
60
  function renderProfilesResult(result: AgentRuntimeProfileCommandResult): string {
35
61
  if (!result.ok) return result.error ?? 'Agent profile command failed.';
36
62
  if (result.kind === 'agent.profiles.list') {
37
63
  const profiles = result.data?.profiles ?? [];
38
- if (profiles.length === 0) return 'No Agent runtime profiles. Use: goodvibes-agent profiles create <name> --yes';
64
+ if (profiles.length === 0) return 'No Agent runtime profiles. Use: goodvibes-agent profiles create <name> --template <id> --yes';
39
65
  return [
40
66
  `Agent runtime profiles (${profiles.length})`,
41
67
  ...profiles.map(profileLine),
42
68
  ].join('\n');
43
69
  }
70
+ if (result.kind === 'agent.profiles.templates') {
71
+ const templates = result.data?.templates ?? [];
72
+ return [
73
+ `Agent starter profile templates (${templates.length})`,
74
+ ...templates.map((template) => [
75
+ ` ${template.id} ${template.name}`,
76
+ ` ${template.description}`,
77
+ ` persona: ${template.personaName}`,
78
+ ` skills: ${template.skillNames.join(', ')}`,
79
+ ` routines: ${template.routineNames.join(', ')}`,
80
+ ].join('\n')),
81
+ 'Use: goodvibes-agent profiles create <name> --template <id> --yes',
82
+ ].join('\n');
83
+ }
44
84
  const profile = result.data?.profile;
45
85
  if (result.kind === 'agent.profiles.create' && profile) {
86
+ const template = result.data?.appliedTemplate;
46
87
  return [
47
88
  `Agent runtime profile created: ${profile.id}`,
48
89
  ` home: ${profile.homeDirectory}`,
90
+ ...(template ? [
91
+ ` starter: ${template.id} (${template.name})`,
92
+ ` seeded: ${template.personaIds.length} persona, ${template.skillIds.length} skills, ${template.routineIds.length} routine`,
93
+ ] : []),
49
94
  ` use: ${result.data?.nextCommand ?? `goodvibes-agent --agent-profile ${profile.id}`}`,
50
95
  ].join('\n');
51
96
  }
@@ -77,6 +122,18 @@ export async function handleProfilesCommand(runtime: ProfilesCommandRuntime): Pr
77
122
  };
78
123
  }
79
124
 
125
+ if (sub === 'templates' || sub === 'starters') {
126
+ const result: AgentRuntimeProfileCommandResult = {
127
+ ok: true,
128
+ kind: 'agent.profiles.templates',
129
+ data: { templates: listAgentRuntimeProfileTemplates() },
130
+ };
131
+ return {
132
+ output: renderProfilesOutput(result, runtime.cli.flags.outputFormat),
133
+ exitCode: 0,
134
+ };
135
+ }
136
+
80
137
  if (sub === 'show' || sub === 'path' || sub === 'home') {
81
138
  const name = values[0];
82
139
  if (!name) {
@@ -91,12 +148,14 @@ export async function handleProfilesCommand(runtime: ProfilesCommandRuntime): Pr
91
148
  };
92
149
  }
93
150
  const profile = resolveAgentRuntimeProfileHome(runtime.homeDirectory, name);
151
+ const info = listAgentRuntimeProfiles(runtime.homeDirectory).find((entry) => entry.id === profile.id) ?? { ...profile, createdAt: null };
94
152
  const result: AgentRuntimeProfileCommandResult = {
95
153
  ok: true,
96
154
  kind: 'agent.profiles.show',
97
- data: { profile: { ...profile, createdAt: null } },
155
+ data: { profile: info },
98
156
  };
99
- const text = [`Agent runtime profile: ${profile.id}`, ` home: ${profile.homeDirectory}`, ` use: goodvibes-agent --agent-profile ${profile.id}`].join('\n');
157
+ const starter = info.starterTemplateId ? [` starter: ${info.starterTemplateId} (${info.starterTemplateName ?? info.starterTemplateId})`] : [];
158
+ const text = [`Agent runtime profile: ${profile.id}`, ` home: ${profile.homeDirectory}`, ...starter, ` use: goodvibes-agent --agent-profile ${profile.id}`].join('\n');
100
159
  return {
101
160
  output: runtime.cli.flags.outputFormat === 'json' ? JSON.stringify(result, null, 2) : text,
102
161
  exitCode: 0,
@@ -109,7 +168,7 @@ export async function handleProfilesCommand(runtime: ProfilesCommandRuntime): Pr
109
168
  const result: AgentRuntimeProfileCommandResult = {
110
169
  ok: false,
111
170
  kind: 'agent.profiles.error',
112
- error: 'Usage: goodvibes-agent profiles create <name> --yes',
171
+ error: 'Usage: goodvibes-agent profiles create <name> [--template <id>] --yes',
113
172
  };
114
173
  return {
115
174
  output: renderProfilesOutput(result, runtime.cli.flags.outputFormat),
@@ -127,12 +186,14 @@ export async function handleProfilesCommand(runtime: ProfilesCommandRuntime): Pr
127
186
  exitCode: 2,
128
187
  };
129
188
  }
130
- const profile = createAgentRuntimeProfile(runtime.homeDirectory, name);
189
+ const templateId = parseTemplate(rawRest);
190
+ const profile = createAgentRuntimeProfile(runtime.homeDirectory, name, { templateId });
131
191
  const result: AgentRuntimeProfileCommandResult = {
132
192
  ok: true,
133
193
  kind: 'agent.profiles.create',
134
194
  data: {
135
195
  profile,
196
+ appliedTemplate: profile.starterTemplateApplication,
136
197
  nextCommand: `goodvibes-agent --agent-profile ${profile.id}`,
137
198
  },
138
199
  };
@@ -188,7 +249,7 @@ export async function handleProfilesCommand(runtime: ProfilesCommandRuntime): Pr
188
249
  const result: AgentRuntimeProfileCommandResult = {
189
250
  ok: false,
190
251
  kind: 'agent.profiles.error',
191
- error: 'Usage: goodvibes-agent profiles [list|show <name>|create <name> --yes|delete <name> --yes]',
252
+ error: 'Usage: goodvibes-agent profiles [list|templates|show <name>|create <name> [--template <id>] --yes|delete <name> --yes]',
192
253
  };
193
254
  return {
194
255
  output: renderProfilesOutput(result, runtime.cli.flags.outputFormat),
@@ -525,7 +525,7 @@ export const AGENT_WORKSPACE_CATEGORIES: readonly AgentWorkspaceCategory[] = [
525
525
  { id: 'profile-sync-list', label: 'Profile sync list', detail: 'Inspect saved config profiles available for export/import.', command: '/profilesync list', kind: 'command', safety: 'read-only' },
526
526
  { id: 'profile-sync-export', label: 'Export profile sync', detail: 'Export config profiles to a portable bundle. Requires a real path and explicit --yes.', command: '/profilesync export <path> --yes', kind: 'command', safety: 'safe' },
527
527
  { id: 'setup-transfer-export', label: 'Export setup transfer', detail: 'Export Agent setup transfer data from the current home. Requires a real path and explicit --yes.', command: '/setup transfer export <path> --yes', kind: 'command', safety: 'safe' },
528
- { id: 'runtime-profile-create', label: 'Create runtime profile', detail: 'Use the CLI command goodvibes-agent profiles create <name> --yes, then launch with --agent-profile <name>. Runtime profile homes isolate Agent-local state and do not start a daemon.', kind: 'guidance', safety: 'safe' },
528
+ { id: 'runtime-profile-create', label: 'Create runtime profile', detail: 'Use goodvibes-agent profiles templates, then goodvibes-agent profiles create <name> --template <id> --yes. Starters seed local personas, skills, and routines without touching the daemon.', kind: 'guidance', safety: 'safe' },
529
529
  { id: 'runtime-profile-switch', label: 'Switch runtime profile', detail: 'Launch goodvibes-agent --agent-profile <name> to use that isolated Agent home. This workspace cannot switch the current process home after startup.', kind: 'guidance', safety: 'safe' },
530
530
  ],
531
531
  },
@@ -100,11 +100,11 @@ export const OPERATOR_CAPABILITY_BENCHMARKS: readonly OperatorCapabilityBenchmar
100
100
  posture: 'ready',
101
101
  competitors: ['openclaw', 'hermes'],
102
102
  competitorBaseline: 'Skills/procedural memory, persona files, profile state, durable memory, and recurring workflows.',
103
- goodvibesAgent: 'Typed local registries for Agent personas, skills, routines, and local memory; active items are injected into the serial main conversation.',
104
- configure: ['/personas create ...', '/agent-skills create ...', '/routines create ...', '/memory add ...'],
105
- use: ['/personas use <id>', '/skills local list', '/routines start <id>', '/memory search <query>'],
106
- exceedsBy: ['Review/stale lifecycle fields', 'secret-value rejection', 'Agent-local state that does not contaminate wiki or HomeGraph'],
107
- next: ['Add CLI parity for local registry lifecycle and a curated starter pack of operator skills/routines.'],
103
+ goodvibesAgent: 'Typed local registries for Agent personas, skills, routines, and local memory; active items are injected into the serial main conversation. Runtime profile starters seed curated persona, skill, and routine bundles.',
104
+ configure: ['/personas create ...', '/agent-skills create ...', '/routines create ...', '/memory add ...', 'goodvibes-agent profiles create research --template research --yes'],
105
+ use: ['/personas use <id>', '/skills local list', '/routines start <id>', '/memory search <query>', 'goodvibes-agent profiles templates'],
106
+ exceedsBy: ['Review/stale lifecycle fields', 'secret-value rejection', 'Agent-local state that does not contaminate wiki or HomeGraph', 'starter bundles that remain local and reviewable'],
107
+ next: ['Add import/export editing for custom starter templates.'],
108
108
  },
109
109
  {
110
110
  id: 'automation-schedules',
@@ -160,11 +160,11 @@ export const OPERATOR_CAPABILITY_BENCHMARKS: readonly OperatorCapabilityBenchmar
160
160
  posture: 'ready',
161
161
  competitors: ['hermes'],
162
162
  competitorBaseline: 'Profiles run independent agents with isolated configs, sessions, skills, memory, cron jobs, and gateway state.',
163
- goodvibesAgent: 'Supports GOODVIBES_AGENT_HOME and named --agent-profile homes for isolated Agent-local config, sessions, memory, personas, skills, routines, setup, and bundles; daemon remains shared/external by design. The Agent workspace exposes runtime profile posture, config profiles, profile sync, and setup transfer shortcuts.',
164
- configure: ['GOODVIBES_AGENT_HOME=<path> goodvibes-agent status', 'goodvibes-agent profiles create household --yes', '/agent → Profiles & Portability'],
163
+ goodvibesAgent: 'Supports GOODVIBES_AGENT_HOME and named --agent-profile homes for isolated Agent-local config, sessions, memory, personas, skills, routines, setup, and bundles; daemon remains shared/external by design. The Agent workspace exposes runtime profile posture, config profiles, profile sync, setup transfer shortcuts, and starter profile templates.',
164
+ configure: ['GOODVIBES_AGENT_HOME=<path> goodvibes-agent status', 'goodvibes-agent profiles create household --template household --yes', '/agent → Profiles & Portability'],
165
165
  use: ['goodvibes-agent --agent-profile household', '/profiles', '/profilesync list', '/setup transfer export <path> --yes'],
166
- exceedsBy: ['Typed support bundles', 'explicit daemon boundary', 'no accidental cross-product knowledge fallback', 'profile isolation without hidden daemon lifecycle ownership', 'fullscreen profile and portability workflow discovery'],
167
- next: ['Add curated profile starter templates for household, research, travel, operations, and personal productivity profiles.'],
166
+ exceedsBy: ['Typed support bundles', 'explicit daemon boundary', 'no accidental cross-product knowledge fallback', 'profile isolation without hidden daemon lifecycle ownership', 'fullscreen profile and portability workflow discovery', 'curated local starter packs'],
167
+ next: ['Add custom starter template authoring and import.'],
168
168
  },
169
169
  {
170
170
  id: 'security-approvals',
@@ -134,6 +134,7 @@ function snapshotLines(category: AgentWorkspaceCategory, snapshot: AgentWorkspac
134
134
  { text: `Runtime profile root: ${snapshot.runtimeProfileRoot}`, fg: PALETTE.muted },
135
135
  { text: `Config profiles: ${snapshot.configProfileCount}`, fg: PALETTE.info },
136
136
  { text: 'Named runtime profiles isolate Agent-local config, sessions, memory, personas, skills, routines, setup, and bundles.', fg: PALETTE.good },
137
+ { text: 'Starter templates: household, research, travel, operations, personal-productivity.', fg: PALETTE.info },
137
138
  { text: 'The external daemon remains shared unless the daemon host is configured separately.', fg: PALETTE.warn },
138
139
  { text: 'Portable bundles require explicit export/import commands with real paths and --yes.', fg: PALETTE.muted },
139
140
  );
package/src/version.ts CHANGED
@@ -6,7 +6,7 @@ import { join } from 'node:path';
6
6
  // The prebuild script updates the fallback value before compilation.
7
7
  // Uses import.meta.dir (Bun) to locate package.json relative to this file,
8
8
  // which is correct regardless of the process working directory.
9
- let _version = '0.1.33';
9
+ let _version = '0.1.34';
10
10
  let _sdkVersion = '0.33.35';
11
11
  try {
12
12
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8')) as {