claude-code-kanban 3.2.0 → 3.2.1
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/install.js +2 -1
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -159,7 +159,7 @@ async function runInstall() {
|
|
|
159
159
|
} else if (!settings.statusLine) {
|
|
160
160
|
console.log(`\n StatusLine: ${dim('not configured')}`);
|
|
161
161
|
if (await prompt(` Set up context tracking statusline? [Y/n] `)) {
|
|
162
|
-
settings.statusLine = { command: CTX_COMMAND };
|
|
162
|
+
settings.statusLine = { type: 'command', command: CTX_COMMAND };
|
|
163
163
|
fs.writeFileSync(SETTINGS_PATH, JSON.stringify(settings, null, 2) + '\n');
|
|
164
164
|
console.log(` ${green('✓')} StatusLine configured`);
|
|
165
165
|
} else {
|
|
@@ -169,6 +169,7 @@ async function runInstall() {
|
|
|
169
169
|
const existing = settings.statusLine.command;
|
|
170
170
|
console.log(`\n StatusLine: ${dim(`current: ${existing}`)}`);
|
|
171
171
|
if (await prompt(` Prepend context spy to existing statusline? [Y/n] `)) {
|
|
172
|
+
settings.statusLine.type = 'command';
|
|
172
173
|
settings.statusLine.command = `${CTX_COMMAND} | ${existing}`;
|
|
173
174
|
fs.writeFileSync(SETTINGS_PATH, JSON.stringify(settings, null, 2) + '\n');
|
|
174
175
|
console.log(` ${green('✓')} StatusLine updated`);
|