llm-orchestrator 1.0.6 → 1.0.7
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-orchestrator",
|
|
3
3
|
"description": "Write /task once — it plans the work, shards it across parallel subagents, gates every phase and verifies before claiming done. Claude Code, Codex, OpenCode, Kilo.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.7",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Bogdan-Gabriel Torcescu",
|
|
7
7
|
"url": "https://www.linkedin.com/in/bogdantorcescu/"
|
package/lib/installation.mjs
CHANGED
|
@@ -447,7 +447,7 @@ export async function planUninstall(input) {
|
|
|
447
447
|
const runtimeManifestPath = runtimeManifestPathFor({stateRoot, skillsRoot});
|
|
448
448
|
const manifest = await readManifest(manifestPath);
|
|
449
449
|
const runtimeManifest = await readRuntimeManifest(runtimeManifestPath);
|
|
450
|
-
if (!manifest) return {conflicts: [], changes: [], preserved: [],
|
|
450
|
+
if (!manifest) return {conflicts: [], changes: [], preserved: [], retained_shared_runtime: (runtimeManifest?.files ?? []).map(({path}) => path), manifestPath};
|
|
451
451
|
const changes = [];
|
|
452
452
|
const preserved = [];
|
|
453
453
|
for (const span of manifest.spans) {
|
|
@@ -472,7 +472,7 @@ export async function planUninstall(input) {
|
|
|
472
472
|
conflicts: [],
|
|
473
473
|
changes,
|
|
474
474
|
preserved: [...new Set(preserved)],
|
|
475
|
-
|
|
475
|
+
retained_shared_runtime: [...new Set([...(runtimeManifest?.files ?? []).map(({path}) => path), ...manifest.files.filter(({scope}) => scope === 'skills').map(({path}) => path)])],
|
|
476
476
|
manifestPath,
|
|
477
477
|
};
|
|
478
478
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-orchestrator",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Write /task once — it plans the work, shards it across parallel subagents, gates every phase and verifies before claiming done. Claude Code, Codex, OpenCode, Kilo.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|