@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.
- package/package.json +1 -1
- package/src/constants.ts +10 -11
package/package.json
CHANGED
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 (
|
|
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
|
|
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 (
|
|
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
|
|
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:
|
|
197
|
-
"unipi:
|
|
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
|
};
|