@gbasin/agentboard 0.2.13 → 0.2.14
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 +27 -0
- package/package.json +11 -7
package/README.md
CHANGED
|
@@ -102,6 +102,33 @@ bun run start
|
|
|
102
102
|
|
|
103
103
|
For persistent deployment on Linux, see [systemd/README.md](systemd/README.md).
|
|
104
104
|
|
|
105
|
+
## Dependency Risk Scanner
|
|
106
|
+
|
|
107
|
+
Use the built-in scanner to report security and maintenance risk for direct dependencies:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
bun run deps:risk
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Machine-readable output:
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
bun run deps:risk:json
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
Policy:
|
|
120
|
+
|
|
121
|
+
- Security risk comes from `bun audit --json` findings and is aggregated by severity (`low`, `moderate`, `high`, `critical`).
|
|
122
|
+
- Maintenance risk comes from `bun outdated` and classifies version lag as `major`, `minor`, or `patch` behind latest.
|
|
123
|
+
- Local default threshold is `high` (`high` + `critical` fail).
|
|
124
|
+
- CI enforces security threshold breaches at `critical` only (`bun run deps:risk:ci`) while existing upstream `high` advisories are tracked; maintenance findings are warnings for prioritization.
|
|
125
|
+
|
|
126
|
+
You can override the security threshold with `--threshold` (or `DEPENDENCY_RISK_FAIL_ON`):
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
bun run deps:risk -- --threshold moderate
|
|
130
|
+
```
|
|
131
|
+
|
|
105
132
|
## Keyboard Shortcuts
|
|
106
133
|
|
|
107
134
|
| Action | Mac | Windows/Linux |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gbasin/agentboard",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Web GUI for tmux optimized for AI agent TUIs",
|
|
6
6
|
"author": "gbasin",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"bun": ">=1.3.6"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@gbasin/agentboard-darwin-arm64": "0.2.
|
|
24
|
-
"@gbasin/agentboard-darwin-x64": "0.2.
|
|
25
|
-
"@gbasin/agentboard-linux-x64": "0.2.
|
|
26
|
-
"@gbasin/agentboard-linux-arm64": "0.2.
|
|
23
|
+
"@gbasin/agentboard-darwin-arm64": "0.2.14",
|
|
24
|
+
"@gbasin/agentboard-darwin-x64": "0.2.14",
|
|
25
|
+
"@gbasin/agentboard-linux-x64": "0.2.14",
|
|
26
|
+
"@gbasin/agentboard-linux-arm64": "0.2.14"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",
|
|
@@ -34,6 +34,9 @@
|
|
|
34
34
|
"lint": "oxlint .",
|
|
35
35
|
"typecheck": "tsc --noEmit",
|
|
36
36
|
"test": "bun scripts/test-runner.ts",
|
|
37
|
+
"deps:risk": "bun scripts/dependency-risk.ts",
|
|
38
|
+
"deps:risk:ci": "bun scripts/dependency-risk.ts --threshold critical",
|
|
39
|
+
"deps:risk:json": "bun scripts/dependency-risk.ts --json",
|
|
37
40
|
"test:coverage": "bun scripts/test-runner.ts --coverage --coverage-reporter=lcov --skip-isolated && bun run coverage:all",
|
|
38
41
|
"coverage:all": "bun scripts/coverage-all.ts",
|
|
39
42
|
"test:e2e": "playwright test",
|
|
@@ -70,7 +73,6 @@
|
|
|
70
73
|
},
|
|
71
74
|
"devDependencies": {
|
|
72
75
|
"@playwright/test": "^1.55.0",
|
|
73
|
-
"pino-pretty": "^13.1.3",
|
|
74
76
|
"@types/node": "^22.10.2",
|
|
75
77
|
"@types/react": "^18.3.12",
|
|
76
78
|
"@types/react-dom": "^18.3.1",
|
|
@@ -80,10 +82,12 @@
|
|
|
80
82
|
"bun-types": "^1.3.5",
|
|
81
83
|
"concurrently": "^8.2.2",
|
|
82
84
|
"oxlint": "^1.38.0",
|
|
85
|
+
"pino-pretty": "^13.1.3",
|
|
83
86
|
"postcss": "^8.4.49",
|
|
84
87
|
"react-test-renderer": "18.3.1",
|
|
85
88
|
"tailwindcss": "^3.4.14",
|
|
86
89
|
"typescript": "^5.7.2",
|
|
87
|
-
"vite": "^5.4.11"
|
|
90
|
+
"vite": "^5.4.11",
|
|
91
|
+
"vite-plugin-pwa": "^1.2.0"
|
|
88
92
|
}
|
|
89
93
|
}
|