fullcourtdefense-cli 1.14.7 → 1.14.8

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.
@@ -227,7 +227,7 @@ const RISK_RULES = [
227
227
  { test: /stripe|payment|refund|payout|invoice|billing/i, level: 'critical', tag: 'payments' },
228
228
  { test: /filesystem|file[-_]?system|\bfs\b|read[-_]?file|write[-_]?file/i, level: 'high', tag: 'filesystem' },
229
229
  { test: /github|gitlab|bitbucket/i, level: 'high', tag: 'source-control' },
230
- { test: /aws|gcp|azure|cloud|kubernetes|k8s|terraform/i, level: 'high', tag: 'cloud-infra' },
230
+ { test: /aws|gcp|azure|cloud|kubernetes|k8s|terraform|docker|container|podman/i, level: 'high', tag: 'cloud-infra' },
231
231
  { test: /slack|email|gmail|smtp|sendgrid|twilio|notification/i, level: 'high', tag: 'messaging' },
232
232
  { test: /browser|puppeteer|playwright|fetch|http[-_]?request|web[-_]?search/i, level: 'medium', tag: 'web/network' },
233
233
  { test: /drive|gdrive|dropbox|s3|storage|notion|confluence/i, level: 'medium', tag: 'data-store' },
@@ -39,6 +39,51 @@ const KNOWN = [
39
39
  recommendGateway: true,
40
40
  },
41
41
  },
42
+ {
43
+ match: /docker|container|podman/i,
44
+ info: {
45
+ title: 'Container runtime',
46
+ description: 'Controls local containers or registry access from the AI client.',
47
+ category: 'other',
48
+ recommendGateway: true,
49
+ },
50
+ },
51
+ {
52
+ match: /kubernetes|k8s/i,
53
+ info: {
54
+ title: 'Kubernetes',
55
+ description: 'Controls Kubernetes resources from the AI client.',
56
+ category: 'other',
57
+ recommendGateway: true,
58
+ },
59
+ },
60
+ {
61
+ match: /aws|gcp|azure|terraform|cloud/i,
62
+ info: {
63
+ title: 'Cloud infrastructure',
64
+ description: 'Controls cloud infrastructure or deployment resources.',
65
+ category: 'other',
66
+ recommendGateway: true,
67
+ },
68
+ },
69
+ {
70
+ match: /slack|gmail|email|sendgrid|twilio/i,
71
+ info: {
72
+ title: 'Messaging',
73
+ description: 'Can send messages or notifications through external services.',
74
+ category: 'other',
75
+ recommendGateway: true,
76
+ },
77
+ },
78
+ {
79
+ match: /memory/i,
80
+ info: {
81
+ title: 'Memory',
82
+ description: 'Stores local agent memory; review content, but this is usually lower risk than shell, database, or cloud tools.',
83
+ category: 'other',
84
+ recommendGateway: false,
85
+ },
86
+ },
42
87
  {
43
88
  match: /agentguard-gateway|fullcourtdefense-gateway|fcd-gateway/i,
44
89
  info: {
package/dist/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "1.14.7"
2
+ "version": "1.14.8"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullcourtdefense-cli",
3
- "version": "1.14.7",
3
+ "version": "1.14.8",
4
4
  "description": "Full Court Defense CLI — security scanning for AI agents from your terminal",
5
5
  "main": "dist/index.js",
6
6
  "bin": {