create-metamynd-agent 0.3.4 → 0.3.6
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/index.mjs +5 -1
- package/package.json +8 -3
package/index.mjs
CHANGED
|
@@ -429,7 +429,11 @@ function scaffoldProject({ outDir, config, slug, scope, perTxnMax, sandbox, forc
|
|
|
429
429
|
console.log(` Next:`);
|
|
430
430
|
console.log(c.cyan(` cd ${rel}`));
|
|
431
431
|
console.log(c.cyan(` npm install`));
|
|
432
|
-
|
|
432
|
+
// The example runs FOUR attempts. This summary promised three, so the one carrying the
|
|
433
|
+
// whole argument — the agent asking to raise its own limit — arrived unannounced.
|
|
434
|
+
console.log(c.cyan(` npm start`) + c.dim(' → ALLOW · BLOCK (over cap) · ESCALATE (high risk)'));
|
|
435
|
+
console.log(c.dim(' · BLOCK (the agent asking to raise its OWN limit)\n'));
|
|
436
|
+
console.log(c.cyan(` npm test`) + c.dim(' → assert it CANNOT exceed its mandate. Put this in CI.\n'));
|
|
433
437
|
console.log(c.dim(` Change the rules any time in the dashboard (Legal Entity → SOPs) — no redeploy.\n`));
|
|
434
438
|
}
|
|
435
439
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-metamynd-agent",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "Scaffold a MetaMynd/AgentSafe-governed AI agent in one command
|
|
3
|
+
"version": "0.3.6",
|
|
4
|
+
"description": "Scaffold a MetaMynd/AgentSafe-governed AI agent in one command — logs in, provisions the agent (identity + mandate + SOP + Standards) in a single call, writes agent.metamynd.json, and drops a runnable example.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-metamynd-agent": "index.mjs"
|
|
@@ -28,8 +28,13 @@
|
|
|
28
28
|
"author": "MetaMynd",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"homepage": "https://metamynd.ai/developers/quickstart",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/Metamynd/agentsafe-guard.git",
|
|
34
|
+
"directory": "packages/create-metamynd-agent"
|
|
35
|
+
},
|
|
31
36
|
"bugs": {
|
|
32
|
-
"url": "https://
|
|
37
|
+
"url": "https://github.com/Metamynd/agentsafe-guard/issues"
|
|
33
38
|
},
|
|
34
39
|
"publishConfig": {
|
|
35
40
|
"access": "public"
|