diff --git a/hosts/openclaw.ts b/hosts/openclaw.ts index 86c99307..38428f20 100644 --- a/hosts/openclaw.ts +++ b/hosts/openclaw.ts @@ -23,7 +23,7 @@ const openclaw: HostConfig = { generation: { generateMetadata: false, skipSkills: ['codex'], - includeSkills: ['office-hours', 'plan-ceo-review', 'investigate', 'retro'], + includeSkills: [], }, pathRewrites: [ diff --git a/test/host-config.test.ts b/test/host-config.test.ts index 7c667710..296b96f5 100644 --- a/test/host-config.test.ts +++ b/test/host-config.test.ts @@ -488,13 +488,9 @@ describe('host config correctness', () => { expect(openclaw.staticFiles).toBeUndefined(); }); - test('openclaw has includeSkills for native methodology skills', () => { + test('openclaw includeSkills is empty (native skills replaced generated ones)', () => { expect(openclaw.generation.includeSkills).toBeDefined(); - expect(openclaw.generation.includeSkills).toContain('office-hours'); - expect(openclaw.generation.includeSkills).toContain('plan-ceo-review'); - expect(openclaw.generation.includeSkills).toContain('investigate'); - expect(openclaw.generation.includeSkills).toContain('retro'); - expect(openclaw.generation.includeSkills!.length).toBe(4); + expect(openclaw.generation.includeSkills!.length).toBe(0); }); test('every host has coAuthorTrailer or undefined', () => {