@lumenflow/packs-sidekick 3.19.0 → 3.21.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/manifest.yaml CHANGED
@@ -1,6 +1,7 @@
1
1
  id: sidekick
2
2
  version: 0.1.0
3
3
  config_key: sidekick
4
+ policy_factory: policy-factory.ts#createSidekickPolicyFactory
4
5
  task_types:
5
6
  - sidekick
6
7
  tools:
@@ -49,7 +50,7 @@ tools:
49
50
  properties:
50
51
  status:
51
52
  type: string
52
- enum: [pending, done]
53
+ enum: [pending, done, canceled]
53
54
  priority:
54
55
  type: string
55
56
  enum: [P0, P1, P2, P3]
@@ -67,6 +68,67 @@ tools:
67
68
  output_schema:
68
69
  type: object
69
70
  additionalProperties: true
71
+ - name: task:update
72
+ entry: tool-impl/task-tools.ts
73
+ permission: write
74
+ required_scopes:
75
+ - type: path
76
+ pattern: .sidekick/**
77
+ access: read
78
+ - type: path
79
+ pattern: .sidekick/**
80
+ access: write
81
+ input_schema:
82
+ type: object
83
+ properties:
84
+ id:
85
+ type: string
86
+ minLength: 1
87
+ title:
88
+ type: string
89
+ minLength: 1
90
+ description:
91
+ type: string
92
+ priority:
93
+ type: string
94
+ enum: [P0, P1, P2, P3]
95
+ tags:
96
+ type: array
97
+ items: { type: string }
98
+ due_at:
99
+ type: string
100
+ cron:
101
+ type: string
102
+ dry_run:
103
+ type: boolean
104
+ required: [id]
105
+ additionalProperties: false
106
+ output_schema:
107
+ type: object
108
+ additionalProperties: true
109
+ - name: task:cancel
110
+ entry: tool-impl/task-tools.ts
111
+ permission: admin
112
+ required_scopes:
113
+ - type: path
114
+ pattern: .sidekick/**
115
+ access: read
116
+ - type: path
117
+ pattern: .sidekick/**
118
+ access: write
119
+ input_schema:
120
+ type: object
121
+ properties:
122
+ id:
123
+ type: string
124
+ minLength: 1
125
+ dry_run:
126
+ type: boolean
127
+ required: [id]
128
+ additionalProperties: false
129
+ output_schema:
130
+ type: object
131
+ additionalProperties: true
70
132
  - name: task:complete
71
133
  entry: tool-impl/task-tools.ts
72
134
  permission: write
@@ -174,6 +236,29 @@ tools:
174
236
  type: object
175
237
  additionalProperties: true
176
238
  - name: memory:forget
239
+ entry: tool-impl/memory-tools.ts
240
+ permission: admin
241
+ required_scopes:
242
+ - type: path
243
+ pattern: .sidekick/**
244
+ access: read
245
+ - type: path
246
+ pattern: .sidekick/**
247
+ access: write
248
+ input_schema:
249
+ type: object
250
+ properties:
251
+ id:
252
+ type: string
253
+ minLength: 1
254
+ dry_run:
255
+ type: boolean
256
+ required: [id]
257
+ additionalProperties: false
258
+ output_schema:
259
+ type: object
260
+ additionalProperties: true
261
+ - name: memory:update
177
262
  entry: tool-impl/memory-tools.ts
178
263
  permission: write
179
264
  required_scopes:
@@ -189,6 +274,15 @@ tools:
189
274
  id:
190
275
  type: string
191
276
  minLength: 1
277
+ type:
278
+ type: string
279
+ enum: [fact, preference, note, snippet]
280
+ content:
281
+ type: string
282
+ minLength: 1
283
+ tags:
284
+ type: array
285
+ items: { type: string }
192
286
  dry_run:
193
287
  type: boolean
194
288
  required: [id]
@@ -222,6 +316,43 @@ tools:
222
316
  output_schema:
223
317
  type: object
224
318
  additionalProperties: true
319
+ - name: channel:list
320
+ entry: tool-impl/channel-tools.ts
321
+ permission: read
322
+ required_scopes:
323
+ - type: path
324
+ pattern: .sidekick/**
325
+ access: read
326
+ input_schema:
327
+ type: object
328
+ properties: {}
329
+ additionalProperties: false
330
+ output_schema:
331
+ type: object
332
+ additionalProperties: true
333
+ - name: channel:delete
334
+ entry: tool-impl/channel-tools.ts
335
+ permission: admin
336
+ required_scopes:
337
+ - type: path
338
+ pattern: .sidekick/**
339
+ access: read
340
+ - type: path
341
+ pattern: .sidekick/**
342
+ access: write
343
+ input_schema:
344
+ type: object
345
+ properties:
346
+ id:
347
+ type: string
348
+ minLength: 1
349
+ dry_run:
350
+ type: boolean
351
+ required: [id]
352
+ additionalProperties: false
353
+ output_schema:
354
+ type: object
355
+ additionalProperties: true
225
356
  - name: channel:send
226
357
  entry: tool-impl/channel-tools.ts
227
358
  permission: write
@@ -342,6 +473,73 @@ tools:
342
473
  output_schema:
343
474
  type: object
344
475
  additionalProperties: true
476
+ - name: routine:update
477
+ entry: tool-impl/routine-tools.ts
478
+ permission: write
479
+ required_scopes:
480
+ - type: path
481
+ pattern: .sidekick/**
482
+ access: read
483
+ - type: path
484
+ pattern: .sidekick/**
485
+ access: write
486
+ input_schema:
487
+ type: object
488
+ properties:
489
+ id:
490
+ type: string
491
+ minLength: 1
492
+ name:
493
+ type: string
494
+ minLength: 1
495
+ steps:
496
+ type: array
497
+ minItems: 1
498
+ items:
499
+ type: object
500
+ properties:
501
+ tool:
502
+ type: string
503
+ minLength: 1
504
+ input:
505
+ type: object
506
+ additionalProperties: true
507
+ required: [tool]
508
+ additionalProperties: false
509
+ cron:
510
+ type: string
511
+ enabled:
512
+ type: boolean
513
+ dry_run:
514
+ type: boolean
515
+ required: [id]
516
+ additionalProperties: false
517
+ output_schema:
518
+ type: object
519
+ additionalProperties: true
520
+ - name: routine:delete
521
+ entry: tool-impl/routine-tools.ts
522
+ permission: admin
523
+ required_scopes:
524
+ - type: path
525
+ pattern: .sidekick/**
526
+ access: read
527
+ - type: path
528
+ pattern: .sidekick/**
529
+ access: write
530
+ input_schema:
531
+ type: object
532
+ properties:
533
+ id:
534
+ type: string
535
+ minLength: 1
536
+ dry_run:
537
+ type: boolean
538
+ required: [id]
539
+ additionalProperties: false
540
+ output_schema:
541
+ type: object
542
+ additionalProperties: true
345
543
  - name: routine:run
346
544
  entry: tool-impl/routine-tools.ts
347
545
  permission: read
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumenflow/packs-sidekick",
3
- "version": "3.19.0",
3
+ "version": "3.21.0",
4
4
  "description": "Sidekick personal assistant pack for LumenFlow — 16 tools for task management, typed memory, channels, routines, and audit",
5
5
  "keywords": [
6
6
  "lumenflow",
@@ -44,6 +44,9 @@
44
44
  "LICENSE.md",
45
45
  "README.md"
46
46
  ],
47
+ "dependencies": {
48
+ "@lumenflow/kernel": "^3.21.0"
49
+ },
47
50
  "devDependencies": {
48
51
  "typescript": "^5.9.3",
49
52
  "vitest": "^4.0.18"