agent-security-lens 0.1.0

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.
Files changed (81) hide show
  1. package/.env.example +10 -0
  2. package/.mcp/server.json +42 -0
  3. package/CHANGELOG.md +17 -0
  4. package/LICENSE +17 -0
  5. package/PRIVACY.md +37 -0
  6. package/README.md +150 -0
  7. package/RELEASE-MANIFEST.json +449 -0
  8. package/SECURITY.md +24 -0
  9. package/apps/mcp-server/agent-security-lens-mcp.mjs +441 -0
  10. package/bin/agent-security-lens.mjs +117 -0
  11. package/data/ecosystems/agent-candidates.json +230 -0
  12. package/data/intelligence/components.json +22989 -0
  13. package/data/intelligence/security-evaluation-standard.json +221 -0
  14. package/data/recommendations/core/recommendations.json +256 -0
  15. package/data/trust/signal-taxonomy.json +107 -0
  16. package/docs/asl-agent-component-safety-standard-v0.2.md +56 -0
  17. package/examples/dot-hermes/.hermes/config.json +17 -0
  18. package/examples/dot-openclaw/.openclaw/openclaw.json +17 -0
  19. package/examples/hermes-like/.env.example +2 -0
  20. package/examples/hermes-like/config.json +37 -0
  21. package/examples/hermes-like/optional-mcps/github-tools.json +8 -0
  22. package/examples/hermes-like/skills/openclaw-imports/browser-skill/SKILL.md +8 -0
  23. package/examples/openclaw-like/.env.example +2 -0
  24. package/examples/openclaw-like/AGENTS.md +7 -0
  25. package/examples/openclaw-like/openclaw.json +28 -0
  26. package/examples/openclaw-like/workspace/skills/browser-control/SKILL.md +8 -0
  27. package/llms.txt +25 -0
  28. package/package.json +50 -0
  29. package/profiles/generic-agent/profile.json +19 -0
  30. package/profiles/hermes-like/profile.json +23 -0
  31. package/profiles/mcp-server/profile.json +18 -0
  32. package/profiles/openclaw-like/profile.json +22 -0
  33. package/profiles/skill-runtime/profile.json +19 -0
  34. package/rule-packs/core/rules.json +82 -0
  35. package/rule-packs/hermes/rules.json +44 -0
  36. package/rule-packs/mcp/rules.json +65 -0
  37. package/rule-packs/openclaw/rules.json +46 -0
  38. package/rule-packs/skills/rules.json +45 -0
  39. package/schemas/agent-install-decision.schema.json +432 -0
  40. package/schemas/agent-usage-event.schema.json +45 -0
  41. package/schemas/assessment-result.schema.json +361 -0
  42. package/schemas/comparison-result.schema.json +113 -0
  43. package/schemas/component-alternative-graph.schema.json +187 -0
  44. package/schemas/component-intelligence.schema.json +93 -0
  45. package/schemas/decision-feedback.schema.json +49 -0
  46. package/schemas/ecosystem-candidate-registry.schema.json +98 -0
  47. package/schemas/profile.schema.json +65 -0
  48. package/schemas/recommendation-pack.schema.json +114 -0
  49. package/schemas/rule-pack.schema.json +113 -0
  50. package/schemas/trust-signal-taxonomy.schema.json +68 -0
  51. package/scripts/verify-examples.mjs +121 -0
  52. package/scripts/verify-mcp-server.mjs +278 -0
  53. package/scripts/verify-registry.mjs +264 -0
  54. package/server.json +42 -0
  55. package/src/assessment/assess.mjs +108 -0
  56. package/src/assessment/discover-targets.mjs +127 -0
  57. package/src/assessment/risk-domains.mjs +83 -0
  58. package/src/assessment/summarize.mjs +57 -0
  59. package/src/core/files.mjs +74 -0
  60. package/src/intelligence/cloud-client.mjs +260 -0
  61. package/src/intelligence/component-intelligence.mjs +358 -0
  62. package/src/intelligence/decision-engine.mjs +772 -0
  63. package/src/intelligence/finding-context.mjs +180 -0
  64. package/src/intelligence/safety-score-v0.2.mjs +294 -0
  65. package/src/observations/json-observations.mjs +211 -0
  66. package/src/observations/observation-rules.mjs +157 -0
  67. package/src/profiles/load-profiles.mjs +130 -0
  68. package/src/recommendations/component-alternative-graph.mjs +94 -0
  69. package/src/recommendations/load-recommendations.mjs +17 -0
  70. package/src/recommendations/match-recommendations.mjs +79 -0
  71. package/src/report/comparison-console.mjs +71 -0
  72. package/src/report/console.mjs +103 -0
  73. package/src/report/markdown.mjs +145 -0
  74. package/src/results/compare-results.mjs +106 -0
  75. package/src/results/save-result.mjs +29 -0
  76. package/src/rules/load-rules.mjs +22 -0
  77. package/src/rules/match-rules.mjs +99 -0
  78. package/src/rules/supersedes.mjs +39 -0
  79. package/src/store/assessment-store.mjs +78 -0
  80. package/src/trust/derive-trust-signals.mjs +73 -0
  81. package/src/trust/load-trust-signals.mjs +17 -0
@@ -0,0 +1,449 @@
1
+ {
2
+ "schema_version": "0.1.0",
3
+ "package": "agent-security-lens",
4
+ "version": "0.1.0",
5
+ "generated_at": "2026-06-15T10:17:03.672Z",
6
+ "source": "ASL verified public release exporter",
7
+ "files": [
8
+ {
9
+ "path": ".env.example",
10
+ "bytes": 270,
11
+ "sha256": "5a933f6d2a954f7438b89418631425bdcb0d2f5d53acc129a221282c976caef3"
12
+ },
13
+ {
14
+ "path": ".github/ISSUE_TEMPLATE/bug.yml",
15
+ "bytes": 1066,
16
+ "sha256": "1db083d1c964c64c338e98bea8b47a075648c57d184389a9037e9a69040b8078"
17
+ },
18
+ {
19
+ "path": ".github/ISSUE_TEMPLATE/profile-request.yml",
20
+ "bytes": 1053,
21
+ "sha256": "56bde2135ab1632317932f4d407f1816e703ce79cd262c341e81274d0a916360"
22
+ },
23
+ {
24
+ "path": ".github/PULL_REQUEST_TEMPLATE.md",
25
+ "bytes": 480,
26
+ "sha256": "9f8a30622c06d44de6b599a1833b8add04e4e4ca8dff3baf65565910fc5a0746"
27
+ },
28
+ {
29
+ "path": ".github/workflows/ci.yml",
30
+ "bytes": 444,
31
+ "sha256": "86ac5975ffafc51f4045fbe6cb9959f938fa52c0ed59d87f294d8d701ab01a50"
32
+ },
33
+ {
34
+ "path": ".gitignore",
35
+ "bytes": 80,
36
+ "sha256": "f2735d6dfed0a7ba04b25dbde8d23782664d4da2d53983341da6e443615c7a7f"
37
+ },
38
+ {
39
+ "path": ".mcp/server.json",
40
+ "bytes": 1261,
41
+ "sha256": "b8bd6fabc24bbe8bec904d4093c7506574c97ad5d8c344917144934904feba26"
42
+ },
43
+ {
44
+ "path": ".npmignore",
45
+ "bytes": 124,
46
+ "sha256": "ff387a29e97fb85275d4e1ab382dc09fcd441a0ab57c8ea73a7f576ca6395e69"
47
+ },
48
+ {
49
+ "path": "CHANGELOG.md",
50
+ "bytes": 583,
51
+ "sha256": "8a2b684447e6adc75d860fd962802d685329e110d359a6e6ca0045b2e12fd1db"
52
+ },
53
+ {
54
+ "path": "CODE_OF_CONDUCT.md",
55
+ "bytes": 290,
56
+ "sha256": "d052054c81beb553e4a9e8cf58157adb595d39ec563ed8c39fd36421999ba6c6"
57
+ },
58
+ {
59
+ "path": "CONTRIBUTING.md",
60
+ "bytes": 620,
61
+ "sha256": "b74ec3539a56b9af93cb25e59cdcb75ef1c9125611552d4bd6f7764d283e8736"
62
+ },
63
+ {
64
+ "path": "LICENSE",
65
+ "bytes": 645,
66
+ "sha256": "d750ed082c1d5d318d030520ba19bc8f1eac5e148a28fd1a8a950f82b8bc6b5b"
67
+ },
68
+ {
69
+ "path": "PRIVACY.md",
70
+ "bytes": 1293,
71
+ "sha256": "4ec07bb4bd0c88d8dcf4ca482fbaa8a40e4a853d6acebcf4398241cef92ecde2"
72
+ },
73
+ {
74
+ "path": "README.md",
75
+ "bytes": 4898,
76
+ "sha256": "51fb4da9a0888d824d9a62366eb303987daedcef90aa8cd4a810847513852053"
77
+ },
78
+ {
79
+ "path": "SECURITY.md",
80
+ "bytes": 801,
81
+ "sha256": "bbff0cba45f731a9fffe917190c644e5fc0346126069f244d5b1cdb5a4807102"
82
+ },
83
+ {
84
+ "path": "apps/mcp-server/agent-security-lens-mcp.mjs",
85
+ "bytes": 15239,
86
+ "sha256": "612a1c12ed4a646d9208e8393ac0964b89b6034f5559d32f23a9217f1ff37376"
87
+ },
88
+ {
89
+ "path": "bin/agent-security-lens.mjs",
90
+ "bytes": 3259,
91
+ "sha256": "1d3c14cb867dc4643de59667fb0377811bb2739f280b187caca207f0c476ad77"
92
+ },
93
+ {
94
+ "path": "data/ecosystems/agent-candidates.json",
95
+ "bytes": 7881,
96
+ "sha256": "3f47fd93d89d1227195ba1b7cd2b604e5cff6a7f9e443ac3c58bef699190e0cf"
97
+ },
98
+ {
99
+ "path": "data/intelligence/components.json",
100
+ "bytes": 992350,
101
+ "sha256": "a09d3ab2c3f12a7cd0a030137fa81b1f96b02a73b963b67159a78816fd673600"
102
+ },
103
+ {
104
+ "path": "data/intelligence/security-evaluation-standard.json",
105
+ "bytes": 8453,
106
+ "sha256": "d7147eea9d99aa4872fdff9aeffafbc623600d56b358cb1a376c46f4d67bec35"
107
+ },
108
+ {
109
+ "path": "data/recommendations/core/recommendations.json",
110
+ "bytes": 11217,
111
+ "sha256": "b7241a5cd02a45169fb103a26f1c08719bcff414d76b9490c436883e69e92f2c"
112
+ },
113
+ {
114
+ "path": "data/trust/signal-taxonomy.json",
115
+ "bytes": 4654,
116
+ "sha256": "d060bad4b4830a98013fed6dd23051c271dd92317873dcabbde01e5ff1f840b9"
117
+ },
118
+ {
119
+ "path": "docs/asl-agent-component-safety-standard-v0.2.md",
120
+ "bytes": 3044,
121
+ "sha256": "8411a4bfacdd0f416fc79674e060524a03082aca18193347ef934771e06a65f1"
122
+ },
123
+ {
124
+ "path": "examples/dot-hermes/.hermes/config.json",
125
+ "bytes": 286,
126
+ "sha256": "437904bd2ab11b91c3bf4481f60ecbd20e7a6706cea7d7f6d91dbd7f60c9c5c3"
127
+ },
128
+ {
129
+ "path": "examples/dot-openclaw/.openclaw/openclaw.json",
130
+ "bytes": 313,
131
+ "sha256": "e8d5ba555e04301d8de6975c5377e42d1f097271a8b18e9a5c4cb10a6cfaf076"
132
+ },
133
+ {
134
+ "path": "examples/hermes-like/.env.example",
135
+ "bytes": 56,
136
+ "sha256": "b21f3ae7d1bfcf7678a0cd735d1225e445733810ee67e891aeb86ed66706a14d"
137
+ },
138
+ {
139
+ "path": "examples/hermes-like/config.json",
140
+ "bytes": 748,
141
+ "sha256": "c5883d1b3b58ee1283158a238115a75e9ad10c4099ddfc2ea93ecf221fbce086"
142
+ },
143
+ {
144
+ "path": "examples/hermes-like/optional-mcps/github-tools.json",
145
+ "bytes": 108,
146
+ "sha256": "d5cf8f0e57d93c93f5432b59edc96830aade1fc0c8de2569991da3e93d9a17ee"
147
+ },
148
+ {
149
+ "path": "examples/hermes-like/skills/openclaw-imports/browser-skill/SKILL.md",
150
+ "bytes": 157,
151
+ "sha256": "962144946795006d62588c8097f706086d7674554b1ddf6c9bda312a845abf56"
152
+ },
153
+ {
154
+ "path": "examples/openclaw-like/.env.example",
155
+ "bytes": 57,
156
+ "sha256": "4fca9723be66af9b8843a3d955cc1a6e5326611228064766b5368410a85ce3a5"
157
+ },
158
+ {
159
+ "path": "examples/openclaw-like/AGENTS.md",
160
+ "bytes": 187,
161
+ "sha256": "b1f4da6a991e74cc7ae4ebe5678174025727ecea0dc47076c513c405c4ac8dfb"
162
+ },
163
+ {
164
+ "path": "examples/openclaw-like/openclaw.json",
165
+ "bytes": 548,
166
+ "sha256": "366cc97a8b265614ee43fb50538930a7dfdb12989678b46cfbe267794152f5f0"
167
+ },
168
+ {
169
+ "path": "examples/openclaw-like/workspace/skills/browser-control/SKILL.md",
170
+ "bytes": 224,
171
+ "sha256": "003dd29edfdb95a22e2dee21b889c53f388c7188b4eb2b0e785d1fb7031a58f5"
172
+ },
173
+ {
174
+ "path": "llms.txt",
175
+ "bytes": 1386,
176
+ "sha256": "55576fd6c869f40ae2a41017dc7978bd1bef33c642cdfa509525d2a218eebd9d"
177
+ },
178
+ {
179
+ "path": "package.json",
180
+ "bytes": 1973,
181
+ "sha256": "1f7527425a0c1c55eaec1a42ec99a7084abb7771453c38246187ef1362243ed0"
182
+ },
183
+ {
184
+ "path": "profiles/generic-agent/profile.json",
185
+ "bytes": 401,
186
+ "sha256": "eecb866a5177ba785998f4c1ac32651e56aa3201ef528d7b5d4c7b8cece99e0a"
187
+ },
188
+ {
189
+ "path": "profiles/hermes-like/profile.json",
190
+ "bytes": 597,
191
+ "sha256": "35a874187f37d3dd0d1fe1be16f37807ced30e3a65ceab2769015b5f7e16b3f1"
192
+ },
193
+ {
194
+ "path": "profiles/mcp-server/profile.json",
195
+ "bytes": 379,
196
+ "sha256": "13a8034e0b2ff711b2009331e3552c64e0626b7f6fb4e49dd5bc9010e7c97777"
197
+ },
198
+ {
199
+ "path": "profiles/openclaw-like/profile.json",
200
+ "bytes": 585,
201
+ "sha256": "f84f18279800e2ec44497e4f05b929b7bff9ea0a5101abd564325ba1520c5ca1"
202
+ },
203
+ {
204
+ "path": "profiles/skill-runtime/profile.json",
205
+ "bytes": 385,
206
+ "sha256": "7b4852f57dad5583b64a5773a11f5fd8563fc8ded6dca4774e7d8f1d7ec209e0"
207
+ },
208
+ {
209
+ "path": "rule-packs/core/rules.json",
210
+ "bytes": 3722,
211
+ "sha256": "d65019303ce8978552a8e611b46583ae95eeaad4c1250b1cb2d3348eb4382bf2"
212
+ },
213
+ {
214
+ "path": "rule-packs/hermes/rules.json",
215
+ "bytes": 1825,
216
+ "sha256": "1d684a1a90dfa655c91f624d81504b5e3ce084773630d5a61e67898ce93a4f73"
217
+ },
218
+ {
219
+ "path": "rule-packs/mcp/rules.json",
220
+ "bytes": 2981,
221
+ "sha256": "37885fdca1b37f49b82893710bdb38216f06a9b53b02151ea37b858e6e1d9f72"
222
+ },
223
+ {
224
+ "path": "rule-packs/openclaw/rules.json",
225
+ "bytes": 1955,
226
+ "sha256": "68a7783843a8c1dcae4b086d4698a79e90aa4dcdf85c7baf875514fd2ed7e27c"
227
+ },
228
+ {
229
+ "path": "rule-packs/skills/rules.json",
230
+ "bytes": 1898,
231
+ "sha256": "351d404b2682ea865ebd2486772a0c47915f39c3f5d8a1482f1ec8ed885696ea"
232
+ },
233
+ {
234
+ "path": "schemas/agent-install-decision.schema.json",
235
+ "bytes": 14554,
236
+ "sha256": "963d4b081bd809b1da41b14773c93a3ba352fce256d0882d8d375ce79db62f4d"
237
+ },
238
+ {
239
+ "path": "schemas/agent-usage-event.schema.json",
240
+ "bytes": 1462,
241
+ "sha256": "f435c523077f10118aa10ef29ca8ed44d4c6a09e515f316681cc044c54615494"
242
+ },
243
+ {
244
+ "path": "schemas/assessment-result.schema.json",
245
+ "bytes": 11242,
246
+ "sha256": "6b43dfb200d7e4ada57995b5871a6f8b4765c0ff51193868fd6215126d297b16"
247
+ },
248
+ {
249
+ "path": "schemas/comparison-result.schema.json",
250
+ "bytes": 3537,
251
+ "sha256": "8ce2b0655123d0a02b09a3839b3a49fcaf2719d20457ffb137182216e78ca992"
252
+ },
253
+ {
254
+ "path": "schemas/component-alternative-graph.schema.json",
255
+ "bytes": 6122,
256
+ "sha256": "364f973f38dc9925b9a0f588b5b068e1b5b6b4ad4ce039cc65f2ebbe0efcef41"
257
+ },
258
+ {
259
+ "path": "schemas/component-intelligence.schema.json",
260
+ "bytes": 2827,
261
+ "sha256": "b002316f325316d30b3a5020c20bd5a398f56f2191192c7da9817bab58df7538"
262
+ },
263
+ {
264
+ "path": "schemas/decision-feedback.schema.json",
265
+ "bytes": 1537,
266
+ "sha256": "799bcdd2a60a92bdc59262c6eb5b42cdef27a3913eb7bd97a001a26c2533d89e"
267
+ },
268
+ {
269
+ "path": "schemas/ecosystem-candidate-registry.schema.json",
270
+ "bytes": 3006,
271
+ "sha256": "eb691c04cf86e8973288e60e086ec65f03ce8555403f098aa7c8ec7a3e6aee53"
272
+ },
273
+ {
274
+ "path": "schemas/profile.schema.json",
275
+ "bytes": 1281,
276
+ "sha256": "5fe310c816b1e421c17bdc001e213c5f9b8f52ac794af522e3427f1d3883801f"
277
+ },
278
+ {
279
+ "path": "schemas/recommendation-pack.schema.json",
280
+ "bytes": 3415,
281
+ "sha256": "d2b5abdbd96015a54f0fa41806168ec3340b73ac31ead04d9bc276fd03e7e6a4"
282
+ },
283
+ {
284
+ "path": "schemas/rule-pack.schema.json",
285
+ "bytes": 2773,
286
+ "sha256": "133f48851585576d54d895e0e41d840319dee1395fae5a1842cb489021eadb8c"
287
+ },
288
+ {
289
+ "path": "schemas/trust-signal-taxonomy.schema.json",
290
+ "bytes": 1911,
291
+ "sha256": "2a72951d5825d50fc9d8fdda9b59f268db29381669a490484dee70559c84c3b2"
292
+ },
293
+ {
294
+ "path": "scripts/verify-examples.mjs",
295
+ "bytes": 3477,
296
+ "sha256": "13af58e49376488d761f7abc190cdc0e01afe2b1a727524851c5cec02408c245"
297
+ },
298
+ {
299
+ "path": "scripts/verify-mcp-server.mjs",
300
+ "bytes": 9573,
301
+ "sha256": "acc6e8b27c48a8fc3d1804f739f0755ed4104a408115c53fefc9338d3f91698b"
302
+ },
303
+ {
304
+ "path": "scripts/verify-registry.mjs",
305
+ "bytes": 10756,
306
+ "sha256": "9f2e8ac730f9c26229632ba32e7caf2603c9ef134ec0a7a2fb79f670cdc7f900"
307
+ },
308
+ {
309
+ "path": "server.json",
310
+ "bytes": 1261,
311
+ "sha256": "b8bd6fabc24bbe8bec904d4093c7506574c97ad5d8c344917144934904feba26"
312
+ },
313
+ {
314
+ "path": "src/assessment/assess.mjs",
315
+ "bytes": 4432,
316
+ "sha256": "b502e72e836bd4bb60a21430fb6511fc025f34e8be71ceefac12c495be362129"
317
+ },
318
+ {
319
+ "path": "src/assessment/discover-targets.mjs",
320
+ "bytes": 4419,
321
+ "sha256": "7222cbb172ef1400c9a39a5b57d4be87a5794dc4d611900ae0023db2c6086611"
322
+ },
323
+ {
324
+ "path": "src/assessment/risk-domains.mjs",
325
+ "bytes": 2288,
326
+ "sha256": "26290a94d3a3b2d1e03712dd0b151d98416a23fd76bf76dddd3d94d04082aa1b"
327
+ },
328
+ {
329
+ "path": "src/assessment/summarize.mjs",
330
+ "bytes": 1801,
331
+ "sha256": "b4ada1f27fd93f7b85c62ab35af6b647ec7ef50cd73c8601164da18d4fd024b6"
332
+ },
333
+ {
334
+ "path": "src/core/files.mjs",
335
+ "bytes": 1537,
336
+ "sha256": "819ab2aeee13f2b928318c98480a82d618dc37684bb23edbb4e3f3eea0f97356"
337
+ },
338
+ {
339
+ "path": "src/intelligence/cloud-client.mjs",
340
+ "bytes": 7479,
341
+ "sha256": "b8541e1cab43ccac3a7de16b7402c82108b0b113d4834499a0913f71750a6f33"
342
+ },
343
+ {
344
+ "path": "src/intelligence/component-intelligence.mjs",
345
+ "bytes": 14214,
346
+ "sha256": "f8987fa64abd0a89288a6b2d79670b0fd2666ac8a7ccd13a9fa94e7e5d3627d3"
347
+ },
348
+ {
349
+ "path": "src/intelligence/decision-engine.mjs",
350
+ "bytes": 30122,
351
+ "sha256": "b0a7b7cf27cdbbd41b2dc7e2805c8f43919adc13c53de5ceee7521f3574ff342"
352
+ },
353
+ {
354
+ "path": "src/intelligence/finding-context.mjs",
355
+ "bytes": 6386,
356
+ "sha256": "837802ce40cabd0ec4feb57a3103ef74e9ee58a04a303862143114bf35f06590"
357
+ },
358
+ {
359
+ "path": "src/intelligence/safety-score-v0.2.mjs",
360
+ "bytes": 11957,
361
+ "sha256": "9a9b302826d180e073be7bb98bcd506b5bb2cd430e480ee32d36838074b2b101"
362
+ },
363
+ {
364
+ "path": "src/observations/json-observations.mjs",
365
+ "bytes": 6851,
366
+ "sha256": "bf1becd8d0940cc3455bc23b51625ca5db9fea96dc9dc0c0c896ac8acb57f593"
367
+ },
368
+ {
369
+ "path": "src/observations/observation-rules.mjs",
370
+ "bytes": 6232,
371
+ "sha256": "b607370c8f11ff6886c1b4662375116c4ea90ea6687483a5b903c37a8fec503b"
372
+ },
373
+ {
374
+ "path": "src/profiles/load-profiles.mjs",
375
+ "bytes": 3331,
376
+ "sha256": "ab37735ec297e2cb2afcffd4404f067d03b84cb2ac94f2fa8616fe951f103b8b"
377
+ },
378
+ {
379
+ "path": "src/recommendations/component-alternative-graph.mjs",
380
+ "bytes": 3552,
381
+ "sha256": "d6382339c51d19a53da71937e0f7ab7e470635a1dac0c50fd9ac7387a0bf8e3f"
382
+ },
383
+ {
384
+ "path": "src/recommendations/load-recommendations.mjs",
385
+ "bytes": 561,
386
+ "sha256": "23a2130a6922e2e3e3fac4a1f995df58c2a2392985543ebb688dec1e507d81c6"
387
+ },
388
+ {
389
+ "path": "src/recommendations/match-recommendations.mjs",
390
+ "bytes": 2687,
391
+ "sha256": "8ccd147b39b722667f4b5394c9880d66ea107a7effea1af06529ed9a5184f001"
392
+ },
393
+ {
394
+ "path": "src/report/comparison-console.mjs",
395
+ "bytes": 3100,
396
+ "sha256": "51ab483f98eaaf9d40439bda367a77bf742680fb216ef72687c96e367d2e46e5"
397
+ },
398
+ {
399
+ "path": "src/report/console.mjs",
400
+ "bytes": 4317,
401
+ "sha256": "9f5dc7e741f37ce222d3b9488839a01dbddecf89a906b876c1ac5c49a32973e1"
402
+ },
403
+ {
404
+ "path": "src/report/markdown.mjs",
405
+ "bytes": 5584,
406
+ "sha256": "b6c7954cd115df07f59b50ee3305c9c6767e22ba5a6e3379140e1d65477482a3"
407
+ },
408
+ {
409
+ "path": "src/results/compare-results.mjs",
410
+ "bytes": 3220,
411
+ "sha256": "a5e027461c4d26de19b4d715fbb5c8f19b475c123aa212c06757c6455ed195d2"
412
+ },
413
+ {
414
+ "path": "src/results/save-result.mjs",
415
+ "bytes": 886,
416
+ "sha256": "8b7c472b2e301421fff2e5eb4267fa31b2ecc3dceb0849f0dfd00ae84e1d76fd"
417
+ },
418
+ {
419
+ "path": "src/rules/load-rules.mjs",
420
+ "bytes": 642,
421
+ "sha256": "7e36da7a6a755687503b71b947cd2aff7c30917c87a57a06264e3c15efa9ff15"
422
+ },
423
+ {
424
+ "path": "src/rules/match-rules.mjs",
425
+ "bytes": 3305,
426
+ "sha256": "e9db6d11a48a4d665e0bdcd8e0ecd2b2feda7ff74ef43bbc6ef3d70876f5c496"
427
+ },
428
+ {
429
+ "path": "src/rules/supersedes.mjs",
430
+ "bytes": 1339,
431
+ "sha256": "02de17992328cd591e598f600612a16242af8f9071be201063bcd525a7b64ad1"
432
+ },
433
+ {
434
+ "path": "src/store/assessment-store.mjs",
435
+ "bytes": 2630,
436
+ "sha256": "33ff1a10bb409d5332370bc0317cff8c717342533e92265553b551c3c504c847"
437
+ },
438
+ {
439
+ "path": "src/trust/derive-trust-signals.mjs",
440
+ "bytes": 2006,
441
+ "sha256": "a95eab81f0ff68a7ed5ec0b4cfe79fedb71ba6a80a1e5f5dd3e6c3f391c79f51"
442
+ },
443
+ {
444
+ "path": "src/trust/load-trust-signals.mjs",
445
+ "bytes": 549,
446
+ "sha256": "b67e6af50132a7cb5a93759960ba98d5839d5fb9cb4363f134d2ed1a98596a48"
447
+ }
448
+ ]
449
+ }
package/SECURITY.md ADDED
@@ -0,0 +1,24 @@
1
+ # Security Policy
2
+
3
+ ## Supported Version
4
+
5
+ The supported public version is `0.1.x`.
6
+
7
+ ## Reporting a Vulnerability
8
+
9
+ Do not disclose suspected vulnerabilities, leaked credentials, or exploitable component details in a public issue.
10
+
11
+ Use GitHub private vulnerability reporting or a private GitHub Security Advisory for this repository.
12
+
13
+ Include:
14
+
15
+ - affected ASL version
16
+ - affected MCP tool or API endpoint
17
+ - reproducible request or public component metadata
18
+ - expected and observed behavior
19
+ - possible credential or private-data exposure
20
+ - suggested mitigation, if known
21
+
22
+ ## Scope
23
+
24
+ Reports may cover MCP input validation, accidental private-data submission, authorization bypass, publication-gate bypass, security-relevant matching errors, dependency compromise, or leakage of private intelligence assets.