@pi-unipi/command-enchantment 0.1.4 → 0.1.5

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/package.json +1 -1
  2. package/src/constants.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/command-enchantment",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Enhanced TUI autocomplete for /unipi:* commands — colored, sorted, and grouped by package",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/constants.ts CHANGED
@@ -104,6 +104,7 @@ export const COMMAND_REGISTRY: Record<string, string> = {
104
104
  "unipi:badge-gen": "utility",
105
105
  "unipi:badge-toggle": "utility",
106
106
  "unipi:badge-settings": "utility",
107
+ "unipi:util-settings": "utility",
107
108
 
108
109
  // ask-user (1 command)
109
110
  "unipi:ask-user-settings": "ask-user",
@@ -193,6 +194,7 @@ export const COMMAND_DESCRIPTIONS: Record<string, string> = {
193
194
  "unipi:badge-gen": "Generate session name via background agent",
194
195
  "unipi:badge-toggle": "Configure badge settings (autoGen, badgeEnabled, agentTool)",
195
196
  "unipi:badge-settings": "Configure badge settings via TUI overlay",
197
+ "unipi:util-settings": "Unified settings — badge + diff rendering config",
196
198
  "unipi:kanboard": "Start the kanboard visualization server",
197
199
  "unipi:kanboard-doctor": "Diagnose and fix kanboard parser issues",
198
200