mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-02 11:45:20 +02:00
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:
+1
-1
@@ -23,7 +23,7 @@ const openclaw: HostConfig = {
|
||||
generation: {
|
||||
generateMetadata: false,
|
||||
skipSkills: ['codex'],
|
||||
includeSkills: ['office-hours', 'plan-ceo-review', 'investigate', 'retro'],
|
||||
includeSkills: [],
|
||||
},
|
||||
|
||||
pathRewrites: [
|
||||
|
||||
@@ -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', () => {
|
||||
|
||||
Reference in New Issue
Block a user