@highflame/policy 2.1.8 → 2.1.10

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.
@@ -349,6 +349,9 @@ action read_file appliesTo {
349
349
  session_max_pii_score?: Long,
350
350
  session_max_secret_score?: Long,
351
351
  session_cumulative_risk_score?: Long,
352
+
353
+ // --- Agent Security ---
354
+ indirect_injection_score?: Long, // Indirect injection via file content
352
355
  },
353
356
  };
354
357
 
@@ -397,6 +400,9 @@ action write_file appliesTo {
397
400
  session_max_pii_score?: Long,
398
401
  session_max_secret_score?: Long,
399
402
  session_cumulative_risk_score?: Long,
403
+
404
+ // --- Agent Security ---
405
+ indirect_injection_score?: Long, // Indirect injection via file content
400
406
  },
401
407
  };
402
408
 
@@ -2,7 +2,7 @@
2
2
  * Overwatch policy category identifiers.
3
3
  * Maps to UI tab names in Studio.
4
4
  */
5
- export type OverwatchCategory = 'secrets' | 'pii' | 'semantic' | 'tools' | 'organization' | 'trust_safety' | 'agent_security' | 'encoding' | 'behavioral';
5
+ export type OverwatchCategory = 'secrets' | 'pii' | 'semantic' | 'tools' | 'organization';
6
6
  /**
7
7
  * Category metadata for UI display.
8
8
  */