@moltnet/guard 1.0.0 → 1.0.1

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "moltguard",
2
+ "id": "guard",
3
3
  "name": "MoltGuard",
4
4
  "version": "1.0.0",
5
5
  "description": "Security & observability for AI agents. See what your agent is thinking, approve risky actions, control it remotely.",
package/index.ts CHANGED
@@ -249,7 +249,7 @@ function getToolRisk(toolName: string, params: Record<string, unknown>): 'low' |
249
249
  }
250
250
 
251
251
  const register: PluginRegisterFn = (api: PluginAPI) => {
252
- const config = api.config.plugins?.entries?.moltguard?.config as MoltGuardConfig | undefined;
252
+ const config = api.config.plugins?.entries?.guard?.config as MoltGuardConfig | undefined;
253
253
 
254
254
  if (!config?.token) {
255
255
  console.log('[moltguard] No token configured. Get one at https://guard.moltnet.ai');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moltnet/guard",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MoltGuard plugin for Clawdbot - Security & observability for AI agents",
5
5
  "main": "index.ts",
6
6
  "type": "module",