@pi-unipi/command-enchantment 0.1.3 → 0.1.4

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 +8 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/command-enchantment",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
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
@@ -93,16 +93,17 @@ export const COMMAND_REGISTRY: Record<string, string> = {
93
93
  "unipi:mcp-settings": "mcp",
94
94
  "unipi:mcp-reload": "mcp",
95
95
 
96
- // utility (6 commands)
96
+ // utility (10 commands)
97
97
  "unipi:continue": "utility",
98
98
  "unipi:reload": "utility",
99
99
  "unipi:status": "utility",
100
100
  "unipi:cleanup": "utility",
101
101
  "unipi:env": "utility",
102
102
  "unipi:doctor": "utility",
103
- "unipi:name-badge": "utility",
103
+ "unipi:badge-name": "utility",
104
104
  "unipi:badge-gen": "utility",
105
105
  "unipi:badge-toggle": "utility",
106
+ "unipi:badge-settings": "utility",
106
107
 
107
108
  // ask-user (1 command)
108
109
  "unipi:ask-user-settings": "ask-user",
@@ -136,11 +137,9 @@ export const COMMAND_REGISTRY: Record<string, string> = {
136
137
  "unipi:notify-set-tg": "notify",
137
138
  "unipi:notify-test": "notify",
138
139
 
139
- // kanboard (4 commands)
140
+ // kanboard (3 commands)
140
141
  "unipi:kanboard": "kanboard",
141
142
  "unipi:kanboard-doctor": "kanboard",
142
- "unipi:kanboard-settings": "kanboard",
143
- "unipi:name-gen": "kanboard",
144
143
  };
145
144
 
146
145
  // ─── Description Map ─────────────────────────────────────────────────
@@ -190,11 +189,12 @@ export const COMMAND_DESCRIPTIONS: Record<string, string> = {
190
189
  "unipi:cleanup": "Clean up old sessions and cache",
191
190
  "unipi:env": "Show environment info",
192
191
  "unipi:doctor": "Run diagnostics",
193
- "unipi:name-badge": "Toggle session name badge overlay",
192
+ "unipi:badge-name": "Toggle session name badge overlay",
194
193
  "unipi:badge-gen": "Generate session name via background agent",
195
194
  "unipi:badge-toggle": "Configure badge settings (autoGen, badgeEnabled, agentTool)",
196
- "unipi:name-gen": "Generate session name badge from kanboard context",
197
- "unipi:kanboard-settings": "Configure kanboard module settings",
195
+ "unipi:badge-settings": "Configure badge settings via TUI overlay",
196
+ "unipi:kanboard": "Start the kanboard visualization server",
197
+ "unipi:kanboard-doctor": "Diagnose and fix kanboard parser issues",
198
198
 
199
199
  "unipi:ask-user-settings": "Configure ask-user settings",
200
200
 
@@ -219,9 +219,6 @@ export const COMMAND_DESCRIPTIONS: Record<string, string> = {
219
219
  "unipi:notify-set-tg": "Set up Telegram bot notifications",
220
220
  "unipi:notify-test": "Test all enabled notification platforms",
221
221
 
222
- "unipi:kanboard": "Start the kanboard visualization server",
223
- "unipi:kanboard-doctor": "Diagnose and fix kanboard parser issues",
224
-
225
222
  "unipi:milestone-onboard": "Create MILESTONES.md from existing workflow docs",
226
223
  "unipi:milestone-update": "Sync MILESTONES.md with completed work",
227
224
  };