@laitszkin/apollo-toolkit 3.14.7 → 3.14.8

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this repository are documented in this file.
4
4
 
5
+ ## [v3.14.8] - 2026-05-16
6
+
7
+ ### Fixed
8
+
9
+ - Fix hardcoded `generate-spec` path references in `lib/tools/create-specs.ts` and `lib/tool-runner.ts` that broke the `apltk create-specs` CLI tool after the skill rename.
10
+
5
11
  ## [v3.14.7] - 2026-05-16
6
12
 
7
13
  ### Changed
@@ -118,7 +118,7 @@ const TOOL_COMMANDS = [
118
118
  {
119
119
  name: 'create-specs',
120
120
  category: 'Planning & architecture',
121
- skill: 'generate-spec',
121
+ skill: 'spec',
122
122
  handler: create_specs_1.createSpecsHandler,
123
123
  description: 'Create spec planning documents from templates.',
124
124
  help: {
@@ -119,7 +119,7 @@ Options:
119
119
  }
120
120
  // Resolve template directory
121
121
  const sourceRoot = context.sourceRoot || node_path_1.default.resolve(__dirname, '..', '..', '..');
122
- const templateDirRaw = parsed['template-dir'] || node_path_1.default.join(sourceRoot, 'generate-spec', 'references', 'templates');
122
+ const templateDirRaw = parsed['template-dir'] || node_path_1.default.join(sourceRoot, 'spec', 'references', 'templates');
123
123
  const templateDir = node_path_1.default.resolve(templateDirRaw);
124
124
  if (!node_fs_1.default.existsSync(templateDir)) {
125
125
  stderr.write(`Error: Template directory not found: ${templateDir}\n`);
@@ -108,8 +108,8 @@ const TOOL_COMMANDS = [
108
108
  {
109
109
  name: 'create-specs',
110
110
  category: 'Planning & architecture',
111
- skill: 'generate-spec',
112
- script: 'generate-spec/scripts/create-specs',
111
+ skill: 'spec',
112
+ script: 'spec/scripts/create-specs',
113
113
  runner: 'python3',
114
114
  description: 'Create spec planning documents from templates.',
115
115
  help: {
@@ -108,7 +108,7 @@ const TOOL_COMMANDS: ToolDefinition[] = [
108
108
  {
109
109
  name: 'create-specs',
110
110
  category: 'Planning & architecture',
111
- skill: 'generate-spec',
111
+ skill: 'spec',
112
112
  handler: createSpecsHandler,
113
113
  description: 'Create spec planning documents from templates.',
114
114
  help: {
@@ -125,7 +125,7 @@ Options:
125
125
 
126
126
  // Resolve template directory
127
127
  const sourceRoot = context.sourceRoot || path.resolve(__dirname, '..', '..', '..');
128
- const templateDirRaw = (parsed['template-dir'] as string) || path.join(sourceRoot, 'generate-spec', 'references', 'templates');
128
+ const templateDirRaw = (parsed['template-dir'] as string) || path.join(sourceRoot, 'spec', 'references', 'templates');
129
129
  const templateDir = path.resolve(templateDirRaw);
130
130
 
131
131
  if (!fs.existsSync(templateDir)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laitszkin/apollo-toolkit",
3
- "version": "3.14.7",
3
+ "version": "3.14.8",
4
4
  "description": "Apollo Toolkit npm installer for managed skill copying across Codex, OpenClaw, and Trae.",
5
5
  "license": "MIT",
6
6
  "author": "LaiTszKin",