veryfront 0.0.30 → 0.0.31
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/ai/index.js +2 -1
- package/dist/ai/index.js.map +2 -2
- package/dist/cli.js +812 -168
- package/dist/components.js +1 -1
- package/dist/components.js.map +1 -1
- package/dist/data.js +1 -1
- package/dist/data.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/ai/index.js
CHANGED
|
@@ -1709,7 +1709,7 @@ var BYTES_PER_MB = 1024 * 1024;
|
|
|
1709
1709
|
// deno.json
|
|
1710
1710
|
var deno_default = {
|
|
1711
1711
|
name: "veryfront",
|
|
1712
|
-
version: "0.0.
|
|
1712
|
+
version: "0.0.31",
|
|
1713
1713
|
nodeModulesDir: "auto",
|
|
1714
1714
|
exports: {
|
|
1715
1715
|
".": "./src/index.ts",
|
|
@@ -4039,6 +4039,7 @@ async function discoverAgents(dir, result, context, verbose) {
|
|
|
4039
4039
|
continue;
|
|
4040
4040
|
}
|
|
4041
4041
|
const id = agent2.id || filenameToId(file);
|
|
4042
|
+
registerAgent(id, agent2);
|
|
4042
4043
|
result.agents.set(id, agent2);
|
|
4043
4044
|
if (verbose) {
|
|
4044
4045
|
agentLogger.info(`[Discovery] Registered agent: ${id}`);
|