@moltnet/guard 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/index.ts +3 -1
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -252,7 +252,9 @@ const register: PluginRegisterFn = (api: PluginAPI) => {
252
252
  const config = api.config.plugins?.entries?.guard?.config as MoltGuardConfig | undefined;
253
253
 
254
254
  if (!config?.token) {
255
- console.log('[moltguard] No token configured. Get one at https://guard.moltnet.ai');
255
+ console.log('[moltguard] No token configured.');
256
+ console.log('[moltguard] 👉 Get your token: https://guard.moltnet.ai/signup');
257
+ console.log('[moltguard] Then add to config: plugins.entries.guard.config.token');
256
258
  return;
257
259
  }
258
260
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moltnet/guard",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MoltGuard plugin for Clawdbot - Security & observability for AI agents",
5
5
  "main": "index.ts",
6
6
  "type": "module",