feat(do): add freeform text router command (#1067)

* feat(do): add freeform text router command

* test(do): update expected skill count from 36 to 37
This commit is contained in:
Rezolv
2026-03-15 21:30:46 -04:00
committed by GitHub
parent 6de816f68c
commit 4aea69e02c
4 changed files with 150 additions and 2 deletions

View File

@@ -626,7 +626,7 @@ describe('copyCommandsAsCopilotSkills', () => {
// Count gsd-* directories — should be 31
const dirs = fs.readdirSync(tempDir, { withFileTypes: true })
.filter(e => e.isDirectory() && e.name.startsWith('gsd-'));
assert.strictEqual(dirs.length, 36, `expected 36 skill folders, got ${dirs.length}`);
assert.strictEqual(dirs.length, 37, `expected 37 skill folders, got ${dirs.length}`);
} finally {
fs.rmSync(tempDir, { recursive: true });
}
@@ -1120,7 +1120,7 @@ const { execFileSync } = require('child_process');
const crypto = require('crypto');
const INSTALL_PATH = path.join(__dirname, '..', 'bin', 'install.js');
const EXPECTED_SKILLS = 36;
const EXPECTED_SKILLS = 37;
const EXPECTED_AGENTS = 15;
function runCopilotInstall(cwd) {