@happyvertical/smrt-cli 0.36.7 → 0.37.0
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.
|
@@ -415,7 +415,11 @@ async function loadManifest(manifestPath) {
|
|
|
415
415
|
return;
|
|
416
416
|
}
|
|
417
417
|
for (const [name, objectDef] of Object.entries(manifest.objects)) {
|
|
418
|
-
ObjectRegistry.registerFromManifest(
|
|
418
|
+
ObjectRegistry.registerFromManifest(
|
|
419
|
+
name,
|
|
420
|
+
objectDef,
|
|
421
|
+
manifest.packageName
|
|
422
|
+
);
|
|
419
423
|
}
|
|
420
424
|
}
|
|
421
425
|
async function autoDiscoverAndLoad(projectRoot = process.cwd()) {
|
package/dist/index.js
CHANGED
|
@@ -25,56 +25,56 @@ let _docsCommands = null;
|
|
|
25
25
|
let _playgroundCommands = null;
|
|
26
26
|
async function getGnodeCommands() {
|
|
27
27
|
if (!_gnodeCommands) {
|
|
28
|
-
const { gnodeCommands } = await import("./index-
|
|
28
|
+
const { gnodeCommands } = await import("./index-CZTaF6ei.js");
|
|
29
29
|
_gnodeCommands = gnodeCommands;
|
|
30
30
|
}
|
|
31
31
|
return _gnodeCommands;
|
|
32
32
|
}
|
|
33
33
|
async function getGitCommands() {
|
|
34
34
|
if (!_gitCommands) {
|
|
35
|
-
const { gitCommands } = await import("./index-
|
|
35
|
+
const { gitCommands } = await import("./index-CZTaF6ei.js");
|
|
36
36
|
_gitCommands = gitCommands;
|
|
37
37
|
}
|
|
38
38
|
return _gitCommands;
|
|
39
39
|
}
|
|
40
40
|
async function getGenerateCommands() {
|
|
41
41
|
if (!_generateCommands) {
|
|
42
|
-
const { generateCommands } = await import("./index-
|
|
42
|
+
const { generateCommands } = await import("./index-CZTaF6ei.js");
|
|
43
43
|
_generateCommands = generateCommands;
|
|
44
44
|
}
|
|
45
45
|
return _generateCommands;
|
|
46
46
|
}
|
|
47
47
|
async function getInitCommands() {
|
|
48
48
|
if (!_initCommands) {
|
|
49
|
-
const { initCommands } = await import("./index-
|
|
49
|
+
const { initCommands } = await import("./index-CZTaF6ei.js");
|
|
50
50
|
_initCommands = initCommands;
|
|
51
51
|
}
|
|
52
52
|
return _initCommands;
|
|
53
53
|
}
|
|
54
54
|
async function getUtilityCommands() {
|
|
55
55
|
if (!_utilityCommands) {
|
|
56
|
-
const { utilityCommands } = await import("./index-
|
|
56
|
+
const { utilityCommands } = await import("./index-CZTaF6ei.js");
|
|
57
57
|
_utilityCommands = utilityCommands;
|
|
58
58
|
}
|
|
59
59
|
return _utilityCommands;
|
|
60
60
|
}
|
|
61
61
|
async function getDispatchCommands() {
|
|
62
62
|
if (!_dispatchCommands) {
|
|
63
|
-
const { dispatchCommands } = await import("./index-
|
|
63
|
+
const { dispatchCommands } = await import("./index-CZTaF6ei.js");
|
|
64
64
|
_dispatchCommands = dispatchCommands;
|
|
65
65
|
}
|
|
66
66
|
return _dispatchCommands;
|
|
67
67
|
}
|
|
68
68
|
async function getDocsCommands() {
|
|
69
69
|
if (!_docsCommands) {
|
|
70
|
-
const { docsCommands } = await import("./index-
|
|
70
|
+
const { docsCommands } = await import("./index-CZTaF6ei.js");
|
|
71
71
|
_docsCommands = docsCommands;
|
|
72
72
|
}
|
|
73
73
|
return _docsCommands;
|
|
74
74
|
}
|
|
75
75
|
async function getPlaygroundCommands() {
|
|
76
76
|
if (!_playgroundCommands) {
|
|
77
|
-
const { playgroundCommands } = await import("./index-
|
|
77
|
+
const { playgroundCommands } = await import("./index-CZTaF6ei.js");
|
|
78
78
|
_playgroundCommands = playgroundCommands;
|
|
79
79
|
}
|
|
80
80
|
return _playgroundCommands;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@happyvertical/smrt-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.37.0",
|
|
4
4
|
"description": "Developer CLI for SMRT framework - introspection, testing, and project management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"acorn": "^8.15.0",
|
|
33
33
|
"fast-glob": "3.3.3",
|
|
34
34
|
"tar": "^7.5.2",
|
|
35
|
-
"@happyvertical/smrt-
|
|
36
|
-
"@happyvertical/smrt-
|
|
37
|
-
"@happyvertical/smrt-core": "0.
|
|
38
|
-
"@happyvertical/smrt-dev-mcp": "0.
|
|
39
|
-
"@happyvertical/smrt-playground": "0.
|
|
40
|
-
"@happyvertical/smrt-types": "0.
|
|
35
|
+
"@happyvertical/smrt-agents": "0.37.0",
|
|
36
|
+
"@happyvertical/smrt-config": "0.37.0",
|
|
37
|
+
"@happyvertical/smrt-core": "0.37.0",
|
|
38
|
+
"@happyvertical/smrt-dev-mcp": "0.37.0",
|
|
39
|
+
"@happyvertical/smrt-playground": "0.37.0",
|
|
40
|
+
"@happyvertical/smrt-types": "0.37.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "25.0.9",
|