@mnemom/mnemom 0.14.4 → 0.14.5
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/lib/api.js +4 -0
- package/package.json +1 -1
package/dist/lib/api.js
CHANGED
|
@@ -924,6 +924,10 @@ export async function resolveAgentId(agentName) {
|
|
|
924
924
|
}
|
|
925
925
|
console.error(`\nAgent not found: ${name}`);
|
|
926
926
|
console.error("List your agents with: mnemom agents\n");
|
|
927
|
+
console.error(`\nThis can happen when the agent was auto-created by the gateway and has not been claimed to your account yet.`);
|
|
928
|
+
console.error(`To claim it, run: mnemom agents claim <agent-id> --name ${name} --key <your-provider-key>`);
|
|
929
|
+
console.error(`The <agent-id> (mnm-...) is the X-Mnemom-Agent value returned in the gateway response headers.`);
|
|
930
|
+
console.error(`See: https://docs.mnemom.ai/quickstart/gateway\n`);
|
|
927
931
|
process.exit(1);
|
|
928
932
|
}
|
|
929
933
|
/** GET /v1/postures — list visible postures. */
|