-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagentops.config.example.json
More file actions
31 lines (31 loc) · 984 Bytes
/
Copy pathagentops.config.example.json
File metadata and controls
31 lines (31 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"schemaVersion": "agentops.config.v1",
"privacy": {
"storeRawPayload": false,
"hashRawPayload": true,
"redactBeforeStore": true
},
"risk": {
"largeChurnLines": 500,
"sensitivePaths": [".env", ".npmrc", ".pypirc", "id_rsa", "id_ed25519", "secrets.json", "secrets.yaml", "credentials"],
"productionPathPatterns": ["prod", "production", "terraform", "helm", "k8s", "kubernetes", "deploy", "release"]
},
"evidence": {
"verificationCommands": ["test", "check", "lint", "typecheck", "verify", "build"]
},
"gates": {
"requireVerification": true,
"requiredVerificationCommands": [],
"maxHighSeverityRisks": 0,
"allowUnsupportedFinalClaims": false,
"maxGeneratedFileChurnLines": 0,
"generatedFilePatterns": ["generated", "dist", "build"]
},
"suppressions": [
{
"category": "large-churn",
"path": "generated/example.ts",
"reason": "Synthetic example: generated file churn is expected."
}
]
}