@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
|
package/dist/lib/tool-runner.js
CHANGED
|
@@ -118,7 +118,7 @@ const TOOL_COMMANDS = [
|
|
|
118
118
|
{
|
|
119
119
|
name: 'create-specs',
|
|
120
120
|
category: 'Planning & architecture',
|
|
121
|
-
skill: '
|
|
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, '
|
|
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`);
|
package/lib/tool-runner.js
CHANGED
|
@@ -108,8 +108,8 @@ const TOOL_COMMANDS = [
|
|
|
108
108
|
{
|
|
109
109
|
name: 'create-specs',
|
|
110
110
|
category: 'Planning & architecture',
|
|
111
|
-
skill: '
|
|
112
|
-
script: '
|
|
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: {
|
package/lib/tool-runner.ts
CHANGED
|
@@ -108,7 +108,7 @@ const TOOL_COMMANDS: ToolDefinition[] = [
|
|
|
108
108
|
{
|
|
109
109
|
name: 'create-specs',
|
|
110
110
|
category: 'Planning & architecture',
|
|
111
|
-
skill: '
|
|
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, '
|
|
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