Skip to content

Commit 8e1689e

Browse files
fix: remove storage command import and update test expectations
1 parent 3dd545b commit 8e1689e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/cli/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ import {
3636
createDecisionCommand,
3737
createMemoryCommand,
3838
} from './commands/decision.js';
39-
import { createStorageCommand } from './commands/storage.js';
4039
import { createSkillsCommand } from './commands/skills.js';
4140
import { createTestCommand } from './commands/test.js';
4241
import clearCommand from './commands/clear.js';
@@ -659,7 +658,6 @@ program.addCommand(createConfigCommand());
659658
program.addCommand(createHandoffCommand());
660659
program.addCommand(createDecisionCommand());
661660
program.addCommand(createMemoryCommand());
662-
program.addCommand(createStorageCommand());
663661
program.addCommand(createSkillsCommand());
664662
program.addCommand(createTestCommand());
665663
program.addCommand(clearCommand);

src/skills/__tests__/claude-skills.test.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ vi.mock('../../core/monitoring/logger.js', () => ({
2626
warn: vi.fn(),
2727
error: vi.fn(),
2828
},
29+
Logger: class {
30+
info = vi.fn();
31+
debug = vi.fn();
32+
warn = vi.fn();
33+
error = vi.fn();
34+
},
2935
}));
3036

3137
describe('Claude Skills', () => {
@@ -504,6 +510,7 @@ describe('Claude Skills', () => {
504510
'dig',
505511
'dashboard',
506512
'api',
513+
'repo',
507514
]);
508515
});
509516

0 commit comments

Comments
 (0)