@laitszkin/apollo-toolkit 5.0.0 → 5.0.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.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -2
- package/packages/cli/package.json +8 -1
- package/packages/tool-registry/package.json +8 -1
- package/packages/tool-utils/package.json +8 -1
- package/packages/tools/architecture/package.json +8 -1
- package/packages/tools/codegraph/package.json +8 -1
- package/packages/tools/create-review-report/package.json +8 -1
- package/packages/tools/create-specs/package.json +8 -1
- package/packages/tools/docs-to-voice/package.json +8 -1
- package/packages/tools/enforce-video-aspect-ratio/package.json +8 -1
- package/packages/tools/eval/package.json +8 -1
- package/packages/tools/extract-conversations/package.json +8 -1
- package/packages/tools/extract-pdf-text/package.json +8 -1
- package/packages/tools/filter-logs/package.json +8 -1
- package/packages/tools/find-github-issues/package.json +8 -1
- package/packages/tools/generate-storyboard-images/package.json +8 -1
- package/packages/tools/open-github-issue/package.json +8 -1
- package/packages/tools/read-github-issue/package.json +8 -1
- package/packages/tools/render-error-book/package.json +8 -1
- package/packages/tools/render-katex/package.json +8 -1
- package/packages/tools/review-threads/package.json +8 -1
- package/packages/tools/search-logs/package.json +8 -1
- package/packages/tools/sync-memory-index/package.json +8 -1
- package/packages/tools/validate-openai-agent-config/package.json +8 -1
- package/packages/tools/validate-skill-frontmatter/package.json +8 -1
- package/packages/tui/package.json +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this repository are documented in this file.
|
|
4
4
|
|
|
5
|
+
## [v5.0.1] - 2026-06-06
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Publish CI**: Build now passes in fresh CI checkout. Added missing tsconfig `references` for `tui` and `tool-registry` to fix `tsc --build` dependency ordering. Broke circular type dependency between `tool-utils` and `tool-registry` by moving `ToolContext` into `tool-utils`.
|
|
10
|
+
- **Stale tests**: `ToolNotFoundError` formatting tests updated to match `formatAppError` behavior (bare message, no "Error:" prefix). Architecture `REGTEST-15/17` tests updated to handle error-throwing handlers.
|
|
11
|
+
- **Lockfile sync**: `package-lock.json` regenerated to match workspace `package.json` files after version bump.
|
|
12
|
+
|
|
5
13
|
## [v5.0.0] - 2026-06-06
|
|
6
14
|
|
|
7
15
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@laitszkin/apollo-toolkit",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "Apollo Toolkit npm installer for managed skill copying across Codex, OpenClaw, and Trae.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "LaiTszKin",
|
|
@@ -47,7 +47,6 @@
|
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@inquirer/prompts": "^8.0.0",
|
|
50
|
-
"@laitszkin/cli": "^5.0.0",
|
|
51
50
|
"chalk": "^5.0.0",
|
|
52
51
|
"elkjs": "^0.11.1",
|
|
53
52
|
"js-yaml": "^4.1.1"
|
|
@@ -41,5 +41,12 @@
|
|
|
41
41
|
"@laitszkin/tool-create-review-report": "*",
|
|
42
42
|
"@laitszkin/tool-eval": "*",
|
|
43
43
|
"@laitszkin/tool-extract-pdf-text": "*"
|
|
44
|
-
}
|
|
44
|
+
},
|
|
45
|
+
"publishConfig": {
|
|
46
|
+
"access": "public",
|
|
47
|
+
"registry": "https://registry.npmjs.org"
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"dist"
|
|
51
|
+
]
|
|
45
52
|
}
|