lightspec 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/dist/core/configurators/skills/base.d.ts +27 -0
  2. package/dist/core/configurators/{slash → skills}/base.js +19 -81
  3. package/dist/core/configurators/skills/registry.d.ts +9 -0
  4. package/dist/core/configurators/skills/registry.js +24 -0
  5. package/dist/core/init.d.ts +1 -1
  6. package/dist/core/init.js +16 -16
  7. package/dist/core/templates/agent-skill-templates.d.ts +6 -0
  8. package/dist/core/templates/{slash-command-templates.js → agent-skill-templates.js} +7 -7
  9. package/dist/core/templates/agents-root-stub.d.ts +1 -1
  10. package/dist/core/templates/agents-root-stub.js +2 -9
  11. package/dist/core/templates/agents-template.d.ts +1 -1
  12. package/dist/core/templates/agents-template.js +1 -1
  13. package/dist/core/templates/archive-template.js +1 -1
  14. package/dist/core/templates/index.d.ts +4 -4
  15. package/dist/core/templates/index.js +5 -5
  16. package/dist/core/update.js +11 -11
  17. package/package.json +2 -1
  18. package/dist/core/configurators/slash/amazon-q.d.ts +0 -9
  19. package/dist/core/configurators/slash/amazon-q.js +0 -50
  20. package/dist/core/configurators/slash/antigravity.d.ts +0 -9
  21. package/dist/core/configurators/slash/antigravity.js +0 -25
  22. package/dist/core/configurators/slash/auggie.d.ts +0 -9
  23. package/dist/core/configurators/slash/auggie.js +0 -38
  24. package/dist/core/configurators/slash/base.d.ts +0 -30
  25. package/dist/core/configurators/slash/claude.d.ts +0 -9
  26. package/dist/core/configurators/slash/claude.js +0 -44
  27. package/dist/core/configurators/slash/cline.d.ts +0 -9
  28. package/dist/core/configurators/slash/cline.js +0 -25
  29. package/dist/core/configurators/slash/codebuddy.d.ts +0 -9
  30. package/dist/core/configurators/slash/codebuddy.js +0 -41
  31. package/dist/core/configurators/slash/codex.d.ts +0 -6
  32. package/dist/core/configurators/slash/codex.js +0 -6
  33. package/dist/core/configurators/slash/continue.d.ts +0 -9
  34. package/dist/core/configurators/slash/continue.js +0 -53
  35. package/dist/core/configurators/slash/costrict.d.ts +0 -9
  36. package/dist/core/configurators/slash/costrict.js +0 -35
  37. package/dist/core/configurators/slash/crush.d.ts +0 -9
  38. package/dist/core/configurators/slash/crush.js +0 -44
  39. package/dist/core/configurators/slash/cursor.d.ts +0 -9
  40. package/dist/core/configurators/slash/cursor.js +0 -44
  41. package/dist/core/configurators/slash/factory.d.ts +0 -10
  42. package/dist/core/configurators/slash/factory.js +0 -42
  43. package/dist/core/configurators/slash/gemini.d.ts +0 -9
  44. package/dist/core/configurators/slash/gemini.js +0 -24
  45. package/dist/core/configurators/slash/github-copilot.d.ts +0 -9
  46. package/dist/core/configurators/slash/github-copilot.js +0 -38
  47. package/dist/core/configurators/slash/iflow.d.ts +0 -9
  48. package/dist/core/configurators/slash/iflow.js +0 -44
  49. package/dist/core/configurators/slash/kilocode.d.ts +0 -9
  50. package/dist/core/configurators/slash/kilocode.js +0 -18
  51. package/dist/core/configurators/slash/mistral-vibe.d.ts +0 -6
  52. package/dist/core/configurators/slash/mistral-vibe.js +0 -6
  53. package/dist/core/configurators/slash/opencode.d.ts +0 -12
  54. package/dist/core/configurators/slash/opencode.js +0 -76
  55. package/dist/core/configurators/slash/qoder.d.ts +0 -35
  56. package/dist/core/configurators/slash/qoder.js +0 -83
  57. package/dist/core/configurators/slash/qwen.d.ts +0 -32
  58. package/dist/core/configurators/slash/qwen.js +0 -51
  59. package/dist/core/configurators/slash/registry.d.ts +0 -9
  60. package/dist/core/configurators/slash/registry.js +0 -86
  61. package/dist/core/configurators/slash/roocode.d.ts +0 -9
  62. package/dist/core/configurators/slash/roocode.js +0 -25
  63. package/dist/core/configurators/slash/toml-base.d.ts +0 -4
  64. package/dist/core/configurators/slash/toml-base.js +0 -4
  65. package/dist/core/configurators/slash/windsurf.d.ts +0 -9
  66. package/dist/core/configurators/slash/windsurf.js +0 -25
  67. package/dist/core/templates/slash-command-templates.d.ts +0 -6
@@ -0,0 +1,27 @@
1
+ import { AgentSkillId } from '../../templates/index.js';
2
+ export interface AgentSkillTarget {
3
+ id: AgentSkillId;
4
+ path: string;
5
+ kind: 'skill';
6
+ }
7
+ export type SkillInstallLocation = 'project' | 'home';
8
+ export declare const AGENT_SKILL_TOOL_IDS: readonly string[];
9
+ export declare class AgentSkillConfigurator {
10
+ readonly toolId: string;
11
+ readonly isAvailable: boolean;
12
+ private installLocation;
13
+ constructor(toolId: string, isAvailable?: boolean);
14
+ setInstallLocation(location: SkillInstallLocation): void;
15
+ getTargets(): AgentSkillTarget[];
16
+ generateAll(projectPath: string, _lightspecDir: string): Promise<string[]>;
17
+ updateExisting(projectPath: string, _lightspecDir: string): Promise<string[]>;
18
+ protected getBody(id: AgentSkillId): string;
19
+ resolveAbsolutePath(projectPath: string, id: AgentSkillId): string;
20
+ private getRelativeSkillPath;
21
+ private getToolRoot;
22
+ private getHomeRootPath;
23
+ private getSkillName;
24
+ private buildSkillFile;
25
+ protected updateBody(filePath: string, body: string): Promise<void>;
26
+ }
27
+ //# sourceMappingURL=base.d.ts.map
@@ -1,10 +1,9 @@
1
1
  import os from 'os';
2
2
  import path from 'path';
3
- import { promises as fs } from 'fs';
4
3
  import { FileSystemUtils } from '../../../utils/file-system.js';
5
4
  import { TemplateManager } from '../../templates/index.js';
6
5
  import { LIGHTSPEC_MARKERS } from '../../config.js';
7
- const ALL_COMMANDS = ['proposal', 'apply', 'archive', 'context-check'];
6
+ const ALL_SKILL_IDS = ['proposal', 'apply', 'archive', 'context-check'];
8
7
  const TOOL_SKILL_ROOTS = {
9
8
  'amazon-q': '.amazonq',
10
9
  antigravity: '.antigravity',
@@ -29,37 +28,26 @@ const TOOL_SKILL_ROOTS = {
29
28
  roocode: '.roocode',
30
29
  windsurf: '.windsurf',
31
30
  };
32
- const TOOL_LEGACY_DIRS = {
33
- 'amazon-q': ['.amazonq/prompts', '.aws/amazonq/commands'],
34
- antigravity: ['.antigravity/commands', '.agent/workflows'],
35
- auggie: ['.augment/commands', '.auggie/commands'],
36
- claude: ['.claude/commands'],
37
- cline: ['.cline/commands', '.clinerules/workflows'],
38
- codex: ['.codex/prompts'],
39
- codebuddy: ['.codebuddy/commands'],
40
- continue: ['.continue/prompts', '.continue/commands'],
41
- costrict: ['.cospec/lightspec/commands'],
42
- crush: ['.crush/commands'],
43
- cursor: ['.cursor/commands'],
44
- factory: ['.factory/commands'],
45
- gemini: ['.gemini/commands'],
46
- 'github-copilot': ['.github/prompts', '.github/copilot/prompts'],
47
- iflow: ['.iflow/commands'],
48
- kilocode: ['.kilocode/commands', '.kilocode/workflows'],
49
- 'mistral-vibe': ['.vibe/commands', '.vibe/workflows', '.vibe/prompts'],
50
- opencode: ['.opencode/command', '.opencode/commands'],
51
- qoder: ['.qoder/commands', '.qoder/prompts'],
52
- qwen: ['.qwen/commands', '.qwen/prompts'],
53
- roocode: ['.roo/commands', '.roocode/commands'],
54
- windsurf: ['.windsurf/workflows', '.windsurf/commands'],
31
+ export const AGENT_SKILL_TOOL_IDS = Object.freeze(Object.keys(TOOL_SKILL_ROOTS));
32
+ const TOOL_BODY_SUFFIX = {
33
+ factory: '\n\n$ARGUMENTS',
55
34
  };
56
- export class SlashCommandConfigurator {
35
+ export class AgentSkillConfigurator {
36
+ toolId;
37
+ isAvailable;
57
38
  installLocation = 'project';
39
+ constructor(toolId, isAvailable = true) {
40
+ this.toolId = toolId;
41
+ this.isAvailable = isAvailable;
42
+ if (!TOOL_SKILL_ROOTS[this.toolId]) {
43
+ throw new Error(`No skill root directory configured for tool '${this.toolId}'`);
44
+ }
45
+ }
58
46
  setInstallLocation(location) {
59
47
  this.installLocation = location;
60
48
  }
61
49
  getTargets() {
62
- return ALL_COMMANDS.map((id) => ({
50
+ return ALL_SKILL_IDS.map((id) => ({
63
51
  id,
64
52
  path: this.getRelativeSkillPath(id),
65
53
  kind: 'skill',
@@ -74,13 +62,12 @@ export class SlashCommandConfigurator {
74
62
  await this.updateBody(filePath, body);
75
63
  }
76
64
  else {
77
- const frontmatter = TemplateManager.getSlashCommandFrontmatter(target.id).trim();
65
+ const frontmatter = TemplateManager.getAgentSkillFrontmatter(target.id).trim();
78
66
  const content = this.buildSkillFile(frontmatter, body);
79
67
  await FileSystemUtils.writeFile(filePath, content);
80
68
  }
81
69
  createdOrUpdated.push(target.path);
82
70
  }
83
- await this.cleanupLegacyArtifacts(projectPath);
84
71
  return createdOrUpdated;
85
72
  }
86
73
  async updateExisting(projectPath, _lightspecDir) {
@@ -93,11 +80,12 @@ export class SlashCommandConfigurator {
93
80
  updated.push(target.path);
94
81
  }
95
82
  }
96
- await this.cleanupLegacyArtifacts(projectPath);
97
83
  return updated;
98
84
  }
99
85
  getBody(id) {
100
- return TemplateManager.getSlashCommandBody(id).trim();
86
+ const baseBody = TemplateManager.getAgentSkillBody(id).trim();
87
+ const suffix = TOOL_BODY_SUFFIX[this.toolId] ?? '';
88
+ return `${baseBody}${suffix}`;
101
89
  }
102
90
  resolveAbsolutePath(projectPath, id) {
103
91
  const relativePath = this.getRelativeSkillPath(id);
@@ -159,55 +147,5 @@ export class SlashCommandConfigurator {
159
147
  const updatedContent = `${before}\n${body}\n${after}`;
160
148
  await FileSystemUtils.writeFile(filePath, updatedContent);
161
149
  }
162
- async cleanupLegacyArtifacts(projectPath) {
163
- const legacyDirs = TOOL_LEGACY_DIRS[this.toolId] ?? [];
164
- for (const legacyDir of legacyDirs) {
165
- const absoluteDir = this.installLocation === 'project'
166
- ? FileSystemUtils.joinPath(projectPath, legacyDir)
167
- : FileSystemUtils.joinPath(this.getHomeRootPath(), this.relativeToToolRoot(legacyDir));
168
- await this.removeLegacyLightSpecFiles(absoluteDir);
169
- }
170
- }
171
- relativeToToolRoot(relativePath) {
172
- const rootPrefix = this.getToolRoot();
173
- const normalized = FileSystemUtils.toPosixPath(relativePath);
174
- if (normalized.startsWith(`${rootPrefix}/`)) {
175
- return normalized.slice(rootPrefix.length + 1);
176
- }
177
- if (normalized === rootPrefix) {
178
- return '';
179
- }
180
- return normalized.startsWith('./') ? normalized.slice(2) : normalized;
181
- }
182
- async removeLegacyLightSpecFiles(dirPath) {
183
- if (!(await FileSystemUtils.directoryExists(dirPath))) {
184
- return;
185
- }
186
- await this.walkAndRemove(dirPath);
187
- }
188
- async walkAndRemove(currentPath) {
189
- const entries = await fs.readdir(currentPath, { withFileTypes: true });
190
- for (const entry of entries) {
191
- const entryPath = path.join(currentPath, entry.name);
192
- if (entry.isDirectory()) {
193
- await this.walkAndRemove(entryPath);
194
- continue;
195
- }
196
- if (this.isLegacyLightSpecFile(entryPath)) {
197
- await fs.unlink(entryPath);
198
- }
199
- }
200
- }
201
- isLegacyLightSpecFile(filePath) {
202
- const normalized = FileSystemUtils.toPosixPath(filePath).toLowerCase();
203
- return (normalized.includes('/lightspec-proposal') ||
204
- normalized.includes('/lightspec-apply') ||
205
- normalized.includes('/lightspec-archive') ||
206
- normalized.includes('/lightspec-context-check') ||
207
- normalized.includes('/lightspec/proposal') ||
208
- normalized.includes('/lightspec/apply') ||
209
- normalized.includes('/lightspec/archive') ||
210
- normalized.includes('/lightspec/context-check'));
211
- }
212
150
  }
213
151
  //# sourceMappingURL=base.js.map
@@ -0,0 +1,9 @@
1
+ import { AgentSkillConfigurator, SkillInstallLocation } from './base.js';
2
+ export declare class AgentSkillRegistry {
3
+ private static configurators;
4
+ static register(configurator: AgentSkillConfigurator): void;
5
+ static get(toolId: string): AgentSkillConfigurator | undefined;
6
+ static getAll(): AgentSkillConfigurator[];
7
+ static setInstallLocation(location: SkillInstallLocation): void;
8
+ }
9
+ //# sourceMappingURL=registry.d.ts.map
@@ -0,0 +1,24 @@
1
+ import { AGENT_SKILL_TOOL_IDS, AgentSkillConfigurator, } from './base.js';
2
+ export class AgentSkillRegistry {
3
+ static configurators = new Map();
4
+ static {
5
+ for (const toolId of AGENT_SKILL_TOOL_IDS) {
6
+ this.configurators.set(toolId, new AgentSkillConfigurator(toolId));
7
+ }
8
+ }
9
+ static register(configurator) {
10
+ this.configurators.set(configurator.toolId, configurator);
11
+ }
12
+ static get(toolId) {
13
+ return this.configurators.get(toolId);
14
+ }
15
+ static getAll() {
16
+ return Array.from(this.configurators.values());
17
+ }
18
+ static setInstallLocation(location) {
19
+ for (const configurator of this.configurators.values()) {
20
+ configurator.setInstallLocation(location);
21
+ }
22
+ }
23
+ }
24
+ //# sourceMappingURL=registry.js.map
@@ -1,4 +1,4 @@
1
- import { SkillInstallLocation } from './configurators/slash/base.js';
1
+ import { SkillInstallLocation } from './configurators/skills/base.js';
2
2
  type ToolLabel = {
3
3
  primary: string;
4
4
  annotation?: string;
package/dist/core/init.js CHANGED
@@ -6,7 +6,7 @@ import ora from 'ora';
6
6
  import { FileSystemUtils } from '../utils/file-system.js';
7
7
  import { TemplateManager } from './templates/index.js';
8
8
  import { ToolRegistry } from './configurators/registry.js';
9
- import { SlashCommandRegistry } from './configurators/slash/registry.js';
9
+ import { AgentSkillRegistry } from './configurators/skills/registry.js';
10
10
  import { AI_TOOLS, LIGHTSPEC_DIR_NAME, LIGHTSPEC_MARKERS, } from './config.js';
11
11
  import { PALETTE } from './styles/palette.js';
12
12
  const PROGRESS_SPINNER = {
@@ -282,7 +282,7 @@ export class InitCommand {
282
282
  this.renderBanner(extendMode);
283
283
  // Get configuration (after validation to avoid prompts if validation fails)
284
284
  const config = await this.getConfiguration(existingToolStates, extendMode);
285
- SlashCommandRegistry.setInstallLocation(config.skillLocation);
285
+ AgentSkillRegistry.setInstallLocation(config.skillLocation);
286
286
  const availableTools = AI_TOOLS.filter((tool) => tool.available);
287
287
  const selectedIds = new Set(config.aiTools);
288
288
  const selectedTools = availableTools.filter((tool) => selectedIds.has(tool.value));
@@ -474,7 +474,7 @@ export class InitCommand {
474
474
  }
475
475
  };
476
476
  let hasConfigFile = false;
477
- let hasSlashCommands = false;
477
+ let hasSkills = false;
478
478
  // Check if the tool has a config file with LightSpec markers
479
479
  const configFile = ToolRegistry.get(toolId)?.configFileName;
480
480
  if (configFile) {
@@ -482,24 +482,24 @@ export class InitCommand {
482
482
  hasConfigFile = (await FileSystemUtils.fileExists(configPath)) && (await fileHasMarkers(configPath));
483
483
  }
484
484
  // Check if any skill file exists with LightSpec markers
485
- const slashConfigurator = SlashCommandRegistry.get(toolId);
486
- if (slashConfigurator) {
487
- for (const target of slashConfigurator.getTargets()) {
488
- const absolute = slashConfigurator.resolveAbsolutePath(projectPath, target.id);
485
+ const skillConfigurator = AgentSkillRegistry.get(toolId);
486
+ if (skillConfigurator) {
487
+ for (const target of skillConfigurator.getTargets()) {
488
+ const absolute = skillConfigurator.resolveAbsolutePath(projectPath, target.id);
489
489
  if ((await FileSystemUtils.fileExists(absolute)) && (await fileHasMarkers(absolute))) {
490
- hasSlashCommands = true;
490
+ hasSkills = true;
491
491
  break; // At least one file with markers is sufficient
492
492
  }
493
493
  }
494
494
  }
495
495
  // Tool is only configured if BOTH exist with markers
496
- // OR if the tool has no config file requirement (slash commands only)
497
- // OR if the tool has no slash commands requirement (config file only)
496
+ // OR if the tool has no config file requirement (skills only)
497
+ // OR if the tool has no skill requirement (config file only)
498
498
  const hasConfigFileRequirement = configFile !== undefined;
499
- const hasSkillRequirement = slashConfigurator !== undefined;
499
+ const hasSkillRequirement = skillConfigurator !== undefined;
500
500
  if (hasConfigFileRequirement && hasSkillRequirement) {
501
501
  // Both are required - both must be present with markers
502
- return hasConfigFile && hasSlashCommands;
502
+ return hasConfigFile && hasSkills;
503
503
  }
504
504
  else if (hasConfigFileRequirement) {
505
505
  // Only config file required
@@ -507,7 +507,7 @@ export class InitCommand {
507
507
  }
508
508
  else if (hasSkillRequirement) {
509
509
  // Only skills required
510
- return hasSlashCommands;
510
+ return hasSkills;
511
511
  }
512
512
  return false;
513
513
  }
@@ -552,9 +552,9 @@ export class InitCommand {
552
552
  if (configurator && configurator.isAvailable) {
553
553
  await configurator.configure(projectPath, lightspecDir);
554
554
  }
555
- const slashConfigurator = SlashCommandRegistry.get(toolId);
556
- if (slashConfigurator && slashConfigurator.isAvailable) {
557
- await slashConfigurator.generateAll(projectPath, lightspecDir);
555
+ const skillConfigurator = AgentSkillRegistry.get(toolId);
556
+ if (skillConfigurator && skillConfigurator.isAvailable) {
557
+ await skillConfigurator.generateAll(projectPath, lightspecDir);
558
558
  }
559
559
  }
560
560
  return rootStubStatus;
@@ -0,0 +1,6 @@
1
+ export type AgentSkillId = 'proposal' | 'apply' | 'archive' | 'context-check';
2
+ export declare const agentSkillBodies: Record<AgentSkillId, string>;
3
+ export declare const agentSkillFrontmatter: Record<AgentSkillId, string>;
4
+ export declare function getAgentSkillBody(id: AgentSkillId): string;
5
+ export declare function getAgentSkillFrontmatter(id: AgentSkillId): string;
6
+ //# sourceMappingURL=agent-skill-templates.d.ts.map
@@ -2,22 +2,22 @@ import { applyTemplate, applyFrontmatter } from './apply-template.js';
2
2
  import { archiveTemplate, archiveFrontmatter } from './archive-template.js';
3
3
  import { proposalTemplate, proposalFrontmatter } from './proposal-template.js';
4
4
  import { contextCheckTemplate, contextCheckFrontmatter, } from './context-check-template.js';
5
- export const slashCommandBodies = {
5
+ export const agentSkillBodies = {
6
6
  proposal: proposalTemplate,
7
7
  apply: applyTemplate,
8
8
  archive: archiveTemplate,
9
9
  'context-check': contextCheckTemplate,
10
10
  };
11
- export const slashCommandFrontmatter = {
11
+ export const agentSkillFrontmatter = {
12
12
  proposal: proposalFrontmatter,
13
13
  apply: applyFrontmatter,
14
14
  archive: archiveFrontmatter,
15
15
  'context-check': contextCheckFrontmatter,
16
16
  };
17
- export function getSlashCommandBody(id) {
18
- return slashCommandBodies[id];
17
+ export function getAgentSkillBody(id) {
18
+ return agentSkillBodies[id];
19
19
  }
20
- export function getSlashCommandFrontmatter(id) {
21
- return slashCommandFrontmatter[id];
20
+ export function getAgentSkillFrontmatter(id) {
21
+ return agentSkillFrontmatter[id];
22
22
  }
23
- //# sourceMappingURL=slash-command-templates.js.map
23
+ //# sourceMappingURL=agent-skill-templates.js.map
@@ -1,2 +1,2 @@
1
- export declare const agentsRootStubTemplate = "# LightSpec Instructions\n\nThese instructions are for AI assistants working in this project.\n\nAlways open `@/lightspec/AGENTS.md` when the request:\n- Mentions planning or proposals (words like proposal, spec, change, plan)\n- Introduces new capabilities, breaking changes, architecture shifts, or big performance/security work\n- Sounds ambiguous and you need the authoritative spec before coding\n\nUse `@/lightspec/AGENTS.md` to learn:\n- How to create and apply change proposals\n- Spec format and conventions\n- Project structure and guidelines\n\nKeep this managed block so 'lightspec update' can refresh the instructions.\n";
1
+ export declare const agentsRootStubTemplate = "# LightSpec Instructions\n\nThese instructions are for AI assistants working in this project.\n\n- For complex features (new capability, breaking change, architecture/performance/security work), suggest switching to `/plan` mode if it's not already the case, then run `lightspec-proposal` before coding.\n- If unsure which skill to run, list installed skills in your assistant's `skills/` folder.\n\nKeep this managed block so 'lightspec update' can refresh the instructions.\n";
2
2
  //# sourceMappingURL=agents-root-stub.d.ts.map
@@ -2,15 +2,8 @@ export const agentsRootStubTemplate = `# LightSpec Instructions
2
2
 
3
3
  These instructions are for AI assistants working in this project.
4
4
 
5
- Always open \`@/lightspec/AGENTS.md\` when the request:
6
- - Mentions planning or proposals (words like proposal, spec, change, plan)
7
- - Introduces new capabilities, breaking changes, architecture shifts, or big performance/security work
8
- - Sounds ambiguous and you need the authoritative spec before coding
9
-
10
- Use \`@/lightspec/AGENTS.md\` to learn:
11
- - How to create and apply change proposals
12
- - Spec format and conventions
13
- - Project structure and guidelines
5
+ - For complex features (new capability, breaking change, architecture/performance/security work), suggest switching to \`/plan\` mode if it's not already the case, then run \`lightspec-proposal\` before coding.
6
+ - If unsure which skill to run, list installed skills in your assistant's \`skills/\` folder.
14
7
 
15
8
  Keep this managed block so 'lightspec update' can refresh the instructions.
16
9
  `;
@@ -1,2 +1,2 @@
1
- export declare const agentsTemplate = "# LightSpec Instructions\n\nInstructions for AI coding assistants using LightSpec for spec-driven development.\n\n## TL;DR Quick Checklist\n\n- Search existing work: `lightspec spec list --long`, `lightspec list` (use `rg` only for full-text search)\n- Decide scope: new capability vs modify existing capability\n- Pick a unique `change-id`: kebab-case, verb-led (`add-`, `update-`, `remove-`, `refactor-`)\n- Scaffold: `proposal.md`, `tasks.md`, `design.md` (only if needed), and delta specs per affected capability\n- Write deltas: use `## ADDED|MODIFIED|REMOVED|RENAMED Requirements`; include at least one `#### Scenario:` per requirement\n- Validate: `lightspec validate [change-id] --strict --no-interactive` and fix issues\n- Request approval: Do not start implementation until proposal is approved\n\n## Three-Stage Workflow\n\n### Stage 1: Creating Changes\nCreate proposal when you need to:\n- Add features or functionality\n- Make breaking changes (API, schema)\n- Change architecture or patterns \n- Optimize performance (changes behavior)\n- Update security patterns\n\nTriggers (examples):\n- \"Help me create a change proposal\"\n- \"Help me plan a change\"\n- \"Help me create a proposal\"\n- \"I want to create a spec proposal\"\n- \"I want to create a spec\"\n\nLoose matching guidance:\n- Contains one of: `proposal`, `change`, `spec`\n- With one of: `create`, `plan`, `make`, `start`, `help`\n\nSkip proposal for:\n- Bug fixes (restore intended behavior)\n- Typos, formatting, comments\n- Dependency updates (non-breaking)\n- Configuration changes\n- Tests for existing behavior\n\n**Workflow**\n1. Review `lightspec list` and `lightspec list --specs` to understand current context.\n2. Choose a unique verb-led `change-id` and scaffold `proposal.md`, `tasks.md`, optional `design.md`, and spec deltas under `lightspec/changes/<id>/`.\n3. Draft spec deltas using `## ADDED|MODIFIED|REMOVED Requirements` with at least one `#### Scenario:` per requirement.\n4. Run `lightspec validate <id> --strict --no-interactive` and resolve any issues before sharing the proposal.\n\n### Stage 2: Implementing Changes\nTrack these steps as TODOs and complete them one by one.\n1. **Read proposal.md** - Understand what's being built\n2. **Read design.md** (if exists) - Review technical decisions\n3. **Read tasks.md** - Get implementation checklist\n4. **Implement tasks sequentially** - Complete in order\n5. **Confirm completion** - Ensure every item in `tasks.md` is finished before updating statuses\n6. **Update checklist** - After all work is done, set every task to `- [x]` so the list reflects reality\n7. **Approval gate** - Do not start implementation until the proposal is reviewed and approved\n\n### Stage 3: Archiving Changes\nAfter deployment, create separate PR to:\n- Move `changes/[name]/` \u2192 `changes/archive/YYYY-MM-DD-[name]/`\n- Update `specs/` if capabilities changed\n- Use `lightspec archive <change-id> --skip-specs --yes` for tooling-only changes (always pass the change ID explicitly)\n- Run `lightspec validate --strict --no-interactive` to confirm the archived change passes checks\n\n## Before Any Task\n\n**Context Checklist:**\n- [ ] Read relevant specs in `specs/[capability]/spec.md`\n- [ ] Check pending changes in `changes/` for conflicts\n- [ ] Run `lightspec list` to see active changes\n- [ ] Run `lightspec list --specs` to see existing capabilities\n\n**Before Creating Specs:**\n- Always check if capability already exists\n- Prefer modifying existing specs over creating duplicates\n- Use `lightspec show [spec]` to review current state\n- If request is ambiguous, ask 1\u20132 clarifying questions before scaffolding\n\n### Search Guidance\n- Enumerate specs: `lightspec spec list --long` (or `--json` for scripts)\n- Enumerate changes: `lightspec list` (or `lightspec change list --json` - deprecated but available)\n- Show details:\n - Spec: `lightspec show <spec-id> --type spec` (use `--json` for filters)\n - Change: `lightspec show <change-id> --json --deltas-only`\n- Full-text search (use ripgrep): `rg -n \"Requirement:|Scenario:\" lightspec/specs`\n\n## Quick Start\n\n### CLI Commands\n\n```bash\n# Essential commands\nlightspec list # List active changes\nlightspec list --specs # List specifications\nlightspec show [item] # Display change or spec\nlightspec validate [item] # Validate changes or specs\nlightspec archive <change-id> [--yes|-y] # Archive after deployment (add --yes for non-interactive runs)\n\n# Project management\nlightspec init [path] # Initialize LightSpec\nlightspec update [path] # Update instruction files\n\n# Interactive mode\nlightspec show # Prompts for selection\nlightspec validate # Bulk validation mode\n\n# Debugging\nlightspec show [change] --json --deltas-only\nlightspec validate [change] --strict --no-interactive\n```\n\n### Command Flags\n\n- `--json` - Machine-readable output\n- `--type change|spec` - Disambiguate items\n- `--strict` - Comprehensive validation\n- `--no-interactive` - Disable prompts\n- `--skip-specs` - Archive without spec updates\n- `--yes`/`-y` - Skip confirmation prompts (non-interactive archive)\n\n## Directory Structure\n\n```\nlightspec/\n\u251C\u2500\u2500 specs/ # Current truth - what IS built\n\u2502 \u2514\u2500\u2500 [capability]/ # Single focused capability\n\u2502 \u251C\u2500\u2500 spec.md # Requirements and scenarios\n\u2502 \u2514\u2500\u2500 design.md # Technical patterns\n\u251C\u2500\u2500 changes/ # Proposals - what SHOULD change\n\u2502 \u251C\u2500\u2500 [change-name]/\n\u2502 \u2502 \u251C\u2500\u2500 proposal.md # Why, what, impact\n\u2502 \u2502 \u251C\u2500\u2500 tasks.md # Implementation checklist\n\u2502 \u2502 \u251C\u2500\u2500 design.md # Technical decisions (optional; see criteria)\n\u2502 \u2502 \u2514\u2500\u2500 specs/ # Delta changes\n\u2502 \u2502 \u2514\u2500\u2500 [capability]/\n\u2502 \u2502 \u2514\u2500\u2500 spec.md # ADDED/MODIFIED/REMOVED\n\u2502 \u2514\u2500\u2500 archive/ # Completed changes\n```\n\n## Creating Change Proposals\n\n### Decision Tree\n\n```\nNew request?\n\u251C\u2500 Bug fix restoring spec behavior? \u2192 Fix directly\n\u251C\u2500 Typo/format/comment? \u2192 Fix directly \n\u251C\u2500 New feature/capability? \u2192 Create proposal\n\u251C\u2500 Breaking change? \u2192 Create proposal\n\u251C\u2500 Architecture change? \u2192 Create proposal\n\u2514\u2500 Unclear? \u2192 Create proposal (safer)\n```\n\n### Proposal Structure\n\n1. **Create directory:** `changes/[change-id]/` (kebab-case, verb-led, unique)\n\n2. **Write proposal.md:**\n```markdown\n# Change: [Brief description of change]\n\n## Why\n[1-2 sentences on problem/opportunity]\n\n## What Changes\n- [Bullet list of changes]\n- [Mark breaking changes with **BREAKING**]\n\n## Impact\n- Affected specs: [list capabilities]\n- Affected code: [key files/systems]\n```\n\n3. **Create spec deltas:** `specs/[capability]/spec.md`\n```markdown\n## ADDED Requirements\n### Requirement: New Feature\nThe system SHALL provide...\n\n#### Scenario: Success case\n- **WHEN** user performs action\n- **THEN** expected result\n\n## MODIFIED Requirements\n### Requirement: Existing Feature\n[Complete modified requirement]\n\n## REMOVED Requirements\n### Requirement: Old Feature\n**Reason**: [Why removing]\n**Migration**: [How to handle]\n```\nIf multiple capabilities are affected, create multiple delta files under `changes/[change-id]/specs/<capability>/spec.md`\u2014one per capability.\n\n4. **Create tasks.md:**\n```markdown\n## 1. Implementation\n- [ ] 1.1 Create database schema\n- [ ] 1.2 Implement API endpoint\n- [ ] 1.3 Add frontend component\n- [ ] 1.4 Write tests\n```\n\n5. **Create design.md when needed:**\nCreate `design.md` if any of the following apply; otherwise omit it:\n- Cross-cutting change (multiple services/modules) or a new architectural pattern\n- New external dependency or significant data model changes\n- Security, performance, or migration complexity\n- Ambiguity that benefits from technical decisions before coding\n\nMinimal `design.md` skeleton:\n```markdown\n## Context\n[Background, constraints, stakeholders]\n\n## Goals / Non-Goals\n- Goals: [...]\n- Non-Goals: [...]\n\n## Decisions\n- Decision: [What and why]\n- Alternatives considered: [Options + rationale]\n\n## Risks / Trade-offs\n- [Risk] \u2192 Mitigation\n\n## Migration Plan\n[Steps, rollback]\n\n## Open Questions\n- [...]\n```\n\n## Spec File Format\n\n### Critical: Scenario Formatting\n\n**CORRECT** (use #### headers):\n```markdown\n#### Scenario: User login success\n- **WHEN** valid credentials provided\n- **THEN** return JWT token\n```\n\n**WRONG** (don't use bullets or bold):\n```markdown\n- **Scenario: User login** \u274C\n**Scenario**: User login \u274C\n### Scenario: User login \u274C\n```\n\nEvery requirement MUST have at least one scenario.\n\n### Requirement Wording\n- Use SHALL/MUST for normative requirements (avoid should/may unless intentionally non-normative)\n\n### Delta Operations\n\n- `## ADDED Requirements` - New capabilities\n- `## MODIFIED Requirements` - Changed behavior\n- `## REMOVED Requirements` - Deprecated features\n- `## RENAMED Requirements` - Name changes\n\nHeaders matched with `trim(header)` - whitespace ignored.\n\n#### When to use ADDED vs MODIFIED\n- ADDED: Introduces a new capability or sub-capability that can stand alone as a requirement. Prefer ADDED when the change is orthogonal (e.g., adding \"Slash Command Configuration\") rather than altering the semantics of an existing requirement.\n- MODIFIED: Changes the behavior, scope, or acceptance criteria of an existing requirement. Always paste the full, updated requirement content (header + all scenarios). The archiver will replace the entire requirement with what you provide here; partial deltas will drop previous details.\n- RENAMED: Use when only the name changes. If you also change behavior, use RENAMED (name) plus MODIFIED (content) referencing the new name.\n\nCommon pitfall: Using MODIFIED to add a new concern without including the previous text. This causes loss of detail at archive time. If you aren\u2019t explicitly changing the existing requirement, add a new requirement under ADDED instead.\n\nAuthoring a MODIFIED requirement correctly:\n1) Locate the existing requirement in `lightspec/specs/<capability>/spec.md`.\n2) Copy the entire requirement block (from `### Requirement: ...` through its scenarios).\n3) Paste it under `## MODIFIED Requirements` and edit to reflect the new behavior.\n4) Ensure the header text matches exactly (whitespace-insensitive) and keep at least one `#### Scenario:`.\n\nExample for RENAMED:\n```markdown\n## RENAMED Requirements\n- FROM: `### Requirement: Login`\n- TO: `### Requirement: User Authentication`\n```\n\n## Troubleshooting\n\n### Common Errors\n\n**\"Change must have at least one delta\"**\n- Check `changes/[name]/specs/` exists with .md files\n- Verify files have operation prefixes (## ADDED Requirements)\n\n**\"Requirement must have at least one scenario\"**\n- Check scenarios use `#### Scenario:` format (4 hashtags)\n- Don't use bullet points or bold for scenario headers\n\n**Silent scenario parsing failures**\n- Exact format required: `#### Scenario: Name`\n- Debug with: `lightspec show [change] --json --deltas-only`\n\n### Validation Tips\n\n```bash\n# Always use strict mode for comprehensive checks\nlightspec validate [change] --strict --no-interactive\n\n# Debug delta parsing\nlightspec show [change] --json | jq '.deltas'\n\n# Check specific requirement\nlightspec show [spec] --json -r 1\n```\n\n## Happy Path Script\n\n```bash\n# 1) Explore current state\nlightspec spec list --long\nlightspec list\n# Optional full-text search:\n# rg -n \"Requirement:|Scenario:\" lightspec/specs\n# rg -n \"^#|Requirement:\" lightspec/changes\n\n# 2) Choose change id and scaffold\nCHANGE=add-two-factor-auth\nmkdir -p lightspec/changes/$CHANGE/{specs/auth}\nprintf \"## Why\\n...\\n\\n## What Changes\\n- ...\\n\\n## Impact\\n- ...\\n\" > lightspec/changes/$CHANGE/proposal.md\nprintf \"## 1. Implementation\\n- [ ] 1.1 ...\\n\" > lightspec/changes/$CHANGE/tasks.md\n\n# 3) Add deltas (example)\ncat > lightspec/changes/$CHANGE/specs/auth/spec.md << 'EOF'\n## ADDED Requirements\n### Requirement: Two-Factor Authentication\nUsers MUST provide a second factor during login.\n\n#### Scenario: OTP required\n- **WHEN** valid credentials are provided\n- **THEN** an OTP challenge is required\nEOF\n\n# 4) Validate\nlightspec validate $CHANGE --strict --no-interactive\n```\n\n## Multi-Capability Example\n\n```\nlightspec/changes/add-2fa-notify/\n\u251C\u2500\u2500 proposal.md\n\u251C\u2500\u2500 tasks.md\n\u2514\u2500\u2500 specs/\n \u251C\u2500\u2500 auth/\n \u2502 \u2514\u2500\u2500 spec.md # ADDED: Two-Factor Authentication\n \u2514\u2500\u2500 notifications/\n \u2514\u2500\u2500 spec.md # ADDED: OTP email notification\n```\n\nauth/spec.md\n```markdown\n## ADDED Requirements\n### Requirement: Two-Factor Authentication\n...\n```\n\nnotifications/spec.md\n```markdown\n## ADDED Requirements\n### Requirement: OTP Email Notification\n...\n```\n\n## Best Practices\n\n### Simplicity First\n- Default to <100 lines of new code\n- Single-file implementations until proven insufficient\n- Avoid frameworks without clear justification\n- Choose boring, proven patterns\n\n### Complexity Triggers\nOnly add complexity with:\n- Performance data showing current solution too slow\n- Concrete scale requirements (>1000 users, >100MB data)\n- Multiple proven use cases requiring abstraction\n\n### Clear References\n- Use `file.ts:42` format for code locations\n- Reference specs as `specs/auth/spec.md`\n- Link related changes and PRs\n\n### Capability Naming\n- Use verb-noun: `user-auth`, `payment-capture`\n- Single purpose per capability\n- 10-minute understandability rule\n- Split if description needs \"AND\"\n\n### Change ID Naming\n- Use kebab-case, short and descriptive: `add-two-factor-auth`\n- Prefer verb-led prefixes: `add-`, `update-`, `remove-`, `refactor-`\n- Ensure uniqueness; if taken, append `-2`, `-3`, etc.\n\n## Tool Selection Guide\n\n| Task | Tool | Why |\n|------|------|-----|\n| Find files by pattern | Glob | Fast pattern matching |\n| Search code content | Grep | Optimized regex search |\n| Read specific files | Read | Direct file access |\n| Explore unknown scope | Task | Multi-step investigation |\n\n## Error Recovery\n\n### Change Conflicts\n1. Run `lightspec list` to see active changes\n2. Check for overlapping specs\n3. Coordinate with change owners\n4. Consider combining proposals\n\n### Validation Failures\n1. Run with `--strict` flag\n2. Check JSON output for details\n3. Verify spec file format\n4. Ensure scenarios properly formatted\n\n### Missing Context\n1. Check related specs\n2. Review recent archives\n3. Ask for clarification\n\n## Quick Reference\n\n### Stage Indicators\n- `changes/` - Proposed, not yet built\n- `specs/` - Built and deployed\n- `archive/` - Completed changes\n\n### File Purposes\n- `proposal.md` - Why and what\n- `tasks.md` - Implementation steps\n- `design.md` - Technical decisions\n- `spec.md` - Requirements and behavior\n\n### CLI Essentials\n```bash\nlightspec list # What's in progress?\nlightspec show [item] # View details\nlightspec validate --strict --no-interactive # Is it correct?\nlightspec archive <change-id> [--yes|-y] # Mark complete (add --yes for automation)\n```\n\nRemember: Specs are truth. Changes are proposals. Keep them in sync.\n";
1
+ export declare const agentsTemplate = "# LightSpec Instructions\n\nInstructions for AI coding assistants using LightSpec for spec-driven development.\n\n## TL;DR Quick Checklist\n\n- Search existing work: `lightspec spec list --long`, `lightspec list` (use `rg` only for full-text search)\n- Decide scope: new capability vs modify existing capability\n- Pick a unique `change-id`: kebab-case, verb-led (`add-`, `update-`, `remove-`, `refactor-`)\n- Scaffold: `proposal.md`, `tasks.md`, `design.md` (only if needed), and delta specs per affected capability\n- Write deltas: use `## ADDED|MODIFIED|REMOVED|RENAMED Requirements`; include at least one `#### Scenario:` per requirement\n- Validate: `lightspec validate [change-id] --strict --no-interactive` and fix issues\n- Request approval: Do not start implementation until proposal is approved\n\n## Three-Stage Workflow\n\n### Stage 1: Creating Changes\nCreate proposal when you need to:\n- Add features or functionality\n- Make breaking changes (API, schema)\n- Change architecture or patterns \n- Optimize performance (changes behavior)\n- Update security patterns\n\nTriggers (examples):\n- \"Help me create a change proposal\"\n- \"Help me plan a change\"\n- \"Help me create a proposal\"\n- \"I want to create a spec proposal\"\n- \"I want to create a spec\"\n\nLoose matching guidance:\n- Contains one of: `proposal`, `change`, `spec`\n- With one of: `create`, `plan`, `make`, `start`, `help`\n\nSkip proposal for:\n- Bug fixes (restore intended behavior)\n- Typos, formatting, comments\n- Dependency updates (non-breaking)\n- Configuration changes\n- Tests for existing behavior\n\n**Workflow**\n1. Review `lightspec list` and `lightspec list --specs` to understand current context.\n2. Choose a unique verb-led `change-id` and scaffold `proposal.md`, `tasks.md`, optional `design.md`, and spec deltas under `lightspec/changes/<id>/`.\n3. Draft spec deltas using `## ADDED|MODIFIED|REMOVED Requirements` with at least one `#### Scenario:` per requirement.\n4. Run `lightspec validate <id> --strict --no-interactive` and resolve any issues before sharing the proposal.\n\n### Stage 2: Implementing Changes\nTrack these steps as TODOs and complete them one by one.\n1. **Read proposal.md** - Understand what's being built\n2. **Read design.md** (if exists) - Review technical decisions\n3. **Read tasks.md** - Get implementation checklist\n4. **Implement tasks sequentially** - Complete in order\n5. **Confirm completion** - Ensure every item in `tasks.md` is finished before updating statuses\n6. **Update checklist** - After all work is done, set every task to `- [x]` so the list reflects reality\n7. **Approval gate** - Do not start implementation until the proposal is reviewed and approved\n\n### Stage 3: Archiving Changes\nAfter deployment, create separate PR to:\n- Move `changes/[name]/` \u2192 `changes/archive/YYYY-MM-DD-[name]/`\n- Update `specs/` if capabilities changed\n- Use `lightspec archive <change-id> --skip-specs --yes` for tooling-only changes (always pass the change ID explicitly)\n- Run `lightspec validate --strict --no-interactive` to confirm the archived change passes checks\n\n## Before Any Task\n\n**Context Checklist:**\n- [ ] Read relevant specs in `specs/[capability]/spec.md`\n- [ ] Check pending changes in `changes/` for conflicts\n- [ ] Run `lightspec list` to see active changes\n- [ ] Run `lightspec list --specs` to see existing capabilities\n\n**Before Creating Specs:**\n- Always check if capability already exists\n- Prefer modifying existing specs over creating duplicates\n- Use `lightspec show [spec]` to review current state\n- If request is ambiguous, ask 1\u20132 clarifying questions before scaffolding\n\n### Search Guidance\n- Enumerate specs: `lightspec spec list --long` (or `--json` for scripts)\n- Enumerate changes: `lightspec list` (or `lightspec change list --json` - deprecated but available)\n- Show details:\n - Spec: `lightspec show <spec-id> --type spec` (use `--json` for filters)\n - Change: `lightspec show <change-id> --json --deltas-only`\n- Full-text search (use ripgrep): `rg -n \"Requirement:|Scenario:\" lightspec/specs`\n\n## Quick Start\n\n### CLI Commands\n\n```bash\n# Essential commands\nlightspec list # List active changes\nlightspec list --specs # List specifications\nlightspec show [item] # Display change or spec\nlightspec validate [item] # Validate changes or specs\nlightspec archive <change-id> [--yes|-y] # Archive after deployment (add --yes for non-interactive runs)\n\n# Project management\nlightspec init [path] # Initialize LightSpec\nlightspec update [path] # Update instruction files\n\n# Interactive mode\nlightspec show # Prompts for selection\nlightspec validate # Bulk validation mode\n\n# Debugging\nlightspec show [change] --json --deltas-only\nlightspec validate [change] --strict --no-interactive\n```\n\n### Command Flags\n\n- `--json` - Machine-readable output\n- `--type change|spec` - Disambiguate items\n- `--strict` - Comprehensive validation\n- `--no-interactive` - Disable prompts\n- `--skip-specs` - Archive without spec updates\n- `--yes`/`-y` - Skip confirmation prompts (non-interactive archive)\n\n## Directory Structure\n\n```\nlightspec/\n\u251C\u2500\u2500 specs/ # Current truth - what IS built\n\u2502 \u2514\u2500\u2500 [capability]/ # Single focused capability\n\u2502 \u251C\u2500\u2500 spec.md # Requirements and scenarios\n\u2502 \u2514\u2500\u2500 design.md # Technical patterns\n\u251C\u2500\u2500 changes/ # Proposals - what SHOULD change\n\u2502 \u251C\u2500\u2500 [change-name]/\n\u2502 \u2502 \u251C\u2500\u2500 proposal.md # Why, what, impact\n\u2502 \u2502 \u251C\u2500\u2500 tasks.md # Implementation checklist\n\u2502 \u2502 \u251C\u2500\u2500 design.md # Technical decisions (optional; see criteria)\n\u2502 \u2502 \u2514\u2500\u2500 specs/ # Delta changes\n\u2502 \u2502 \u2514\u2500\u2500 [capability]/\n\u2502 \u2502 \u2514\u2500\u2500 spec.md # ADDED/MODIFIED/REMOVED\n\u2502 \u2514\u2500\u2500 archive/ # Completed changes\n```\n\n## Creating Change Proposals\n\n### Decision Tree\n\n```\nNew request?\n\u251C\u2500 Bug fix restoring spec behavior? \u2192 Fix directly\n\u251C\u2500 Typo/format/comment? \u2192 Fix directly \n\u251C\u2500 New feature/capability? \u2192 Create proposal\n\u251C\u2500 Breaking change? \u2192 Create proposal\n\u251C\u2500 Architecture change? \u2192 Create proposal\n\u2514\u2500 Unclear? \u2192 Create proposal (safer)\n```\n\n### Proposal Structure\n\n1. **Create directory:** `changes/[change-id]/` (kebab-case, verb-led, unique)\n\n2. **Write proposal.md:**\n```markdown\n# Change: [Brief description of change]\n\n## Why\n[1-2 sentences on problem/opportunity]\n\n## What Changes\n- [Bullet list of changes]\n- [Mark breaking changes with **BREAKING**]\n\n## Impact\n- Affected specs: [list capabilities]\n- Affected code: [key files/systems]\n```\n\n3. **Create spec deltas:** `specs/[capability]/spec.md`\n```markdown\n## ADDED Requirements\n### Requirement: New Feature\nThe system SHALL provide...\n\n#### Scenario: Success case\n- **WHEN** user performs action\n- **THEN** expected result\n\n## MODIFIED Requirements\n### Requirement: Existing Feature\n[Complete modified requirement]\n\n## REMOVED Requirements\n### Requirement: Old Feature\n**Reason**: [Why removing]\n**Migration**: [How to handle]\n```\nIf multiple capabilities are affected, create multiple delta files under `changes/[change-id]/specs/<capability>/spec.md`\u2014one per capability.\n\n4. **Create tasks.md:**\n```markdown\n## 1. Implementation\n- [ ] 1.1 Create database schema\n- [ ] 1.2 Implement API endpoint\n- [ ] 1.3 Add frontend component\n- [ ] 1.4 Write tests\n```\n\n5. **Create design.md when needed:**\nCreate `design.md` if any of the following apply; otherwise omit it:\n- Cross-cutting change (multiple services/modules) or a new architectural pattern\n- New external dependency or significant data model changes\n- Security, performance, or migration complexity\n- Ambiguity that benefits from technical decisions before coding\n\nMinimal `design.md` skeleton:\n```markdown\n## Context\n[Background, constraints, stakeholders]\n\n## Goals / Non-Goals\n- Goals: [...]\n- Non-Goals: [...]\n\n## Decisions\n- Decision: [What and why]\n- Alternatives considered: [Options + rationale]\n\n## Risks / Trade-offs\n- [Risk] \u2192 Mitigation\n\n## Migration Plan\n[Steps, rollback]\n\n## Open Questions\n- [...]\n```\n\n## Spec File Format\n\n### Critical: Scenario Formatting\n\n**CORRECT** (use #### headers):\n```markdown\n#### Scenario: User login success\n- **WHEN** valid credentials provided\n- **THEN** return JWT token\n```\n\n**WRONG** (don't use bullets or bold):\n```markdown\n- **Scenario: User login** \u274C\n**Scenario**: User login \u274C\n### Scenario: User login \u274C\n```\n\nEvery requirement MUST have at least one scenario.\n\n### Requirement Wording\n- Use SHALL/MUST for normative requirements (avoid should/may unless intentionally non-normative)\n\n### Delta Operations\n\n- `## ADDED Requirements` - New capabilities\n- `## MODIFIED Requirements` - Changed behavior\n- `## REMOVED Requirements` - Deprecated features\n- `## RENAMED Requirements` - Name changes\n\nHeaders matched with `trim(header)` - whitespace ignored.\n\n#### When to use ADDED vs MODIFIED\n- ADDED: Introduces a new capability or sub-capability that can stand alone as a requirement. Prefer ADDED when the change is orthogonal (e.g., adding \"Agent Skill Configuration\") rather than altering the semantics of an existing requirement.\n- MODIFIED: Changes the behavior, scope, or acceptance criteria of an existing requirement. Always paste the full, updated requirement content (header + all scenarios). The archiver will replace the entire requirement with what you provide here; partial deltas will drop previous details.\n- RENAMED: Use when only the name changes. If you also change behavior, use RENAMED (name) plus MODIFIED (content) referencing the new name.\n\nCommon pitfall: Using MODIFIED to add a new concern without including the previous text. This causes loss of detail at archive time. If you aren\u2019t explicitly changing the existing requirement, add a new requirement under ADDED instead.\n\nAuthoring a MODIFIED requirement correctly:\n1) Locate the existing requirement in `lightspec/specs/<capability>/spec.md`.\n2) Copy the entire requirement block (from `### Requirement: ...` through its scenarios).\n3) Paste it under `## MODIFIED Requirements` and edit to reflect the new behavior.\n4) Ensure the header text matches exactly (whitespace-insensitive) and keep at least one `#### Scenario:`.\n\nExample for RENAMED:\n```markdown\n## RENAMED Requirements\n- FROM: `### Requirement: Login`\n- TO: `### Requirement: User Authentication`\n```\n\n## Troubleshooting\n\n### Common Errors\n\n**\"Change must have at least one delta\"**\n- Check `changes/[name]/specs/` exists with .md files\n- Verify files have operation prefixes (## ADDED Requirements)\n\n**\"Requirement must have at least one scenario\"**\n- Check scenarios use `#### Scenario:` format (4 hashtags)\n- Don't use bullet points or bold for scenario headers\n\n**Silent scenario parsing failures**\n- Exact format required: `#### Scenario: Name`\n- Debug with: `lightspec show [change] --json --deltas-only`\n\n### Validation Tips\n\n```bash\n# Always use strict mode for comprehensive checks\nlightspec validate [change] --strict --no-interactive\n\n# Debug delta parsing\nlightspec show [change] --json | jq '.deltas'\n\n# Check specific requirement\nlightspec show [spec] --json -r 1\n```\n\n## Happy Path Script\n\n```bash\n# 1) Explore current state\nlightspec spec list --long\nlightspec list\n# Optional full-text search:\n# rg -n \"Requirement:|Scenario:\" lightspec/specs\n# rg -n \"^#|Requirement:\" lightspec/changes\n\n# 2) Choose change id and scaffold\nCHANGE=add-two-factor-auth\nmkdir -p lightspec/changes/$CHANGE/{specs/auth}\nprintf \"## Why\\n...\\n\\n## What Changes\\n- ...\\n\\n## Impact\\n- ...\\n\" > lightspec/changes/$CHANGE/proposal.md\nprintf \"## 1. Implementation\\n- [ ] 1.1 ...\\n\" > lightspec/changes/$CHANGE/tasks.md\n\n# 3) Add deltas (example)\ncat > lightspec/changes/$CHANGE/specs/auth/spec.md << 'EOF'\n## ADDED Requirements\n### Requirement: Two-Factor Authentication\nUsers MUST provide a second factor during login.\n\n#### Scenario: OTP required\n- **WHEN** valid credentials are provided\n- **THEN** an OTP challenge is required\nEOF\n\n# 4) Validate\nlightspec validate $CHANGE --strict --no-interactive\n```\n\n## Multi-Capability Example\n\n```\nlightspec/changes/add-2fa-notify/\n\u251C\u2500\u2500 proposal.md\n\u251C\u2500\u2500 tasks.md\n\u2514\u2500\u2500 specs/\n \u251C\u2500\u2500 auth/\n \u2502 \u2514\u2500\u2500 spec.md # ADDED: Two-Factor Authentication\n \u2514\u2500\u2500 notifications/\n \u2514\u2500\u2500 spec.md # ADDED: OTP email notification\n```\n\nauth/spec.md\n```markdown\n## ADDED Requirements\n### Requirement: Two-Factor Authentication\n...\n```\n\nnotifications/spec.md\n```markdown\n## ADDED Requirements\n### Requirement: OTP Email Notification\n...\n```\n\n## Best Practices\n\n### Simplicity First\n- Default to <100 lines of new code\n- Single-file implementations until proven insufficient\n- Avoid frameworks without clear justification\n- Choose boring, proven patterns\n\n### Complexity Triggers\nOnly add complexity with:\n- Performance data showing current solution too slow\n- Concrete scale requirements (>1000 users, >100MB data)\n- Multiple proven use cases requiring abstraction\n\n### Clear References\n- Use `file.ts:42` format for code locations\n- Reference specs as `specs/auth/spec.md`\n- Link related changes and PRs\n\n### Capability Naming\n- Use verb-noun: `user-auth`, `payment-capture`\n- Single purpose per capability\n- 10-minute understandability rule\n- Split if description needs \"AND\"\n\n### Change ID Naming\n- Use kebab-case, short and descriptive: `add-two-factor-auth`\n- Prefer verb-led prefixes: `add-`, `update-`, `remove-`, `refactor-`\n- Ensure uniqueness; if taken, append `-2`, `-3`, etc.\n\n## Tool Selection Guide\n\n| Task | Tool | Why |\n|------|------|-----|\n| Find files by pattern | Glob | Fast pattern matching |\n| Search code content | Grep | Optimized regex search |\n| Read specific files | Read | Direct file access |\n| Explore unknown scope | Task | Multi-step investigation |\n\n## Error Recovery\n\n### Change Conflicts\n1. Run `lightspec list` to see active changes\n2. Check for overlapping specs\n3. Coordinate with change owners\n4. Consider combining proposals\n\n### Validation Failures\n1. Run with `--strict` flag\n2. Check JSON output for details\n3. Verify spec file format\n4. Ensure scenarios properly formatted\n\n### Missing Context\n1. Check related specs\n2. Review recent archives\n3. Ask for clarification\n\n## Quick Reference\n\n### Stage Indicators\n- `changes/` - Proposed, not yet built\n- `specs/` - Built and deployed\n- `archive/` - Completed changes\n\n### File Purposes\n- `proposal.md` - Why and what\n- `tasks.md` - Implementation steps\n- `design.md` - Technical decisions\n- `spec.md` - Requirements and behavior\n\n### CLI Essentials\n```bash\nlightspec list # What's in progress?\nlightspec show [item] # View details\nlightspec validate --strict --no-interactive # Is it correct?\nlightspec archive <change-id> [--yes|-y] # Mark complete (add --yes for automation)\n```\n\nRemember: Specs are truth. Changes are proposals. Keep them in sync.\n";
2
2
  //# sourceMappingURL=agents-template.d.ts.map
@@ -265,7 +265,7 @@ Every requirement MUST have at least one scenario.
265
265
  Headers matched with \`trim(header)\` - whitespace ignored.
266
266
 
267
267
  #### When to use ADDED vs MODIFIED
268
- - ADDED: Introduces a new capability or sub-capability that can stand alone as a requirement. Prefer ADDED when the change is orthogonal (e.g., adding "Slash Command Configuration") rather than altering the semantics of an existing requirement.
268
+ - ADDED: Introduces a new capability or sub-capability that can stand alone as a requirement. Prefer ADDED when the change is orthogonal (e.g., adding "Agent Skill Configuration") rather than altering the semantics of an existing requirement.
269
269
  - MODIFIED: Changes the behavior, scope, or acceptance criteria of an existing requirement. Always paste the full, updated requirement content (header + all scenarios). The archiver will replace the entire requirement with what you provide here; partial deltas will drop previous details.
270
270
  - RENAMED: Use when only the name changes. If you also change behavior, use RENAMED (name) plus MODIFIED (content) referencing the new name.
271
271
 
@@ -10,7 +10,7 @@ metadata:
10
10
  ---`;
11
11
  const archiveSteps = `**Steps**
12
12
  1. Determine the change ID to archive:
13
- - If this prompt already includes a specific change ID (for example inside a \`<ChangeId>\` block populated by slash-command arguments), use that value after trimming whitespace.
13
+ - If this prompt already includes a specific change ID (for example inside a \`<ChangeId>\` block populated by skill arguments), use that value after trimming whitespace.
14
14
  - If the conversation references a change loosely (for example by title or summary), run \`lightspec list\` to surface likely IDs, share the relevant candidates, and confirm which one the user intends.
15
15
  - Otherwise, review the conversation, run \`lightspec list\`, and ask the user which change to archive; wait for a confirmed change ID before proceeding.
16
16
  - If you still cannot identify a single change ID, stop and tell the user you cannot archive anything yet.
@@ -1,5 +1,5 @@
1
1
  import { ProjectContext } from './project-template.js';
2
- import { SlashCommandId } from './slash-command-templates.js';
2
+ import { AgentSkillId } from './agent-skill-templates.js';
3
3
  export interface Template {
4
4
  path: string;
5
5
  content: string | ((context: ProjectContext) => string);
@@ -10,9 +10,9 @@ export declare class TemplateManager {
10
10
  static getClineTemplate(): string;
11
11
  static getCostrictTemplate(): string;
12
12
  static getAgentsStandardTemplate(): string;
13
- static getSlashCommandBody(id: SlashCommandId): string;
14
- static getSlashCommandFrontmatter(id: SlashCommandId): string;
13
+ static getAgentSkillBody(id: AgentSkillId): string;
14
+ static getAgentSkillFrontmatter(id: AgentSkillId): string;
15
15
  }
16
16
  export { ProjectContext } from './project-template.js';
17
- export type { SlashCommandId } from './slash-command-templates.js';
17
+ export type { AgentSkillId } from './agent-skill-templates.js';
18
18
  //# sourceMappingURL=index.d.ts.map
@@ -3,7 +3,7 @@ import { claudeTemplate } from './claude-template.js';
3
3
  import { clineTemplate } from './cline-template.js';
4
4
  import { costrictTemplate } from './costrict-template.js';
5
5
  import { agentsRootStubTemplate } from './agents-root-stub.js';
6
- import { getSlashCommandBody, getSlashCommandFrontmatter, } from './slash-command-templates.js';
6
+ import { getAgentSkillBody, getAgentSkillFrontmatter, } from './agent-skill-templates.js';
7
7
  export class TemplateManager {
8
8
  static getTemplates(context = {}) {
9
9
  return [
@@ -25,11 +25,11 @@ export class TemplateManager {
25
25
  static getAgentsStandardTemplate() {
26
26
  return agentsRootStubTemplate;
27
27
  }
28
- static getSlashCommandBody(id) {
29
- return getSlashCommandBody(id);
28
+ static getAgentSkillBody(id) {
29
+ return getAgentSkillBody(id);
30
30
  }
31
- static getSlashCommandFrontmatter(id) {
32
- return getSlashCommandFrontmatter(id);
31
+ static getAgentSkillFrontmatter(id) {
32
+ return getAgentSkillFrontmatter(id);
33
33
  }
34
34
  }
35
35
  //# sourceMappingURL=index.js.map
@@ -2,7 +2,7 @@ import path from 'path';
2
2
  import { FileSystemUtils } from '../utils/file-system.js';
3
3
  import { LIGHTSPEC_DIR_NAME } from './config.js';
4
4
  import { ToolRegistry } from './configurators/registry.js';
5
- import { SlashCommandRegistry } from './configurators/slash/registry.js';
5
+ import { AgentSkillRegistry } from './configurators/skills/registry.js';
6
6
  import { agentsTemplate } from './templates/agents-template.js';
7
7
  export class UpdateCommand {
8
8
  async execute(projectPath) {
@@ -18,11 +18,11 @@ export class UpdateCommand {
18
18
  await FileSystemUtils.writeFile(agentsPath, agentsTemplate);
19
19
  // 3. Update existing AI tool configuration files only
20
20
  const configurators = ToolRegistry.getAll();
21
- const slashConfigurators = SlashCommandRegistry.getAll();
21
+ const skillConfigurators = AgentSkillRegistry.getAll();
22
22
  const updatedFiles = [];
23
23
  const createdFiles = [];
24
24
  const failedFiles = [];
25
- const updatedSlashFiles = [];
25
+ const updatedSkillFiles = [];
26
26
  const failedSkillTools = [];
27
27
  for (const configurator of configurators) {
28
28
  const configFilePath = path.join(resolvedProjectPath, configurator.configFileName);
@@ -46,17 +46,17 @@ export class UpdateCommand {
46
46
  console.error(`Failed to update ${configurator.configFileName}: ${error instanceof Error ? error.message : String(error)}`);
47
47
  }
48
48
  }
49
- for (const slashConfigurator of slashConfigurators) {
50
- if (!slashConfigurator.isAvailable) {
49
+ for (const skillConfigurator of skillConfigurators) {
50
+ if (!skillConfigurator.isAvailable) {
51
51
  continue;
52
52
  }
53
53
  try {
54
- const updated = await slashConfigurator.updateExisting(resolvedProjectPath, lightspecPath);
55
- updatedSlashFiles.push(...updated);
54
+ const updated = await skillConfigurator.updateExisting(resolvedProjectPath, lightspecPath);
55
+ updatedSkillFiles.push(...updated);
56
56
  }
57
57
  catch (error) {
58
- failedSkillTools.push(slashConfigurator.toolId);
59
- console.error(`Failed to update skills for ${slashConfigurator.toolId}: ${error instanceof Error ? error.message : String(error)}`);
58
+ failedSkillTools.push(skillConfigurator.toolId);
59
+ console.error(`Failed to update skills for ${skillConfigurator.toolId}: ${error instanceof Error ? error.message : String(error)}`);
60
60
  }
61
61
  }
62
62
  const summaryParts = [];
@@ -69,9 +69,9 @@ export class UpdateCommand {
69
69
  if (aiToolFiles.length > 0) {
70
70
  summaryParts.push(`Updated AI tool files: ${aiToolFiles.join(', ')}`);
71
71
  }
72
- if (updatedSlashFiles.length > 0) {
72
+ if (updatedSkillFiles.length > 0) {
73
73
  // Normalize to forward slashes for cross-platform log consistency
74
- const normalized = updatedSlashFiles.map((p) => FileSystemUtils.toPosixPath(p));
74
+ const normalized = updatedSkillFiles.map((p) => FileSystemUtils.toPosixPath(p));
75
75
  summaryParts.push(`Updated skills: ${normalized.join(', ')}`);
76
76
  }
77
77
  const failedItems = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightspec",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "description": "AI-native system for spec-driven development",
5
5
  "keywords": [
6
6
  "lightspec",
@@ -74,6 +74,7 @@
74
74
  "check:pack-version": "node scripts/pack-version-check.mjs",
75
75
  "release": "pnpm run release:ci",
76
76
  "release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
77
+ "release:manual": "bash scripts/release-manual.sh",
77
78
  "changeset": "changeset"
78
79
  }
79
80
  }
@@ -1,9 +0,0 @@
1
- import { SlashCommandConfigurator } from './base.js';
2
- import { SlashCommandId } from '../../templates/index.js';
3
- export declare class AmazonQSlashCommandConfigurator extends SlashCommandConfigurator {
4
- readonly toolId = "amazon-q";
5
- readonly isAvailable = true;
6
- protected getRelativePath(id: SlashCommandId): string;
7
- protected getFrontmatter(id: SlashCommandId): string;
8
- }
9
- //# sourceMappingURL=amazon-q.d.ts.map