@jaggerxtrm/specialists 3.6.18 → 3.6.19
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/dist/index.js +10 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25010,12 +25010,13 @@ function copyCanonicalSpecialists(cwd) {
|
|
|
25010
25010
|
mkdirSync4(targetDir, { recursive: true });
|
|
25011
25011
|
}
|
|
25012
25012
|
let copied = 0;
|
|
25013
|
-
let
|
|
25013
|
+
let refreshed = 0;
|
|
25014
25014
|
for (const file of files) {
|
|
25015
25015
|
const src = join10(sourceDir, file);
|
|
25016
25016
|
const dest = join10(targetDir, file);
|
|
25017
25017
|
if (existsSync9(dest)) {
|
|
25018
|
-
|
|
25018
|
+
copyFileSync(src, dest);
|
|
25019
|
+
refreshed++;
|
|
25019
25020
|
} else {
|
|
25020
25021
|
copyFileSync(src, dest);
|
|
25021
25022
|
copied++;
|
|
@@ -25024,8 +25025,8 @@ function copyCanonicalSpecialists(cwd) {
|
|
|
25024
25025
|
if (copied > 0) {
|
|
25025
25026
|
ok(`copied ${copied} canonical specialist${copied === 1 ? "" : "s"} to .specialists/default/`);
|
|
25026
25027
|
}
|
|
25027
|
-
if (
|
|
25028
|
-
|
|
25028
|
+
if (refreshed > 0) {
|
|
25029
|
+
ok(`re-synced ${refreshed} canonical specialist${refreshed === 1 ? "" : "s"} in .specialists/default/`);
|
|
25029
25030
|
}
|
|
25030
25031
|
}
|
|
25031
25032
|
function copyCanonicalNodeConfigs(cwd) {
|
|
@@ -25044,12 +25045,13 @@ function copyCanonicalNodeConfigs(cwd) {
|
|
|
25044
25045
|
mkdirSync4(targetDir, { recursive: true });
|
|
25045
25046
|
}
|
|
25046
25047
|
let copied = 0;
|
|
25047
|
-
let
|
|
25048
|
+
let refreshed = 0;
|
|
25048
25049
|
for (const file of files) {
|
|
25049
25050
|
const src = join10(sourceDir, file);
|
|
25050
25051
|
const dest = join10(targetDir, file);
|
|
25051
25052
|
if (existsSync9(dest)) {
|
|
25052
|
-
|
|
25053
|
+
copyFileSync(src, dest);
|
|
25054
|
+
refreshed++;
|
|
25053
25055
|
} else {
|
|
25054
25056
|
copyFileSync(src, dest);
|
|
25055
25057
|
copied++;
|
|
@@ -25058,8 +25060,8 @@ function copyCanonicalNodeConfigs(cwd) {
|
|
|
25058
25060
|
if (copied > 0) {
|
|
25059
25061
|
ok(`copied ${copied} canonical node config${copied === 1 ? "" : "s"} to .specialists/default/nodes/`);
|
|
25060
25062
|
}
|
|
25061
|
-
if (
|
|
25062
|
-
|
|
25063
|
+
if (refreshed > 0) {
|
|
25064
|
+
ok(`re-synced ${refreshed} canonical node config${refreshed === 1 ? "" : "s"} in .specialists/default/nodes/`);
|
|
25063
25065
|
}
|
|
25064
25066
|
}
|
|
25065
25067
|
function installProjectHooks(cwd) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jaggerxtrm/specialists",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.19",
|
|
4
4
|
"description": "OmniSpecialist — 7-tool MCP orchestration layer powered by the Specialist System. Discover and execute .specialist.yaml files across project/user/system scopes via pi.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|