lightspec 0.4.0 → 0.4.1

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.
@@ -26,6 +26,6 @@ export const AI_TOOLS = [
26
26
  { name: 'Qwen Code', value: 'qwen', available: true, successLabel: 'Qwen Code' },
27
27
  { name: 'RooCode', value: 'roocode', available: true, successLabel: 'RooCode' },
28
28
  { name: 'Windsurf', value: 'windsurf', available: true, successLabel: 'Windsurf' },
29
- { name: 'AGENTS.md (works with Amp, VS Code, …)', value: 'agents', available: false, successLabel: 'your AGENTS.md-compatible assistant' }
29
+ { name: 'AGENTS.md + .agents (works with Amp, VS Code, …)', value: 'agents', available: true, successLabel: 'your AGENTS.md-compatible assistant' }
30
30
  ];
31
31
  //# sourceMappingURL=config.js.map
@@ -7,6 +7,7 @@ const ALL_SKILL_IDS = ['proposal', 'apply', 'archive', 'agentsmd-check'];
7
7
  const TOOL_SKILL_ROOTS = {
8
8
  'amazon-q': '.amazonq',
9
9
  antigravity: '.antigravity',
10
+ agents: '.agents',
10
11
  auggie: '.auggie',
11
12
  claude: '.claude',
12
13
  cline: '.cline',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightspec",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "AI-native system for spec-driven development",
5
5
  "keywords": [
6
6
  "lightspec",
@@ -53,6 +53,7 @@
53
53
  "check:pack-version": "node scripts/pack-version-check.mjs",
54
54
  "release": "pnpm run release:ci",
55
55
  "release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
56
+ "release:passkey": "pnpm run check:pack-version && npm publish --access public",
56
57
  "release:manual": "bash scripts/release-manual.sh",
57
58
  "changeset": "changeset"
58
59
  },