@pi-unipi/command-enchantment 0.1.3 → 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 +10 -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.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
@@ -93,16 +93,18 @@ 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",
107
+ "unipi:util-settings": "utility",
106
108
 
107
109
  // ask-user (1 command)
108
110
  "unipi:ask-user-settings": "ask-user",
@@ -136,11 +138,9 @@ export const COMMAND_REGISTRY: Record<string, string> = {
136
138
  "unipi:notify-set-tg": "notify",
137
139
  "unipi:notify-test": "notify",
138
140
 
139
- // kanboard (4 commands)
141
+ // kanboard (3 commands)
140
142
  "unipi:kanboard": "kanboard",
141
143
  "unipi:kanboard-doctor": "kanboard",
142
- "unipi:kanboard-settings": "kanboard",
143
- "unipi:name-gen": "kanboard",
144
144
  };
145
145
 
146
146
  // ─── Description Map ─────────────────────────────────────────────────
@@ -190,11 +190,13 @@ export const COMMAND_DESCRIPTIONS: Record<string, string> = {
190
190
  "unipi:cleanup": "Clean up old sessions and cache",
191
191
  "unipi:env": "Show environment info",
192
192
  "unipi:doctor": "Run diagnostics",
193
- "unipi:name-badge": "Toggle session name badge overlay",
193
+ "unipi:badge-name": "Toggle session name badge overlay",
194
194
  "unipi:badge-gen": "Generate session name via background agent",
195
195
  "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",
196
+ "unipi:badge-settings": "Configure badge settings via TUI overlay",
197
+ "unipi:util-settings": "Unified settings badge + diff rendering config",
198
+ "unipi:kanboard": "Start the kanboard visualization server",
199
+ "unipi:kanboard-doctor": "Diagnose and fix kanboard parser issues",
198
200
 
199
201
  "unipi:ask-user-settings": "Configure ask-user settings",
200
202
 
@@ -219,9 +221,6 @@ export const COMMAND_DESCRIPTIONS: Record<string, string> = {
219
221
  "unipi:notify-set-tg": "Set up Telegram bot notifications",
220
222
  "unipi:notify-test": "Test all enabled notification platforms",
221
223
 
222
- "unipi:kanboard": "Start the kanboard visualization server",
223
- "unipi:kanboard-doctor": "Diagnose and fix kanboard parser issues",
224
-
225
224
  "unipi:milestone-onboard": "Create MILESTONES.md from existing workflow docs",
226
225
  "unipi:milestone-update": "Sync MILESTONES.md with completed work",
227
226
  };