@cdot65/prisma-airs 0.3.0-alpha.1 → 0.3.0

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 CHANGED
@@ -419,7 +419,7 @@ export default function register(api: PluginApi): void {
419
419
  const hasApiKey = isConfigured(cfg.api_key);
420
420
  respond(true, {
421
421
  plugin: "prisma-airs",
422
- version: "0.3.0-alpha.1",
422
+ version: "0.3.0",
423
423
  modes,
424
424
  config: {
425
425
  profile_name: cfg.profile_name ?? "default",
@@ -511,7 +511,7 @@ export default function register(api: PluginApi): void {
511
511
  const hasKey = isConfigured(cfg.api_key);
512
512
  console.log("Prisma AIRS Plugin Status");
513
513
  console.log("-------------------------");
514
- console.log(`Version: 0.3.0-alpha.1`);
514
+ console.log(`Version: 0.3.0`);
515
515
  console.log(`Profile: ${cfg.profile_name ?? "default"}`);
516
516
  console.log(`App Name: ${cfg.app_name ?? "openclaw"}`);
517
517
  console.log(`Modes:`);
@@ -567,7 +567,7 @@ export default function register(api: PluginApi): void {
567
567
  // Export plugin metadata for discovery
568
568
  export const id = "prisma-airs";
569
569
  export const name = "Prisma AIRS Security";
570
- export const version = "0.3.0-alpha.1";
570
+ export const version = "0.3.0";
571
571
 
572
572
  // Re-export scanner types and functions
573
573
  export { scan, isConfigured } from "./src/scanner";
@@ -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.3.0-alpha.1",
5
+ "version": "0.3.0",
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.3.0-alpha.1",
3
+ "version": "0.3.0",
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",