@cdot65/prisma-airs-cli 7.0.1 → 7.1.3
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/README.md +1 -1
- package/dist/{chunk-KZRSHNUC.js → chunk-T4S4FMTZ.js} +5 -0
- package/dist/cli/index.js +1281 -108
- package/dist/index.d.ts +9 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -129,7 +129,7 @@ The full guides, complete CLI reference, configuration, and architecture live on
|
|
|
129
129
|
|
|
130
130
|
## Configuration
|
|
131
131
|
|
|
132
|
-
Configuration lives only in tenant files managed by `airs-cli tenant`; environment variables are not read. Every management-plane product (Management, DLP, Red Team, Model Security, AgentGuard, AI Gateway) authenticates with the tenant's single SCM OAuth credential set (`mgmtClientId`, `mgmtClientSecret`, `mgmtTsgId`); scanning adds `airsApiKey
|
|
132
|
+
Configuration lives only in tenant files managed by `airs-cli tenant`; environment variables are not read. Every management-plane product (Management, DLP, Red Team, Model Security, AgentGuard, AI Gateway) authenticates with the tenant's single SCM OAuth credential set (`mgmtClientId`, `mgmtClientSecret`, `mgmtTsgId`); scanning adds `airsApiKey`, and `airs-cli redteam judge` adds `typesafeApiKey` (TypeSafe Jev; `typesafeBaseUrl` and `typesafeModel` are optional). Set `defaultOutput` with `airs-cli tenant set <name> defaultOutput json` to choose a default read format. See the [configuration guide](https://cdot65.github.io/prisma-airs-cli/getting-started/configuration/) for the full list.
|
|
133
133
|
|
|
134
134
|
## License
|
|
135
135
|
|
|
@@ -2276,6 +2276,11 @@ var ConfigSchema = z.object({
|
|
|
2276
2276
|
aiGwInferenceApiKey: z.string().optional(),
|
|
2277
2277
|
aiGwInferenceModel: z.string().optional(),
|
|
2278
2278
|
aiGwEmbeddingModel: z.string().optional(),
|
|
2279
|
+
// TypeSafe Jev judge for `redteam judge` — a hosted key, never SCM OAuth.
|
|
2280
|
+
// Defaults (https://api.typesafe.ai, jev-latest) are applied in code.
|
|
2281
|
+
typesafeApiKey: z.string().optional(),
|
|
2282
|
+
typesafeBaseUrl: z.string().url().optional(),
|
|
2283
|
+
typesafeModel: z.string().optional(),
|
|
2279
2284
|
// Tuning
|
|
2280
2285
|
scanConcurrency: z.coerce.number().int().min(1).max(20).default(5),
|
|
2281
2286
|
defaultOutput: z.enum(["pretty", "table", "markdown", "csv", "json", "yaml"]).optional(),
|