@aui.io/apollo 0.1.41 → 0.1.43

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 (32) hide show
  1. package/README.md +2 -2
  2. package/node_modules/@aui.io/apollo-cli/dist/src/commands/auth.js +4 -7
  3. package/node_modules/@aui.io/apollo-cli/dist/src/commands/auth.js.map +1 -1
  4. package/node_modules/@aui.io/apollo-cli/dist/src/commands/bundles.js +38 -46
  5. package/node_modules/@aui.io/apollo-cli/dist/src/commands/bundles.js.map +1 -1
  6. package/node_modules/@aui.io/apollo-cli/dist/src/commands/operate.js +1 -9
  7. package/node_modules/@aui.io/apollo-cli/dist/src/commands/operate.js.map +1 -1
  8. package/node_modules/@aui.io/apollo-cli/package.json +3 -3
  9. package/node_modules/@aui.io/apollo-core/dist/src/api/runtime-api.d.ts +19 -28
  10. package/node_modules/@aui.io/apollo-core/dist/src/api/runtime-api.js +28 -17
  11. package/node_modules/@aui.io/apollo-core/dist/src/api/runtime-api.js.map +1 -1
  12. package/node_modules/@aui.io/apollo-core/dist/src/bundle/build-area.js +2 -1
  13. package/node_modules/@aui.io/apollo-core/dist/src/bundle/build-area.js.map +1 -1
  14. package/node_modules/@aui.io/apollo-core/dist/src/config/index.js +0 -1
  15. package/node_modules/@aui.io/apollo-core/dist/src/config/index.js.map +1 -1
  16. package/node_modules/@aui.io/apollo-core/dist/src/config/types.d.ts +0 -15
  17. package/node_modules/@aui.io/apollo-core/dist/src/index.d.ts +3 -3
  18. package/node_modules/@aui.io/apollo-core/dist/src/index.js +1 -1
  19. package/node_modules/@aui.io/apollo-core/dist/src/index.js.map +1 -1
  20. package/node_modules/@aui.io/apollo-core/dist/src/services/bundles.d.ts +11 -10
  21. package/node_modules/@aui.io/apollo-core/dist/src/services/bundles.js +35 -44
  22. package/node_modules/@aui.io/apollo-core/dist/src/services/bundles.js.map +1 -1
  23. package/node_modules/@aui.io/apollo-core/dist/src/services/env.service.js +6 -1
  24. package/node_modules/@aui.io/apollo-core/dist/src/services/env.service.js.map +1 -1
  25. package/node_modules/@aui.io/apollo-core/dist/src/skills/agents-page.d.ts +9 -10
  26. package/node_modules/@aui.io/apollo-core/dist/src/skills/agents-page.js +20 -25
  27. package/node_modules/@aui.io/apollo-core/dist/src/skills/agents-page.js.map +1 -1
  28. package/node_modules/@aui.io/apollo-core/dist/src/skills/install.d.ts +5 -5
  29. package/node_modules/@aui.io/apollo-core/dist/src/skills/install.js +5 -5
  30. package/node_modules/@aui.io/apollo-core/package.json +1 -1
  31. package/node_modules/@aui.io/apollo-tui/package.json +2 -2
  32. package/package.json +4 -4
@@ -18,11 +18,11 @@ export interface InstalledSkills {
18
18
  * Delete managed (`apollo-*`) skill packs, except the ids in `keep`.
19
19
  *
20
20
  * The other half of install: writing alone leaves a checkout carrying every
21
- * pack any runtime EVER served it, so a skill the engine retired — or a
22
- * checkout switched to the headless profile, where the desired set is empty —
23
- * keeps teaching a contract nothing enforces. Sweeps every IDE directory by
24
- * default, not just the targets being installed, because a stale pack
25
- * misleads whichever IDE reads it.
21
+ * pack any runtime EVER served it, so a skill the engine retired — or one the
22
+ * public floor stopped serving (a pre-floor checkout still holding internal
23
+ * packs) — keeps teaching a contract nothing enforces. Sweeps every IDE
24
+ * directory by default, not just the targets being installed, because a stale
25
+ * pack misleads whichever IDE reads it.
26
26
  */
27
27
  export declare function removeManagedSkills(projectRoot: string, keep?: ReadonlySet<string>, targets?: SkillTarget[]): Promise<string[]>;
28
28
  /**
@@ -41,11 +41,11 @@ async function fetchSkillFiles(client, skill) {
41
41
  * Delete managed (`apollo-*`) skill packs, except the ids in `keep`.
42
42
  *
43
43
  * The other half of install: writing alone leaves a checkout carrying every
44
- * pack any runtime EVER served it, so a skill the engine retired — or a
45
- * checkout switched to the headless profile, where the desired set is empty —
46
- * keeps teaching a contract nothing enforces. Sweeps every IDE directory by
47
- * default, not just the targets being installed, because a stale pack
48
- * misleads whichever IDE reads it.
44
+ * pack any runtime EVER served it, so a skill the engine retired — or one the
45
+ * public floor stopped serving (a pre-floor checkout still holding internal
46
+ * packs) — keeps teaching a contract nothing enforces. Sweeps every IDE
47
+ * directory by default, not just the targets being installed, because a stale
48
+ * pack misleads whichever IDE reads it.
49
49
  */
50
50
  export async function removeManagedSkills(projectRoot, keep = new Set(), targets = ALL_SKILL_TARGETS) {
51
51
  const removed = new Set();
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aui.io/apollo-core",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "Shared Apollo console core — API clients, config, and services",
5
5
  "type": "module",
6
6
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aui.io/apollo-tui",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "Interactive Apollo operator TUI built on OpenTUI",
5
5
  "type": "module",
6
6
  "engines": {
@@ -35,7 +35,7 @@
35
35
  "start": "node ./bin/apollo-tui.js"
36
36
  },
37
37
  "dependencies": {
38
- "@aui.io/apollo-core": "0.1.41",
38
+ "@aui.io/apollo-core": "0.1.43",
39
39
  "@opentui/core": "^0.4.5",
40
40
  "@opentui/react": "^0.4.5",
41
41
  "diff": "8.0.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aui.io/apollo",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "Apollo operator console — CLI + interactive TUI",
5
5
  "type": "module",
6
6
  "engines": {
@@ -31,9 +31,9 @@
31
31
  "postpack": "node ./scripts/clean-bundle.mjs"
32
32
  },
33
33
  "dependencies": {
34
- "@aui.io/apollo-core": "0.1.41",
35
- "@aui.io/apollo-cli": "0.1.41",
36
- "@aui.io/apollo-tui": "0.1.41",
34
+ "@aui.io/apollo-core": "0.1.43",
35
+ "@aui.io/apollo-cli": "0.1.43",
36
+ "@aui.io/apollo-tui": "0.1.43",
37
37
  "picocolors": "^1.1.1",
38
38
  "yaml": "^2.9.0",
39
39
  "commander": "^14.0.3",