@cdot65/prisma-airs 0.2.4 → 0.2.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/index.ts +3 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -1
package/index.ts
CHANGED
|
@@ -171,7 +171,7 @@ export default function register(api: PluginApi): void {
|
|
|
171
171
|
const hasApiKey = isConfigured(cfg.api_key);
|
|
172
172
|
respond(true, {
|
|
173
173
|
plugin: "prisma-airs",
|
|
174
|
-
version: "0.2.
|
|
174
|
+
version: "0.2.5",
|
|
175
175
|
config: {
|
|
176
176
|
profile_name: cfg.profile_name ?? "default",
|
|
177
177
|
app_name: cfg.app_name ?? "openclaw",
|
|
@@ -271,7 +271,7 @@ export default function register(api: PluginApi): void {
|
|
|
271
271
|
const hasKey = isConfigured(cfg.api_key);
|
|
272
272
|
console.log("Prisma AIRS Plugin Status");
|
|
273
273
|
console.log("-------------------------");
|
|
274
|
-
console.log(`Version: 0.2.
|
|
274
|
+
console.log(`Version: 0.2.5`);
|
|
275
275
|
console.log(`Profile: ${cfg.profile_name ?? "default"}`);
|
|
276
276
|
console.log(`App Name: ${cfg.app_name ?? "openclaw"}`);
|
|
277
277
|
console.log(`Reminder: ${cfg.reminder_enabled ?? true}`);
|
|
@@ -322,7 +322,7 @@ export default function register(api: PluginApi): void {
|
|
|
322
322
|
// Export plugin metadata for discovery
|
|
323
323
|
export const id = "prisma-airs";
|
|
324
324
|
export const name = "Prisma AIRS Security";
|
|
325
|
-
export const version = "0.2.
|
|
325
|
+
export const version = "0.2.5";
|
|
326
326
|
|
|
327
327
|
// Re-export scanner types and functions
|
|
328
328
|
export { scan, isConfigured } from "./src/scanner";
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "prisma-airs",
|
|
3
3
|
"name": "Prisma AIRS Security",
|
|
4
4
|
"description": "AI Runtime Security - full AIRS detection suite with audit logging, context injection, outbound blocking, and tool gating",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.5",
|
|
6
6
|
"entrypoint": "index.ts",
|
|
7
7
|
"hooks": [
|
|
8
8
|
"hooks/prisma-airs-guard",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cdot65/prisma-airs",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Prisma AIRS (AI Runtime Security) plugin for OpenClaw - Full security suite with audit logging, context injection, outbound blocking, and tool gating",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"@types/node": "^25.1.0",
|
|
60
60
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
61
61
|
"@typescript-eslint/parser": "^8.0.0",
|
|
62
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
62
63
|
"eslint": "^9.0.0",
|
|
63
64
|
"husky": "^9.0.0",
|
|
64
65
|
"lint-staged": "^15.0.0",
|