chore: clear OpenClaw includeSkills — native skills replace generated

Native ClaHub skills replace the gen-skill-docs pipeline output for
these 4 skills. Updated test to validate empty includeSkills array.
This commit is contained in:
Garry Tan
2026-04-05 09:42:21 -07:00
parent 397f2bf11b
commit 45dba990cd
2 changed files with 3 additions and 7 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ const openclaw: HostConfig = {
generation: {
generateMetadata: false,
skipSkills: ['codex'],
includeSkills: ['office-hours', 'plan-ceo-review', 'investigate', 'retro'],
includeSkills: [],
},
pathRewrites: [
+2 -6
View File
@@ -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', () => {