@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.
Files changed (27) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +1 -2
  3. package/packages/cli/package.json +8 -1
  4. package/packages/tool-registry/package.json +8 -1
  5. package/packages/tool-utils/package.json +8 -1
  6. package/packages/tools/architecture/package.json +8 -1
  7. package/packages/tools/codegraph/package.json +8 -1
  8. package/packages/tools/create-review-report/package.json +8 -1
  9. package/packages/tools/create-specs/package.json +8 -1
  10. package/packages/tools/docs-to-voice/package.json +8 -1
  11. package/packages/tools/enforce-video-aspect-ratio/package.json +8 -1
  12. package/packages/tools/eval/package.json +8 -1
  13. package/packages/tools/extract-conversations/package.json +8 -1
  14. package/packages/tools/extract-pdf-text/package.json +8 -1
  15. package/packages/tools/filter-logs/package.json +8 -1
  16. package/packages/tools/find-github-issues/package.json +8 -1
  17. package/packages/tools/generate-storyboard-images/package.json +8 -1
  18. package/packages/tools/open-github-issue/package.json +8 -1
  19. package/packages/tools/read-github-issue/package.json +8 -1
  20. package/packages/tools/render-error-book/package.json +8 -1
  21. package/packages/tools/render-katex/package.json +8 -1
  22. package/packages/tools/review-threads/package.json +8 -1
  23. package/packages/tools/search-logs/package.json +8 -1
  24. package/packages/tools/sync-memory-index/package.json +8 -1
  25. package/packages/tools/validate-openai-agent-config/package.json +8 -1
  26. package/packages/tools/validate-skill-frontmatter/package.json +8 -1
  27. 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.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
  }
@@ -15,5 +15,12 @@
15
15
  "scripts": {
16
16
  "build": "tsc --build",
17
17
  "test": "node --test dist/"
18
- }
18
+ },
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "registry": "https://registry.npmjs.org"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ]
19
26
  }
@@ -15,5 +15,12 @@
15
15
  "scripts": {
16
16
  "build": "tsc --build",
17
17
  "test": "node --test dist/"
18
- }
18
+ },
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "registry": "https://registry.npmjs.org"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ]
19
26
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -19,5 +19,12 @@
19
19
  "dependencies": {
20
20
  "@colbymchenry/codegraph": "^0.9.0",
21
21
  "@laitszkin/tool-registry": "*"
22
- }
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "registry": "https://registry.npmjs.org"
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ]
23
30
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -19,5 +19,12 @@
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*",
21
21
  "@laitszkin/tool-utils": "*"
22
- }
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "registry": "https://registry.npmjs.org"
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ]
23
30
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -19,5 +19,12 @@
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*",
21
21
  "@laitszkin/tool-utils": "*"
22
- }
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "registry": "https://registry.npmjs.org"
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ]
23
30
  }
@@ -18,5 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*"
21
- }
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ]
22
29
  }
@@ -20,5 +20,12 @@
20
20
  "@laitszkin/tool-registry": "*",
21
21
  "@laitszkin/tool-utils": "*",
22
22
  "js-yaml": "^4.1.1"
23
- }
23
+ },
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "registry": "https://registry.npmjs.org"
27
+ },
28
+ "files": [
29
+ "dist"
30
+ ]
24
31
  }
@@ -19,5 +19,12 @@
19
19
  "dependencies": {
20
20
  "@laitszkin/tool-registry": "*",
21
21
  "@laitszkin/tool-utils": "*"
22
- }
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "registry": "https://registry.npmjs.org"
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ]
23
30
  }
@@ -20,5 +20,12 @@
20
20
  "@inquirer/prompts": "^8.0.0",
21
21
  "@laitszkin/tool-utils": "*",
22
22
  "chalk": "^5.0.0"
23
- }
23
+ },
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "registry": "https://registry.npmjs.org"
27
+ },
28
+ "files": [
29
+ "dist"
30
+ ]
24
31
  }