@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.
- package/README.md +2 -2
- package/node_modules/@aui.io/apollo-cli/dist/src/commands/auth.js +4 -7
- package/node_modules/@aui.io/apollo-cli/dist/src/commands/auth.js.map +1 -1
- package/node_modules/@aui.io/apollo-cli/dist/src/commands/bundles.js +38 -46
- package/node_modules/@aui.io/apollo-cli/dist/src/commands/bundles.js.map +1 -1
- package/node_modules/@aui.io/apollo-cli/dist/src/commands/operate.js +1 -9
- package/node_modules/@aui.io/apollo-cli/dist/src/commands/operate.js.map +1 -1
- package/node_modules/@aui.io/apollo-cli/package.json +3 -3
- package/node_modules/@aui.io/apollo-core/dist/src/api/runtime-api.d.ts +19 -28
- package/node_modules/@aui.io/apollo-core/dist/src/api/runtime-api.js +28 -17
- package/node_modules/@aui.io/apollo-core/dist/src/api/runtime-api.js.map +1 -1
- package/node_modules/@aui.io/apollo-core/dist/src/bundle/build-area.js +2 -1
- package/node_modules/@aui.io/apollo-core/dist/src/bundle/build-area.js.map +1 -1
- package/node_modules/@aui.io/apollo-core/dist/src/config/index.js +0 -1
- package/node_modules/@aui.io/apollo-core/dist/src/config/index.js.map +1 -1
- package/node_modules/@aui.io/apollo-core/dist/src/config/types.d.ts +0 -15
- package/node_modules/@aui.io/apollo-core/dist/src/index.d.ts +3 -3
- package/node_modules/@aui.io/apollo-core/dist/src/index.js +1 -1
- package/node_modules/@aui.io/apollo-core/dist/src/index.js.map +1 -1
- package/node_modules/@aui.io/apollo-core/dist/src/services/bundles.d.ts +11 -10
- package/node_modules/@aui.io/apollo-core/dist/src/services/bundles.js +35 -44
- package/node_modules/@aui.io/apollo-core/dist/src/services/bundles.js.map +1 -1
- package/node_modules/@aui.io/apollo-core/dist/src/services/env.service.js +6 -1
- package/node_modules/@aui.io/apollo-core/dist/src/services/env.service.js.map +1 -1
- package/node_modules/@aui.io/apollo-core/dist/src/skills/agents-page.d.ts +9 -10
- package/node_modules/@aui.io/apollo-core/dist/src/skills/agents-page.js +20 -25
- package/node_modules/@aui.io/apollo-core/dist/src/skills/agents-page.js.map +1 -1
- package/node_modules/@aui.io/apollo-core/dist/src/skills/install.d.ts +5 -5
- package/node_modules/@aui.io/apollo-core/dist/src/skills/install.js +5 -5
- package/node_modules/@aui.io/apollo-core/package.json +1 -1
- package/node_modules/@aui.io/apollo-tui/package.json +2 -2
- 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
|
|
22
|
-
*
|
|
23
|
-
* keeps teaching a contract nothing enforces. Sweeps every IDE
|
|
24
|
-
* default, not just the targets being installed, because a stale
|
|
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
|
|
45
|
-
*
|
|
46
|
-
* keeps teaching a contract nothing enforces. Sweeps every IDE
|
|
47
|
-
* default, not just the targets being installed, because a stale
|
|
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-tui",
|
|
3
|
-
"version": "0.1.
|
|
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.
|
|
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.
|
|
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.
|
|
35
|
-
"@aui.io/apollo-cli": "0.1.
|
|
36
|
-
"@aui.io/apollo-tui": "0.1.
|
|
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",
|