Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 16042,
"has_wiki": true,
"homepage": null,
"languages": {
"Swift": 14186,
"JavaScript": 13239,
"TypeScript": 2349870
},
"pushed_at": "2026-07-19T10:34:09Z",
"created_at": "2026-01-04T10:50:07Z",
"owner_type": "User",
"updated_at": "2026-07-19T10:34:11Z",
"description": "Official command-line interface for ZN-Vault administration",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "main",
"license_spdx_raw": null,
"primary_language": "TypeScript",
"significant_languages": [
"TypeScript"
]
},
"owner": {
"blog": null,
"name": "Diego",
"type": "User",
"login": "vidaldiego",
"company": "None",
"location": "Madrid",
"followers": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/2470562?v=4",
"created_at": "2012-10-02T09:14:43Z",
"is_verified": null,
"public_repos": 19,
"account_age_days": 5043
},
"license": {
"state": "absent",
"spdx_id": null,
"raw_spdx": null,
"file_present": false,
"scorecard_found": false,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v3.3.0",
"kind": "minor",
"published_at": "2026-05-17T14:42:00Z"
},
{
"tag": "v3.1.0",
"kind": "minor",
"published_at": "2026-05-16T17:18:34Z"
}
],
"recent_commits": [
{
"oid": "27b40823da1f3d4eddb09b1a2eb21012b2e71967",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_0191VziWE9u3LS3r7FmXYt4L",
"is_bot": false,
"headline": "chore(release): v4.18.0 — KMS prehash arming + alias keyId fix",
"author_name": "vidaldiego",
"author_login": "vidaldiego",
"committed_at": "2026-07-19T10:33:57Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "a55d511b8c81f46544e4b39a1953fa6c3165a068",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_0191VziWE9u3LS3r7FmXYt4L",
"is_bot": false,
"headline": "Merge: KMS prehash arming CLI + alias keyId encoding fix",
"author_name": "vidaldiego",
"author_login": "vidaldiego",
"committed_at": "2026-07-19T10:32:36Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "a3a8cd4a6f4a5113283a25099005c974caad27b4",
"body": "…MS path\n\nA KMS key may be addressed by UUID or alias, and aliases are stored with an\n`alias/` prefix. Interpolating an alias raw produced\n`/v1/kms/keys/alias/foo/public-key`, which does not match the server's\nsingle-segment `:keyId` route and 404s — so `kms public-key`, `kms get`,\n`kms sign` (via r\n[…]\nit tests (incl. a UUID regression guard); kms suite 46/46.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_0191VziWE9u3LS3r7FmXYt4L",
"is_bot": false,
"headline": "fix(kms): URL-encode key identifiers so alias/<name> works on every K…",
"author_name": "vidaldiego",
"author_login": "vidaldiego",
"committed_at": "2026-07-19T10:32:26Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "419d13cbb80f27909c75bd64abedfc62ddaa2dd6",
"body": "Adds CLI surface for the server's /v1/transit/* prehashed-signing feature:\n- `znvault kms prehash enable|disable <keyId>` — arm/disarm an RSA SIGN_VERIFY\n key via PATCH /v1/kms/keys/:id/prehash (tenant-only route; registered under\n the tenant tree only, like crypto ops — the server rejects superad\n[…]\nlic-key by keyId).\n4 new unit tests; full kms suite 42/42.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_0191VziWE9u3LS3r7FmXYt4L",
"is_bot": false,
"headline": "feat(kms): CLI arming for prehashed signing (jsign/Authenticode)",
"author_name": "vidaldiego",
"author_login": "vidaldiego",
"committed_at": "2026-07-19T09:35:43Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "4aeeea1051d75816f68f973a380453c49b0166fa",
"body": "Adds znvault kms sign/verify/public-key for the KMS signing feature shipped\nin vault v1.61.0. Signature output is base64 by default (drops into a .sig\nsibling for the Kotlin verifier). Algorithm inferred from the key spec when\nunambiguous. Also lists ED25519/ECC in the 'kms create --spec' help.",
"is_bot": false,
"headline": "feat(release): v4.17.0 — kms sign/verify/public-key commands",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-17T18:13:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af4459626f6663d853a3845874e83565a6924d5e",
"body": "Task 11 added kms sign/verify/public-key plus resolveAlgorithm and\nreadMessage in helpers.ts with no test coverage. Extends the existing\nkms.test.ts harness (same client.js mock, exitOverride + process.exit\nspy pattern used across the suite):\n\n- kms sign: base64-encodes the message, prints/writes th\n[…]\nile/positional mutual exclusivity\n- kms verify: VALID exits 0, INVALID exits non-zero via the normal\n result path (not the catch/transport-error path)\n- kms public-key: --pem vs default base64 output",
"is_bot": false,
"headline": "test(cli): cover kms sign/verify/public-key and their helpers",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-17T15:45:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "60d3ad8fba91126af4e5b5e2a8c534db253a45b1",
"body": null,
"is_bot": false,
"headline": "feat(cli): kms sign, verify, and public-key commands",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-17T15:34:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c664fffd744f386da133a3dffb9d371f17f41065",
"body": null,
"is_bot": false,
"headline": "feat(release): v4.16.0 - ZincApp lima/green banner",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-10T14:44:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "728dca50430f6f55c0b6b76b437cc0baed4e5693",
"body": null,
"is_bot": false,
"headline": "feat(rebrand): CLI banner gradient on ZincApp lima/green",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-10T14:09:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abf5e0e0f0d37f48fac9de6e7c0cb63b1f8e7ee7",
"body": null,
"is_bot": false,
"headline": "docs: backfill CHANGELOG for 4.15.1–4.15.4 (was stale at 4.15.0)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-07T08:05:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5dcc44d13b5c8ddddaf898ff01dac4d9aea2ed49",
"body": "…reflight command",
"is_bot": false,
"headline": "chore(release): v4.15.4 — secret get References badge + can-decrypt p…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-07T04:39:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "717eeca8a1a0de6dd43cd5d7f5880938b4767922",
"body": null,
"is_bot": false,
"headline": "feat(secret): add 'secret can-decrypt' preflight command",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T21:02:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ef45b6a9caf3439be0a757bd708ed076c2db3d3",
"body": "…etadata flags",
"is_bot": false,
"headline": "feat(secret): add can-decrypt verdict + options types and reference m…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T20:59:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "faa901313661be570d4793159ea73400c3d7d745",
"body": null,
"is_bot": false,
"headline": "feat(secret): show References row + reference tips in 'secret get'",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T20:49:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94433c12314ff76c71a6d72f50979067d7613e2c",
"body": null,
"is_bot": false,
"headline": "feat(secret): add hasReferences/referencesEnabled to SecretMetadata type",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T20:46:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6eea82fd479aa96aac15d7da7b906ee1fb6f405e",
"body": "…enable-references, --no-resolve)",
"is_bot": false,
"headline": "chore(release): v4.15.3 — secret references CLI authoring (--link, --…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:42:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "609a43c096bbc1f85b3297f8240895c240b3bcbb",
"body": "Adds --link/--link-field/--enable-references (create), --no-resolve +\nprovenance (decrypt), sticky opt-in (update), and raw interactive\npre-fetch for update/rotate/patch (no resolved-snapshot corruption).\nServer-side resolution unchanged; no client-side ${ref:} expander.",
"is_bot": false,
"headline": "Merge feat/secret-references-cli: CLI authoring for Secret References",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:41:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df87033e28285083355fde8140ae70a9902c6e4f",
"body": "… (final-review finding)",
"is_bot": false,
"headline": "docs: note patch.ts in secret-references CLI spec affected-components…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:28:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d433c9abc474e84140f7a4f66145175dfbb83f9f",
"body": "…ruption)\n\nThe patch command is a decrypt-then-write-back flow that applies\nfield-level edits before saving. Without ?resolve=false, patching\na reference secret would bake its resolved snapshot back over the\ntemplate, corrupting the reference (same bug already fixed for\nupdate and rotate).\n\n- Add ?r\n[…]\net-patch.test.ts line 738\n- Add new focused test documenting the fix\n\nByte-identical for non-reference secrets (server short-circuits).\ndetectFormat() still reads contentType/subType from raw decrypt.",
"is_bot": false,
"headline": "fix(secret): patch pre-fetches raw template (no resolved-snapshot cor…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:27:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d6cf9ac1daea8c915dbee73e31ecd909bbdbeec2",
"body": null,
"is_bot": false,
"headline": "chore(secret): re-export reference helpers from the secret barrel",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:16:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb25a2b5c4c90f739546319009d8ee2916e1e0f0",
"body": "…oring",
"is_bot": false,
"headline": "feat(secret): add create --link/--link-field/--enable-references auth…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:11:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fdb84d83697c29815239f3bd712c2a2164f82b11",
"body": "…rruption)",
"is_bot": false,
"headline": "fix(secret): rotate pre-fetches raw template (no resolved-snapshot co…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:06:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58af39f5870157542e409e5fa5c54870f2f1ab57",
"body": null,
"is_bot": false,
"headline": "feat(secret): add update --enable-references + raw interactive pre-fetch",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:03:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95d0bdec0ad234528f988c17a79da5fcea7aa05f",
"body": null,
"is_bot": false,
"headline": "test(secret): cover decrypt provenance output and {value} unwrap",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T17:00:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff19a03425d56fd6aad6059ea67374780293f6ca",
"body": null,
"is_bot": false,
"headline": "feat(secret): add decrypt --no-resolve and reference provenance output",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T16:57:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f8a967163df72de389cee092ac24820e7dcdeba",
"body": null,
"is_bot": false,
"headline": "feat(secret): add reference option/response types",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T16:53:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02e48315b23de57275a050eaf49f280f32fe00c9",
"body": null,
"is_bot": false,
"headline": "feat(secret): add reference validation + link-pointer helpers",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T16:50:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae7b16766c0bb1eb9ed0f0f0dcfff3f638d16a11",
"body": null,
"is_bot": false,
"headline": "docs: implementation plan for secret-references CLI authoring",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T16:46:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3d14d760e66a44794e9064b7ee13ed36b1468e2",
"body": "Address 9 findings from an independent Fable review verified against server code:\n- #1 (HIGH): interactive update/rotate pre-fetch must use ?resolve=false to\n avoid baking a resolved snapshot into a reference template; adds rotate.ts to scope\n- #2: Commander declaration-order requirement for --enab\n[…]\n: disclose stricter-than-server link validation divergence\n- #7: gate the {value} unwrap on resolvedFrom\n- #8: reject explicit non-setting --type with --link\n- #9: correct --no-resolve default wording",
"is_bot": false,
"headline": "docs: revise CLI secret-references design after adversarial review",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T16:39:28Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "65b8651d021064c66a2e51d86faaf47ab02bceb9",
"body": "…ferences, --no-resolve)",
"is_bot": false,
"headline": "docs: CLI authoring design for secret references (--link, --enable-re…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-06T16:15:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21c5a6c34bbb35b4a7fb1aa09b8ae9310272374d",
"body": null,
"is_bot": false,
"headline": "chore(release): v4.15.2 — green CI (lint + flaky test fixes)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T18:21:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b964fafe636180c0514c0c86c49cdcaaa99e890",
"body": "…k test\n\nLint: 19 auto-fixed (prefer-regexp-exec, array-type, no-unnecessary-type-*, etc.)\n+ 6 manual (Reflect.deleteProperty for dynamic-delete; string|Buffer type on\nexecFileSync error stdout/stderr; documented eslint-disables for two TS-can't-\nmodel-concurrency / unbound-method false positives). \n[…]\n, giving different HMAC lock keys.\nPre-seed lock-hmac.key in beforeEach so both workers read one shared key. Passes\n25/25 runs; removes the race without weakening the cross-process serialization test.",
"is_bot": false,
"headline": "fix(ci): resolve 25 lint errors + fix flaky cross-process refresh-loc…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T18:21:35Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "de0293b18e92b89fcf669dca60b847f15ed9eb5d",
"body": null,
"is_bot": false,
"headline": "chore(release): v4.15.1 — docs for migration apply/status command",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T17:57:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da11156ce47be199ddf13a3bd4d8f569d5269f71",
"body": "…ADME + CLAUDE.md + CHANGELOG",
"is_bot": false,
"headline": "docs: document znvault migration apply/status command (v4.15.0) in RE…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T17:57:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a474ceb34854dc754b45d386732cb581c8417ef",
"body": null,
"is_bot": false,
"headline": "chore(release): v4.15.0 — znvault migration apply/status",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T13:00:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a276bf2f275b4b75750cd71ee5b916efa9dcc77",
"body": null,
"is_bot": false,
"headline": "Merge: znvault migration apply/status via @zincapp/znvault-migrate",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T12:59:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f455f89cefebda34a15eda8e9b65aa6c774d6f19",
"body": null,
"is_bot": false,
"headline": "chore: consume @zincapp/znvault-migrate from npm (v1.0.0 published)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T12:59:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04b3d5045fa8f5b1f9ff2b5ff220df62c4c64ddd",
"body": "…lish",
"is_bot": false,
"headline": "fix(cli): widen @zincapp/znvault-migrate dep to >=1 for the 1.0.0 pub…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T11:53:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cb3a9416b80f284d451cd7bd79edfe87a5a6cd15",
"body": null,
"is_bot": false,
"headline": "feat(cli): znvault migration apply/status via @zincapp/znvault-migrate",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-04T11:41:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "48cff3439ca47951506037b6ce228d09d6e3a681",
"body": "…ommand",
"is_bot": false,
"headline": "chore(release): v4.14.0 — remove dynasec routines apply/get/bundles c…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-03T21:37:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "23b067a9c35c5f9c048c6c0a579d17e38e73e336",
"body": "The migration bundle-apply route is retired; the CLI command that drove it is\nremoved. Dangling help/warning strings reworded to point at the provisioner\nflow (connection provision --routines-bundle/--routines-version). Keeps\nconnection --routines-connection-string. Whole-branch reviewed clean (978 tests).",
"is_bot": false,
"headline": "Merge: remove dynasec routines apply/get/bundles command (Phase 2)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-03T21:36:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d5f6c221cc30040868611e574d0c177b24581aa",
"body": "…word dangling help strings\n\nThe migration bundle-apply route is gone; the CLI command that drove it is\nremoved. Help/warning text that pointed users at 'dynasec routines apply' is\nreworded (that command no longer exists). Keeps connection-update\n--routines-connection-string and provisioner --routines-* flags.",
"is_bot": false,
"headline": "refactor(cli): remove dynasec routines apply/get/bundles command + re…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-03T21:10:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e8f21789191d33314968f9cb018095a8f4599c2",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(release): v4.13.1 — self-update applies plugin major upgrades",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-02T20:03:04Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4864a6c7e547df46e1822fc48fe15ba5a2985ca2",
"body": "…y on disk\n\n'znvault self-update' ran bare 'npm update <pkg>' in the plugins dir, which is\nbounded by the semver range recorded in plugins/package.json (a caret ^1.x). It\ntherefore CANNOT cross a major (e.g. payara 1.28.3 → 2.0.0): npm exits 0 having\nchanged nothing, and the command reported a fabri\n[…]\n install @latest invocation (mutation-verified: reverting to\n'npm update' fails it) and the no-op → warn (not false-success) path.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(self-update): apply plugin majors via npm install @latest + verif…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-02T20:01:13Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "07a590a8ac46de1cc146501f5a0097a4beb8f467",
"body": "… (S2 role templates)",
"is_bot": false,
"headline": "docs(changelog): backfill 4.12.0 (S1 provision/rotate-admin) + 4.13.0…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-02T17:26:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6a5e764439825b9771814b507a4254c0b7b367e",
"body": "…list/get\n\nNew: znvault dynasec role create <name> --connection <id> --template\n<name> [--template-version <n>] — create a dynamic-secrets role from a\nvetted server-side template (MySQL readonly/readwrite/ddl/migrate; PostgreSQL\nreadonly/readwrite). Plus: znvault dynasec templates list/get to browse the\ncatalog. Raw --creation-statements stays as the escape hatch (needs the new\ndynamic-secrets:roles:write-raw permission server-side). Actionable error\nmessages for every S2 error code.",
"is_bot": false,
"headline": "chore(release): v4.13.0 — dynasec role create --template + templates …",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-02T16:21:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6086cca967494152055910e4993c06bfd73ac185",
"body": "…ements shape (creation/revocation/renew arrays)",
"is_bot": false,
"headline": "fix(cli): RoleTemplateDetail.example type matches server ExpandedStat…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-02T12:59:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "265d0ac66d62f7f2d17d2795874519acb5e81ad1",
"body": null,
"is_bot": false,
"headline": "feat(cli): dynasec role create --template + templates list/get",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-02T12:53:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2a2f2e3bd8ea294a78cbfad5cdd248d277453b5",
"body": "New: znvault dynasec connection provision <name> --type mysql|postgresql\n--root-file <path> — one-shot provision from a transient root credential\n(root via --root-file or masked prompt, never an inline flag). Creates vault's\nleast-priv sub-accounts + connection + MySQL routine bundle server-side.\nPlus: znvault dynasec connection rotate-admin <id>. HttpClient now surfaces\nAPI error-body steps + error code on 4xx/5xx (provision failures show where\nthey stopped).",
"is_bot": false,
"headline": "chore(release): v4.12.0 — dynasec connection provision + rotate-admin",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-02T04:24:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c70e47eaa48c97e5c7ffea2e3524d9ff2ac0a279",
"body": "…sion failures show where they stopped)\n\nThe shared HTTP client discarded the parsed error body on 4xx/5xx\nresponses, keeping only the message and statusCode. This meant\ndynasec connection provision couldn't show the per-step stop point\non a partial failure (422 root_insufficient, 502 provision_fail\n[…]\nint, not just\nprovision. The provision command renders the partial step report\nwhen the caught error carries steps, falling back to the previous\n\"check connection get\" hint only when steps are absent.",
"is_bot": false,
"headline": "fix(cli): surface API error-body steps + error code on 4xx/5xx (provi…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-01T20:14:03Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b283ddf17c187db64811404d67c37aa8415253f5",
"body": "…ot-file/prompt)",
"is_bot": false,
"headline": "feat(cli): dynasec connection provision + rotate-admin (root via --ro…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-01T19:35:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74fb80d0c8a8195a2bebcf9865c5d7d036125c80",
"body": "…tion --routines-connection-string",
"is_bot": false,
"headline": "chore(release): v4.11.0 — dynasec routines apply/get/bundles + connec…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-01T15:53:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "75f5430ab664774c0d013322b65f3eaacfb4cc22",
"body": "…routines-connection-string",
"is_bot": false,
"headline": "feat(cli): znvault dynasec routines apply/get/bundles + connection --…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-01T13:25:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "358cd80d88fc4bc0af81a10edd32b6c5f80af143",
"body": "…renew statements",
"is_bot": false,
"headline": "chore(release): v4.10.1 — role update can change creation/revocation/…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-01T06:48:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8662ca64879cc96d6591a526502cc388d0f9a3a8",
"body": "…e SQL statements\n\nThe 'dynasec role update' command could not change a role's creation/revocation/\nrenew statements — only create could. The server already supported it. Adds the\n--creation-statements/--revocation-statements/--renew-statements options to update\nand forwards them (same ;-split as create). Needed to update a role's grants.",
"is_bot": false,
"headline": "Merge fix/role-update-creation-statements: allow role update to chang…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-01T06:47:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b29710ea8e603b6f70f355f98697b91a7ee0540b",
"body": "…ments\n\nAdd --creation-statements, --revocation-statements, and --renew-statements\noptions to `znvault dynasec role update`. The server's UpdateRoleBody already\naccepted these fields; the CLI was simply missing the options and body mapping.\nMirrors the semicolon-split parsing that `role create` already uses.",
"is_bot": false,
"headline": "fix(cli): allow role update to change creation/revocation/renew state…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-07-01T05:58:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3f65eae654926ab608963c21f380b03b9eeb37d",
"body": "…tput)\n\n77 SwiftPM build-output files were tracked and churned on every build. Ignore\nthe dir and untrack them (kept on disk). Package.swift + Sources/ stay tracked.",
"is_bot": false,
"headline": "chore(gitignore): stop tracking secure-enclave/.build (Swift build ou…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-30T18:33:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ea2c719d1208e728ebb5735b46b3e9960216ff4",
"body": "…ence commands\n\nAdds 'znvault dynasec allowed-hosts add/list/rm/test' and\n'znvault superadmin dynsec fence add/list/rm' for the runtime two-tier\ndynamic-secrets host allowlist (server v1.48.2).",
"is_bot": false,
"headline": "chore(release): v4.10.0 — dynasec allowed-hosts + superadmin dynsec f…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-30T07:29:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cdbc6f4a49173747e13a8195e31b2a6e7d4ee633",
"body": "…ring",
"is_bot": false,
"headline": "fix(dynsec): rm --json emits only json; test --force warn + 429 rende…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-30T06:13:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5744d84f2da2db246977046a9a4146201d0bd837",
"body": null,
"is_bot": false,
"headline": "feat(dynasec): allowed-hosts + superadmin fence CLI commands",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-30T06:07:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b86d182c0b2b4ef9cbe6008017742af65dc1386",
"body": "…s provisioning)",
"is_bot": false,
"headline": "chore(release): v4.9.0 — api-key --ssh-principals flag (ssh:ca:sign-a…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-29T15:38:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "535fed4a2d713d18eba4c44b7f72f5e0d6781a54",
"body": null,
"is_bot": false,
"headline": "feat(cli): --ssh-principals flag for api-key create + conditions",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-29T13:38:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a46102e9574c5767fed86506ef396e03ac18d83",
"body": "…dential-free DB access)",
"is_bot": false,
"headline": "chore(release): v4.8.0 — znvault mysql exec/connect/alias broker (cre…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T14:03:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1cd576e407e493839a3e4175cd8c4671a8631ed9",
"body": "…ne correctly)",
"is_bot": false,
"headline": "fix(mysql): pass cnf via /dev/fd to fix spawn-then-unlink race (F1 do…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T13:39:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "17a8fa02bd7bfbe874a6803b70b61728208bbb8f",
"body": "…(F2), revoke on createMyCnf failure, unlink cnf after spawn (F1), stderr audit log, ttl validation",
"is_bot": false,
"headline": "fix(mysql): final-review hardening — block host/defaults passthrough …",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T13:25:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4df90b8dd5d963ca02b8bcc9675ac0a5bdf06496",
"body": "… + alias path",
"is_bot": false,
"headline": "fix(mysql): resolve connection by name (not just id) in resolveTarget…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T13:06:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "447555713b39303b5e3306f080ae708a3ff960c3",
"body": "…rget (exec/connect)",
"is_bot": false,
"headline": "fix(mysql): use variadic passthrough arg so options can follow the ta…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:59:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6d6d733ee3093d8521887e6614496ee7f37dbfd",
"body": null,
"is_bot": false,
"headline": "feat(mysql): register exec/connect/alias commands",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:50:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f823b295e5a81b769980f0e107b05c9d4759f30",
"body": "…from builder; ESM import in test",
"is_bot": false,
"headline": "fix(mysql): scrub ambient MYSQL_PWD from child env; drop unused mode …",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:45:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93bb6567ce507ee32ce962116f1c4823437e4d6a",
"body": "… exec/connect wiring)",
"is_bot": false,
"headline": "feat(mysql): spawn mysql client (--defaults-extra-file, histfile off,…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:40:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d23be1f987fb3d2cd6e677c2ec2aad9a082a762",
"body": "…cleanup, log stack on uncaught",
"is_bot": false,
"headline": "fix(mysql): await cleanup in signal handlers, remove handlers before …",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:35:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8f28eecac94a879474d3958a21f55dd654b8851",
"body": null,
"is_bot": false,
"headline": "feat(mysql): brokered lease lifecycle with guarded idempotent revoke",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:31:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a62c995c6f8cb13b6f7fd3f5d3ae6d4a00b06d8c",
"body": null,
"is_bot": false,
"headline": "feat(mysql): resolve connection|alias + role to ids",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:22:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d055ecd04402a7fe8db321c978ad176065d967c",
"body": null,
"is_bot": false,
"headline": "feat(mysql): per-profile alias store for connection+role",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:14:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eaec8b8a23d1d46ccc6edb2601525c75b08f9dda",
"body": null,
"is_bot": false,
"headline": "fix(mysql): create temp dir 0700 atomically (close umask TOCTOU window)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:11:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7b8b0767ca11946196411cb631722575f4b3c12",
"body": null,
"is_bot": false,
"headline": "feat(mysql): secure temp my.cnf lifecycle (mem-fs, 0600, shred+unlink)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:08:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b6514cf7858dab40b66d65d037c429345d83767",
"body": null,
"is_bot": false,
"headline": "feat(mysql): GeneratedCredential carries optional host/port/database",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T12:06:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7177b4d36acc8cf005496c070ba7ec6e31f2fbca",
"body": null,
"is_bot": false,
"headline": "chore(release): v4.7.1 — fix --profile request routing (F1)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T10:40:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f0b9f8ab4719b98699c305836e90efef5c1df543",
"body": "The VaultClient froze its baseUrl from the active profile at construction\ntime, before the --profile preAction hook applied the runtime override.\nAs a result, `znvault --profile X <cmd>` sent requests to the active\nprofile's URL while reading profile X's credentials — cross-wiring auth\nand target se\n[…]\nL); explicit --url/\n--insecure remain overrides that win. Adds a config-dir-isolated\nregression test covering: override routes to profile, explicit --url\nwins, and no-override uses the active profile.",
"is_bot": false,
"headline": "fix(client): honor --profile for request routing (F1)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-28T10:40:21Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "25036b3ba47683043a176f9a60b23581ccc236ee",
"body": "…marker\n\nConcurrent znvault refreshes now serialize via an HMAC-keyed cross-process\nlock; a persistent crash-recovery marker prevents presenting a maybe-consumed\ntoken; 409-aware retry pairs with the server grace window (v1.47.0). Also\nrenames whoami `sessionExpires` → `accessTokenExpires`.",
"is_bot": false,
"headline": "chore(release): v4.7.0 — cross-process refresh lock + crash-recovery …",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T17:59:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6af2d72786a660eb27781157b6ded2d70ff77a6",
"body": "…n re-read isn't stale\n\nThe 5s in-process profile cache could mask a peer's token rotation that\nhappened during the (up to 5s) lock wait, defeating the \"peer rotated -> skip\nnetwork\" optimization and causing a stale/consumed token to be POSTed. Found by\nthe final whole-branch review.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(cli): invalidate profile cache after lock acquire so peer-rotatio…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T17:39:49Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "03e117f296572d1f8888033ed0e5afa37c49c1d0",
"body": "…eCredentials marker docstring\n\nThe sessionExpires field showed the ~1h access-token expiry while labeled as\nthe session, contradicting the login banner's '7 days' message. Relabeled to\naccessTokenExpires with a note that the refresh token lasts ~7 days.\n\nAlso corrected storeCredentials docstring: omitting pendingRefresh in a spread\ndoes NOT clear it—callers must explicitly set pendingRefresh: undefined.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(cli): rename whoami sessionExpires→accessTokenExpires; fix stor…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T17:25:16Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "464a9e035887e07f499b9c3eea2947394ba891dd",
"body": "…arried it forward)\n\npostRefreshWithRetry success-write spread ...credentials, carrying a pre-existing\nmarker forward despite the \"omitted -> cleared\" comment; a stale in-TTL marker then\nforced a spurious clean-relogin after a SUCCESSFUL refresh. Explicitly clear it.\nFound by the Task 10 real multi-process recovery test.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(cli): clear pendingRefresh marker on successful refresh (spread c…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T16:57:13Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "309461cb3fe9ab33976512d0f756fac220b0b220",
"body": "Real-OS-process lock serialization validating the proper-lockfile cross-process\nsemantics that an in-process mock cannot prove (design §5.2): two processes\nserialize on the same key (no overlap window), the same copied token under\nDIFFERENT profiles derives the SAME HMAC lock key and still serialize\n[…]\n isolated per-test\nZNVAULT_CONFIG_DIR (no real user-config or lock-dir writes); the suite builds in\nbeforeAll (F6 build coupling).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "test(cli): cross-process refresh-lock survival tests (real OS processes)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T16:53:42Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "3ac929062d1186f77b206f5f9991ba48c3859cf4",
"body": "…retry + marker gating\n\nrefreshToken wraps refresh in the proper-lockfile lock, re-reads creds after\nacquire (skips network on peer rotation), and on a post-acquire lock-key mismatch\nreleases + reacquires once under the new key (TOCTOU, closes finding C). Writes\nthe §A.1 marker with the REAL jti cla\n[…]\nrver-REJECTED (the v3.3.0 restart fix), so it must force a real\nrefresh and never short-circuit. Covered by a non-regression test.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): cross-process refresh lock + TOCTOU reacquire + 409-aware …",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T16:41:31Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "f71a19143ab58f8638cbf8c3b2ae3725a5df610c",
"body": "…decoder + recovery log\n\nwritePendingRefreshMarker sets the write-ahead intent in one profile write;\nstoreCredentials clears it atomically when omitted; decidePendingRefresh\nimplements the §A.1 none/resolve-live/clean-relogin model; decodeRefreshJti\nextracts the real jti claim (C2, not a token slice\n[…]\nnstance from defaults so each _resetStoreInstance() yields a clean store.\nTest bodies are otherwise unchanged from the task brief.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): atomic pendingRefresh marker write/clear + decision + jti …",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T16:28:00Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2fb17fcf34a34fb40633e87401f3fc0187c09369",
"body": "Optional crash-recovery marker on StoredCredentials (presentedJti = real JWT jti\nclaim) and the 60s TTL that governs when a still-present marker triggers a clean\nre-login (design §A.1).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): add pendingRefresh marker field + PENDING_REFRESH_TTL",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T16:21:38Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4741647b7fdfe69f1900a51c1308b8885975ad81",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(cli): regenerate K_local if the on-disk key is not exactly 32 bytes",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T16:19:39Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "534e5d64db5e2865ba17ad8bb1e94abf125ea76e",
"body": "Lock keyed by HMAC-SHA256(refreshToken, K_local); K_local persisted once\nat <configDir>/lock-hmac.key (0600). Same copied token serializes across\nprofiles (finding #7); on-disk name is not a token fingerprint.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): add proper-lockfile + HMAC-keyed cross-process refresh lock",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-25T16:15:08Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ab030faea97f296aa86e8b3e68e1aa2a8c8e5cf2",
"body": "…/404",
"is_bot": false,
"headline": "chore(release): v4.6.1 — clearer tenant-scope hint on host-config 403…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-22T17:54:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a33be5922dc4e88f16af3a52d447f685db0a9b23",
"body": "…ssion opacity)\n\nHost configs are tenant-scoped (/v1/hosts/*); a superadmin profile (no tenant\ncontext) gets a bare 'Not Found' that reads as a missing host. Attach statusCode\nto API errors and, on 403/404, host get/config now hint that the profile lacks\ntenant context and to switch to a tenant profile.",
"is_bot": false,
"headline": "fix(host): clarify tenant-scope on host-config 403/404 (profile-permi…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-22T17:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "542be30c14ffc474f253ed6685822937afaf44d1",
"body": "…e-body fix\n\nagent ping/version/plugins/update/update-plugins/update-all now reach\nloopback-only agents via an SSH-CA tunnel by default (--no-tunnel to opt out).\ntriggerAgentUpdate/triggerPluginUpdate now send a non-empty JSON body, fixing\nthe agent FST_ERR_CTP_EMPTY_JSON_BODY (HTTP 400).",
"is_bot": false,
"headline": "feat(release): v4.6.0 — SSH-CA auto-tunnel for agent commands + updat…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-22T16:46:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d79e7fb1fcd15fa886c79184fd20cfd2578a1083",
"body": "…ugins\n\nReview finding: process.exit() inside the withAgentConnection callback bypassed\nthe finally{ tunnel.close() }, briefly orphaning the ssh forward child on\nfast-fail paths. Replace inner process.exit(1) with an AlreadyReportedError\nsentinel; the outer catch tears the tunnel down (via finally) then exits without\ndouble-logging. Add a test that withAgentConnection propagates a throw from fn.",
"is_bot": false,
"headline": "fix(agent): don't strand SSH tunnel on early-exit in update/update-pl…",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-22T16:42:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff7698879b63f73156c148fa637cfc3e22a4319e",
"body": "…body\n\nAgents now bind :9100 loopback-only, so the agent ping/version/plugins/\nupdate/update-plugins/update-all commands could not reach them (silently\nclassified 'unreachable' → 'up to date'). Add an SSH-CA tunnel layer\n(src/lib/ssh-tunnel.ts, ported from znvault-plugin-payara) and route every\ndire\n[…]\nriggerPluginUpdate sending a JSON content-type\nwith an empty body → agent Fastify FST_ERR_CTP_EMPTY_JSON_BODY (HTTP 400);\nthey now send {force} / {} respectively. triggerAgentUpdate gains a force arg.",
"is_bot": false,
"headline": "fix(agent): SSH-CA auto-tunnel for :9100 commands + non-empty update …",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-22T16:39:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3fcb7339dab97fa31f0810d16f84510b336a5e11",
"body": null,
"is_bot": false,
"headline": "chore(release): v4.5.0 - znvault ssh forward (SSH-CA local port-forward)",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-16T19:20:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "306d7faaf5cace4336daa4793272627a943e7095",
"body": "Its stdout is a machine channel (the JSON contract line the deploy tunnel\nmanager parses); the global profile-indicator banner polluted it. Mirror the\nexisting completion-command suppression.",
"is_bot": false,
"headline": "fix(ssh): suppress profile banner for 'ssh forward --print-port'",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-16T19:15:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69816295886e99cdba17791173a13b08f530159e",
"body": null,
"is_bot": false,
"headline": "test(ssh): assert dry-run output and --print-port JSON contract",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-16T18:50:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee389015ab515fcd3dd0dba03916e3f8898225a8",
"body": "The parent ssh command declared --dry-run/--ttl/-i, so Commander attributed\nthem to the parent and subcommands (connect, forward) never received them —\nmaking 'ssh connect --dry-run' / 'ssh forward --dry-run' silently ignore the\nflag and attempt a real connection. Enable positional options so options after\na subcommand name are parsed by the subcommand.",
"is_bot": false,
"headline": "fix(ssh): route subcommand options via enablePositionalOptions",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-16T18:43:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ef6102e55b661e8b15ebcc78b3d6d39583ab153",
"body": null,
"is_bot": false,
"headline": "feat(ssh): add 'znvault ssh forward' SSH-CA local port-forward",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-16T18:39:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08a493728a7f24911a9032800912ea82abfc652c",
"body": null,
"is_bot": false,
"headline": "feat(ssh): add buildForwardArgs for ssh -N -L tunnel",
"author_name": "diegovidal",
"author_login": "vidaldiego",
"committed_at": "2026-06-16T18:32:16Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 2,
"commits_last_year": 226,
"latest_release_at": "2026-05-17T14:42:00Z",
"latest_release_tag": "v3.3.0",
"releases_from_tags": false,
"days_since_last_push": 5,
"active_weeks_last_year": 15,
"days_since_latest_release": 68,
"mean_days_between_releases": 0.9
},
"community": {
"has_readme": true,
"has_license": false,
"has_description": true,
"has_contributing": false,
"health_percentage": 28,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "@zincapp/znvault-cli",
"exists": true,
"license": "MIT",
"keywords": [
"znvault",
"vault",
"secrets",
"cli",
"admin"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/@zincapp/znvault-cli",
"is_deprecated": false,
"latest_version": "4.18.0",
"repository_url": "https://github.com/vidaldiego/znvault-cli",
"versions_count": 106,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 1,
"monthly_downloads": 4171,
"first_published_at": "2026-01-04T10:59:08.707000Z",
"latest_published_at": "2026-07-19T10:34:38.637000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 5
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"tsconfig.json"
],
"toolchain_manifests": [],
"largest_source_bytes": 35641,
"source_files_sampled": 352,
"oversized_source_files": 0,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 9384
},
"dependencies": {
"manifests": [
"package.json"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 159,
"malicious_count": 0,
"assessed_package": "npm:@zincapp/znvault-cli@4.18.0",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [
{
"name": "@iarna/toml",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^2.2.5"
},
{
"name": "@inquirer/prompts",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^8.2.0"
},
{
"name": "@zincapp/znvault-migrate",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^1.0.0"
},
{
"name": "bcryptjs",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^3.0.3"
},
{
"name": "boxen",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^8.0.1"
},
{
"name": "chalk",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^5.6.2"
},
{
"name": "cli-table3",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^0.6.5"
},
{
"name": "commander",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^14.0.2"
},
{
"name": "conf",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^15.0.2"
},
{
"name": "figlet",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^1.9.4"
},
{
"name": "gradient-string",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^3.0.0"
},
{
"name": "ink",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^6.6.0"
},
{
"name": "ink-text-input",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^6.0.0"
},
{
"name": "inquirer",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^13.2.0"
},
{
"name": "open",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^10.1.0"
},
{
"name": "openpgp",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^6.3.0"
},
{
"name": "ora",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^9.0.0"
},
{
"name": "otpauth",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^9.4.1"
},
{
"name": "pg",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^8.17.1"
},
{
"name": "proper-lockfile",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^4.1.2"
},
{
"name": "react",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^19.2.3"
},
{
"name": "ws",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^8.19.0"
},
{
"name": "yaml",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^2.4.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "vidaldiego",
"commits": 226,
"avatar_url": "https://avatars.githubusercontent.com/u/2470562?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"publish.yml"
],
"has_docs_dir": true,
"linter_configs": [
"eslint.config.js"
],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"package-lock.json"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 0,
"reason": "license file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 3,
"reason": "dependency not pinned by hash detected -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "30 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "27b40823da1f3d4eddb09b1a2eb21012b2e71967",
"ran_at": "2026-07-25T07:43:03Z",
"aggregate_score": 3,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-19T10:34:41Z",
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/vidaldiego/znvault-cli",
"host": "github.com",
"name": "znvault-cli",
"owner": "vidaldiego"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 54,
"inputs": {
"security": 44,
"vitality": 84,
"community": 24,
"governance": 35,
"engineering": 78
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 84,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 74,
"inputs": {
"commits_last_year": 226,
"human_commit_share": 1,
"days_since_last_push": 5,
"active_weeks_last_year": 15
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "15/52 weeks with commits",
"points": 10.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 15
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "226 commits in the last year",
"points": 18,
"status": "met",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 226
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 2,
"latest_release_tag": "v3.3.0",
"releases_from_tags": false,
"days_since_latest_release": 68,
"mean_days_between_releases": 0.9
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "2 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 2
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 68 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 68
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0.9 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0.9
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 5,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 5 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 5
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 24,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": true,
"has_license": false,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "no license file detected",
"points": 0,
"status": "missed",
"details": [
{
"code": "license_absent",
"params": {}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"packages": [
"@zincapp/znvault-cli"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 4171
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "4,171 downloads/month across npm",
"points": 48.3,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 4171,
"ecosystems": "npm"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 35,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 13,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 42,
"inputs": {
"followers": 1,
"owner_type": "User",
"is_verified": null,
"owner_login": "vidaldiego",
"public_repos": 19,
"account_age_days": 5043
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "1 followers of vidaldiego",
"points": 2.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 1,
"login": "vidaldiego"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "19 public repos, account ~13 yr old",
"points": 21.5,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 19
}
},
{
"code": "account_age_years",
"params": {
"years": 13
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"@zincapp/znvault-cli"
],
"ecosystems": "npm",
"any_deprecated": false,
"min_days_since_publish": 5
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on npm",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "npm"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 5 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 5
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "106 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 106
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 78,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 80,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": "eslint.config.js",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "eslint.config.js"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 44,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 30,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 3
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 3",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "30 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): No advisories left outstanding. Remaining weights renormalized. Matched the npm:@zincapp/znvault-cli@4.18.0 runtime dependency closure — what installing the published package pulls in — 159 packages. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_published",
"params": {
"package": "npm:@zincapp/znvault-cli@4.18.0",
"assessed": 159
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 159,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "no indirect dependency carries a known advisory",
"points": 25,
"status": "met",
"details": [
{
"code": "no_indirect_advisories",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 159,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 2
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "good",
"name": "AI Readiness",
"value": 79,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.99,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 9384
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "CLAUDE.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "CLAUDE.md"
}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "99 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 99,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 67,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [
"tsconfig.json"
],
"agent_commit_share": 0.15,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": "eslint.config.js",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "eslint.config.js"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "tsconfig.json"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "15 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 15,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "TypeScript",
"largest_source_bytes": 35641,
"source_files_sampled": 352,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "TypeScript (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "TypeScript"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/352 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 352,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-25T07:43:07.102029Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/v/vidaldiego/znvault-cli.svg",
"full_name": "vidaldiego/znvault-cli",
"license_state": "absent",
"license_spdx": null
}