From 45dba990cd961925637273e967ce51897d53113e Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Sun, 5 Apr 2026 09:42:21 -0700 Subject: [PATCH] =?UTF-8?q?chore:=20clear=20OpenClaw=20includeSkills=20?= =?UTF-8?q?=E2=80=94=20native=20skills=20replace=20generated?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Native ClaHub skills replace the gen-skill-docs pipeline output for these 4 skills. Updated test to validate empty includeSkills array. --- hosts/openclaw.ts | 2 +- test/host-config.test.ts | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) 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', () => {