@pi-unipi/core 2.0.1 → 2.0.2

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 (2) hide show
  1. package/constants.ts +12 -0
  2. package/package.json +1 -1
package/constants.ts CHANGED
@@ -236,11 +236,13 @@ export const COMPACTOR_TOOLS = {
236
236
  export const COMPACTOR_COMMANDS = {
237
237
  LOSSLESS_COMPACT: "lossless-compact",
238
238
  COMPACT: "compact",
239
+ SESSION_RECALL: "session-recall",
239
240
  COMPACT_RECALL: "compact-recall",
240
241
  COMPACT_STATS: "compact-stats",
241
242
  COMPACT_DOCTOR: "compact-doctor",
242
243
  COMPACT_SETTINGS: "compact-settings",
243
244
  COMPACT_PRESET: "compact-preset",
245
+ COMPACT_HELP: "compact-help",
244
246
  } as const;
245
247
 
246
248
  /** Compactor directory paths */
@@ -287,6 +289,16 @@ export const NOTIFY_DIRS = {
287
289
  CONFIG: "~/.unipi/config/notify",
288
290
  } as const;
289
291
 
292
+ /** BTW command names */
293
+ export const BTW_COMMANDS = {
294
+ BTW: "btw",
295
+ TANGENT: "btw-tangent",
296
+ NEW: "btw-new",
297
+ CLEAR: "btw-clear",
298
+ INJECT: "btw-inject",
299
+ SUMMARIZE: "btw-summarize",
300
+ } as const;
301
+
290
302
  /** Milestone command names */
291
303
  export const MILESTONE_COMMANDS = {
292
304
  ONBOARD: "milestone-onboard",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/core",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Shared utilities, event types, and constants for Unipi extension suite",
5
5
  "type": "module",
6
6
  "license": "MIT",