mirror of
https://github.com/glittercowboy/get-shit-done
synced 2026-04-26 01:35:29 +02:00
Consolidates repeated path.join(cwd, '.planning', ...) patterns into calls to the shared planningPaths() helper from core.cjs. Modules updated: - state.cjs: 16 → planningPaths() (2 remain for non-standard paths) - commands.cjs: 8 → planningPaths() (4 remain for todos dir) - milestone.cjs: 5 → planningPaths() (3 remain for archive/milestones) - roadmap.cjs: 4 → planningPaths() Benefits: - Single source of truth for .planning/ directory structure - Easier to change planning dir location in the future - Consistent path construction across the codebase - No behavioral changes — pure refactor 797/797 tests pass.
82 lines
2.3 KiB
JavaScript
82 lines
2.3 KiB
JavaScript
/**
|
|
* Cursor conversion regression tests.
|
|
*
|
|
* Ensures Cursor frontmatter names are emitted as plain identifiers
|
|
* (without surrounding quotes), so Cursor does not treat quotes as
|
|
* literal parts of skill/subagent names.
|
|
*/
|
|
|
|
process.env.GSD_TEST_MODE = '1';
|
|
|
|
const { describe, test } = require('node:test');
|
|
const assert = require('node:assert');
|
|
|
|
const {
|
|
convertClaudeCommandToCursorSkill,
|
|
convertClaudeAgentToCursorAgent,
|
|
} = require('../bin/install.js');
|
|
|
|
describe('convertClaudeCommandToCursorSkill', () => {
|
|
test('writes unquoted Cursor skill name in frontmatter', () => {
|
|
const input = `---
|
|
name: quick
|
|
description: Execute a quick task
|
|
---
|
|
|
|
<objective>
|
|
Test body
|
|
</objective>
|
|
`;
|
|
|
|
const result = convertClaudeCommandToCursorSkill(input, 'gsd-quick');
|
|
const nameMatch = result.match(/^name:\s*(.+)$/m);
|
|
|
|
assert.ok(nameMatch, 'frontmatter contains name field');
|
|
assert.strictEqual(nameMatch[1], 'gsd-quick', 'skill name is plain scalar');
|
|
assert.ok(!result.includes('name: "gsd-quick"'), 'quoted skill name is not emitted');
|
|
});
|
|
|
|
test('preserves slash for slash commands in markdown body', () => {
|
|
const input = `---
|
|
name: gsd:plan-phase
|
|
description: Plan a phase
|
|
---
|
|
|
|
Next:
|
|
/gsd:execute-phase 17
|
|
/gsd-help
|
|
gsd:progress
|
|
`;
|
|
|
|
const result = convertClaudeCommandToCursorSkill(input, 'gsd-plan-phase');
|
|
|
|
assert.ok(result.includes('/gsd-execute-phase 17'), 'slash command remains slash-prefixed');
|
|
assert.ok(result.includes('/gsd-help'), 'existing slash command is preserved');
|
|
assert.ok(result.includes('gsd-progress'), 'non-slash gsd: references still normalize');
|
|
assert.ok(!result.includes('/gsd:execute-phase'), 'legacy colon command form is removed');
|
|
});
|
|
});
|
|
|
|
describe('convertClaudeAgentToCursorAgent', () => {
|
|
test('writes unquoted Cursor agent name in frontmatter', () => {
|
|
const input = `---
|
|
name: gsd-planner
|
|
description: Planner agent
|
|
tools: Read, Write
|
|
color: green
|
|
---
|
|
|
|
<role>
|
|
Planner body
|
|
</role>
|
|
`;
|
|
|
|
const result = convertClaudeAgentToCursorAgent(input);
|
|
const nameMatch = result.match(/^name:\s*(.+)$/m);
|
|
|
|
assert.ok(nameMatch, 'frontmatter contains name field');
|
|
assert.strictEqual(nameMatch[1], 'gsd-planner', 'agent name is plain scalar');
|
|
assert.ok(!result.includes('name: "gsd-planner"'), 'quoted agent name is not emitted');
|
|
});
|
|
});
|