Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 5187,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 1854249,
"Solidity": 153882
},
"pushed_at": "2026-07-27T12:12:41Z",
"created_at": "2026-05-22T10:41:45Z",
"owner_type": "User",
"updated_at": "2026-07-27T12:13:03Z",
"description": "A Go-based CLI & SDK for auditing Solidity smart contracts using rule-based templates with WQL query language.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "th13.vn",
"name": "Thien (Thirtin) Tran",
"type": "User",
"login": "th13vn",
"company": null,
"location": null,
"followers": 12,
"avatar_url": "https://avatars.githubusercontent.com/u/47786126?v=4",
"created_at": "2019-02-19T14:56:50Z",
"is_verified": null,
"public_repos": 42,
"account_age_days": 2716
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.4.1",
"kind": "patch",
"published_at": "2026-07-27T09:42:30Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-07-20T09:16:36Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-06-22T06:45:40Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-06-22T06:35:08Z"
}
],
"recent_commits": [
{
"oid": "ecf8a1239eb2165c0c1e7a56cc982ac3b726f5c3",
"body": "data/xref.json and the import-resolution heuristics shipped without their\nuser-facing documentation. Close the gap and cut v0.4.1 (additive; output\nschema stays 2.0.0).\n\nxref.json now documented in README.md (feature bullet, result-folder tree, docs\nindex), root INDEX.md (pipeline diagram, result-fo\n[…]\nd: TP 109 / FP 41 / FN 0 (precision 72.67%, recall 100%, zero\nfailed cases), stored as the dated benchmark report. go vet ./... and\ngo test ./... clean.\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(release): document xref.json + import heuristics, bump to v0.4.1",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-27T09:59:00Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "cd41eea33ab9600a1773b9818bc7e201495235a3",
"body": "Verified sources fetched from block explorers (Etherscan standard-JSON /\nmulti-file) frequently ship import prefixes such as \"@prb/math/\" or\n\"@openzeppelin/contracts/\" with no remappings file, so the prefix cannot be\npredicted, only reconstructed. Add two heuristics that run only for an import\nremap\n[…]\nnostic, so\n--strict-imports behavior is unchanged. The suffix walk is bounded by\nsuffixWalkFileLimit and skips hidden/VCS directories.\n\nCo-Authored-By: Codex <267193182+codex@users.noreply.github.com>",
"is_bot": false,
"headline": "feat(reader): last-resort import-resolution heuristics",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-27T09:59:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "719e2213b5a2ba4c91fe81ebeac4afd358b69cf2",
"body": "Bind AST call nodes to their resolved call-graph target (internal/external/\nlibrary using) by call-site byte, capture user-defined value types\n(Database.UserDefinedValueTypes) and bind T.wrap/T.unwrap to the UDVT decl,\nresolve non-call member-field reads via the receiver's type contract id,\ncapture \n[…]\nl. References 288 -> 412\n(+function/library/udvt/type/modifier kinds); precise go-to-def/refs now cover\nmember calls and the wrap example without regex.\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(xref): resolve member calls, library using, UDVT, modifiers, casts",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-27T09:58:22Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "54738e62ed39d92d5de8441ba497a14164d2c982",
"body": "Add data/xref.json (additive, schema 2.0.0): declarations[] (contracts,\nfunctions, params, state vars, events, errors, structs, enums, modifiers,\nlocals) + references[] (every refId-bearing occurrence with an exact token\nrange). Backfill source positions onto identifier nodes anchored to a located\np\n[…]\nnd revert->error and emit->event occurrences. Enables exact go-to-definition\nand find-references without regex for vars, params, locals, events, errors.\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(xref): precise cross-reference artifact for editor navigation",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-27T09:57:36Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "0c6ffdb1cb53769d85b0ae4d388ad12adad0be96",
"body": "benchmarkHarnessAvailable only checked that scripts/benchmark/templates\nexisted as a directory, so an empty/partial skeleton (e.g. dirs left behind\nafter a 'git clean' removed the now-ignored harness files) read as present and\nthe benchmark-dependent tests failed on missing fixtures instead of skipp\n[…]\ne regular files, so a partial tree correctly reads as absent\nand the tests skip. Verified: full 'go test ./pkg/...' passes with the harness\npresent (tests run) and with it absent/partial (tests skip).",
"is_bot": false,
"headline": "test(engine): harden benchmark-harness detection against partial trees",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T10:02:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "112b8458f4d21f2b42a48a3d6a594f516c0d7716",
"body": "… harness)\n\nPer maintainer decision, the entire scripts/ tree is dev-only tooling and is no\nlonger tracked/published — including the competitive benchmark harness moved\nthere in a51cd0e. benchmarks/ still tracks the dated result reports.\n\n- .gitignore: /scripts/ (drop the !/scripts/benchmark excepti\n[…]\nrness present and with it hidden (fresh-clone simulation).\n- Docs (INDEX, README, benchmarks/README, CHANGELOG) mark the harness as\n dev-only/git-ignored and not part of a fresh clone or the release.",
"is_bot": false,
"headline": "chore!: make scripts/ fully dev-only and git-ignored (incl. benchmark…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T09:45:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d6e4524127428ba7c58e99f5f09938d127e89d85",
"body": "…pat notes\n\n- Fold the eight stacked Unreleased sections + the premature 2026-07-13\n v0.4.0 header into one dated v0.4.0 - 2026-07-20 release entry with themed\n subsections (no content lost; nested headers re-leveled). Add a SemVer note.\n- Reconcile the historical 'Docker-only benchmark' bullet wi\n[…]\nnt is already 0.4.0. All gates green: go test ./... + -race,\nvet, gofmt, staticcheck, gocyclo, govulncheck, markdown links, competitive\nbenchmark TP 109 / FP 41 / FN 0 (precision 72.67%, recall 100%).",
"is_bot": false,
"headline": "docs(release): consolidate CHANGELOG into v0.4.0, template v2.0.0 com…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T09:12:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a093a1d18ad8096c0cccaaa6902f193e5760e6f1",
"body": "…harness\n\nUn-ignoring /scripts/ to track the benchmark harness also swept in dev-only\ntooling that was never meant to publish: scripts/template-forge/ (its own\n.gitignore notes it relied on the repo-level /scripts/ ignore) and the personal\ncheck_markdown_links.py helper. Neither was in origin/main; \n[…]\nable benchmark harness ships while dev tooling stays local. No secrets\nwere exposed (template-forge's nested .gitignore kept .env/node_modules/caches\nuntracked; .env.example holds empty placeholders).",
"is_bot": false,
"headline": "chore(gitignore): keep scripts/ dev-tooling private except benchmark …",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T09:07:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a8ab46cefd2ca060463e08fcb8b8cde5f00e509b",
"body": "Re-compared docs to implementation after the harness relocation and found\nthree user docs still asserting Docker Compose as the ONLY benchmark host\nentry point, plus a stale test-data fixture path:\n\n- docs/workflows.md, docs/project-overview.md, docs/usage.md: present the\n local CLI (run_benchmark.\n[…]\nder, state_write, guarded_by, where-only default,\nreceiver_name, or-union dedup, 106 templates, SARIF unicodeCodePoints) all\nverified against pkg/engine + pkg/builder; no code-vs-doc mismatch remains.",
"is_bot": false,
"headline": "docs: correct benchmark workflow to local-CLI-primary across docs/",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T08:42:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9f0c2c0ace149631be307797753c41312acce734",
"body": "Local CLI run at the post-relocation, gates-green state: TP 109 / FP 41 /\nFN 0, precision 72.67%, detection rate 100%, F1 84.17%, thresholds pass.",
"is_bot": false,
"headline": "docs(benchmarks): store 2026-07-20 competitive result (v0.4 gates green)",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T04:16:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e715729b5a765a6e65f262b72df8588dfbbb7d01",
"body": "… harness move\n\nThe corpus answer keys still pointed target/templates/semgrep_config at\nbenchmarks/; run_benchmark.py resolved them against the repo root and failed.\nAll suite JSONs now reference scripts/benchmark/ paths; verified by a full\nlocal competitive run (TP 109 / FP 41 / FN 0, thresholds pass) and the 71\nharness unit tests.",
"is_bot": false,
"headline": "fix(benchmarks): update corpus and semgrep-config fixture paths after…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T04:16:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6766c3a8875ffa61b17824fd720587e3d31bb37a",
"body": "- Remove unused functionIdentityText (builder) and lowerAssignment (engine)\n- S1003: use strings.ContainsAny for exponent-marker scan\n- Split semanticAnalyzer.lowerNode (gocyclo 53) into a pure kind dispatcher\n plus per-kind helpers (assign, variable declaration, access expression,\n unary mutation, state mutation, return, Yul storage access, Yul terminal);\n behavior-preserving extraction, all engine/builder tests unchanged and green",
"is_bot": false,
"headline": "refactor(engine,builder): clear release gates in semantic WIP",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T04:12:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1aa96f82ca68b9fdc633483119375c5b3956f8d5",
"body": "… stores results\n\n- Relocate runner, scoring, adapters, corpora, fixtures, WQL template ports,\n config, Docker files, and threshold gate to scripts/benchmark/ (un-ignore\n /scripts/ in .gitignore)\n- benchmarks/ now stores results only: tracked dated reports named\n yyyy-mm-dd-<commit-slug>.md plus \n[…]\nine tests, README, INDEX,\n CONTRIBUTING, docs/, templates/INDEX, corpus SCHEMA\n- Update host-workflow contract tests to the new policy (local CLI documented,\n compose mount ../../benchmarks/results)",
"is_bot": false,
"headline": "refactor(benchmarks)!: move harness to scripts/benchmark, benchmarks/…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T04:09:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "09400df536d333c5bf6ef4bbb0a09a59ccf4c820",
"body": "Three-wave uncommitted work from 2026-07-18..20 secured as one baseline:\n\n- WQL correctness: independent repeated not:, and: positive-anchor rule,\n or-union dedup identity, sound unchecked_var proofs, exact _msgSender()\n caller identity, select-less sequence anchoring, Attr cycle/depth guards\n- En\n[…]\ns; gate\n passes at TP 109 / FP 41 / FN 0 (recall 1.0, precision 0.7267)\n- Docs: INDEX/docs synchronized and pinned by doc-truth tests\n\nCo-Authored-By: Codex <267193182+codex@users.noreply.github.com>",
"is_bot": false,
"headline": "feat(v0.4): correctness closure + semantic hardening foundation",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-20T04:04:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "eafe21925e63f0ac21e8823028d46af532999750",
"body": "…ny, full template migration\n\nBREAKING: a template is now meta: plus one query: container; the former\ntop-level select/from/where triple moved under query:. All 106 repository\ntemplates (official/feature-test/benchmark) migrated. Finding output\nverified byte-identical to the pre-migration baseline o\n[…]\nSON round-trip of Queries, arg.any end-to-end, and: alias parity,\ndegenerate query shapes; inline test templates and the 106-file pack\nmigrated. Full suite, -race, vet, staticcheck, gocyclo all green.",
"is_bot": false,
"headline": "feat(wql)!: query composition — query: container with and:/or:, arg.a…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-16T18:39:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3582e5dc042d05c1dd46a3a339d5478638e21380",
"body": "Snapshot of the uncommitted v0.4 working set outside the WQL surface, so the\nstage is saved before the WQL query-composition feature lands on top:\n\n- cmd: scan console/options/extract-resolve split, CLI INDEX\n- pkg/logging: new scan-local logger package; logging wiring tests across\n reader/report/t\n[…]\nrness (core/adapters/scoring/reporting), threshold\n gate, compose workflow, container/CLI tests; legacy corpora and scripts\n removed\n- docs/test-data: usage/extension-output updates and new fixtures",
"is_bot": false,
"headline": "chore(v0.4): stage in-flight correctness and hardening WIP",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-16T18:33:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2d0a806da6c737a7cef5763deae692d6e14aa4d9",
"body": "…, extension data layer, WQL v2)",
"is_bot": false,
"headline": "docs: update project/SDK/contributor docs for v0.4 (precise locations…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T17:35:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ced25096bc2e00cbb94bdf6fde634e8593d90c0c",
"body": null,
"is_bot": false,
"headline": "docs: WQL v2 language reference + INDEX/CHANGELOG/README updates",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T17:04:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2192160134c263eef3f9136700029dd97803d256",
"body": "…mapping parse error)",
"is_bot": false,
"headline": "fix(templates): quote regex in unprotected-initializer v2 (YAML flow-…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T16:57:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04cea2e0bb7b1018b26973edece934f3f11233f4",
"body": "Rewrite the 5 templates/test/*.yaml engine-feature fixtures from v1\nquery/scope/match to v2 select/from/where syntax, meta: unchanged.\nVerified identical findings against the v1 baseline (47 findings,\nempty diff) on test-data/core/engine-features.",
"is_bot": false,
"headline": "refactor(templates): migrate WQL feature-test templates to v2",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T16:53:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "681facf60a74e4b11631c6018dc77db02df4088f",
"body": null,
"is_bot": false,
"headline": "refactor(benchmarks): migrate 4naly3er-inspired templates to WQL v2",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T16:48:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8200f2c4a44ab565a4117acfb66675b433eeefc3",
"body": null,
"is_bot": false,
"headline": "refactor(benchmarks): migrate decurity templates to WQL v2 (batch 4)",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T16:26:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "577ed57d3f50b9f4b172a412259eb45644b81654",
"body": null,
"is_bot": false,
"headline": "refactor(benchmarks): migrate decurity templates to WQL v2 (batch 3)",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T16:25:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d88b78bc9a3e12006c6ea348c738cb92f843614",
"body": null,
"is_bot": false,
"headline": "refactor(benchmarks): migrate decurity templates to WQL v2 (batch 2)",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T16:23:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f82294da375fe63e12a5bd4bec302ee8937af25",
"body": null,
"is_bot": false,
"headline": "refactor(benchmarks): migrate decurity templates to WQL v2 (batch 1)",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-12T16:22:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef2a8919b019b3f2bd6282db94361f1417062d79",
"body": null,
"is_bot": false,
"headline": "refactor(benchmarks): migrate slither-inspired templates to WQL v2",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-10T06:40:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c78c00a07004f806c0b867c76c78d107869f0a98",
"body": "Behavior-preserving migration of the last v1 `query:` templates to the v2\nselect/from/where surface, closing the prior expressiveness gaps with the\nnewly extended left/right, statement_has, unchecked_var, modifier, optional\nselect, and outgoing_call/builtin_transfer/builtin_send/builtin_selfdestruct\nblock kinds. Full official differential gate (177 findings) is unchanged.",
"is_bot": false,
"headline": "refactor(templates): migrate remaining 11 official templates to WQL v2",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-10T06:30:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bff6b54a9f239047cdfbb07dba57890448ba365d",
"body": "…odifier, optional select, catalog adds)",
"is_bot": false,
"headline": "feat(engine): extend WQL v2 (left/right/statement_has/unchecked_var/m…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-10T06:11:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2e62a7428157a33c6743b466f7f11db20bdbf1c",
"body": "…ving)\n\nRewrite 14 of 25 templates/official/*.yaml from v1 query/filter/match to\nv2 select/from/where syntax, meta: unchanged. Verified identical findings\nagainst the v1 baseline (177 findings, empty diff) on test-data/security.\n\n11 templates use v1 features with no behavior-preserving v2 form yet\n(\n[…]\n\nmismatches between v2's select/where model and a v1 contains+sequence\ncombo or contract-scope pure-regex match) and are left as v1 — see\n.superpowers/sdd/c-b1-report.md for the full list and reasons.",
"is_bot": false,
"headline": "refactor(templates): migrate official pack to WQL v2 (behavior-preser…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-10T06:05:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "faef441360c75e2fc9c9954108fb2b8288d43f8b",
"body": "…harness",
"is_bot": false,
"headline": "feat(engine): load WQL v2 templates via lowering + differential-test …",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T18:23:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2747584ae0e2ede08a37d3c7a8b1fbd147eb5792",
"body": "… attr merge; guard multi-key not-preset",
"is_bot": false,
"headline": "fix(engine): correct WQL v2 layer-routing for nested guarded_by; safe…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T18:17:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b744517d3870af4da99a117766e43f0b7e924df6",
"body": "Add TemplateV2.lower(), mapping select/from/where onto Template{Scope,\nFilter, Match} exactly as the v1 evaluator already understands, so the\nevaluator itself stays untouched. Covers block/name/regex/tainted/\nvisibility/mutability/operator leaves, arg.N/has/in/guarded_by/sequence\nstructural matchers, any/all/not routing by AST-vs-context layer, the\nrenamed-preset polarity flip (bare vs not:), and the source/combo/\nsingle-select/sequence Match-shape cases from the language spec's\nworked examples.",
"is_bot": false,
"headline": "feat(engine): lower WQL v2 to the v1 Rule IR",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T18:03:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72cb83d61cc587443af4099dab6bf41e03bd55b4",
"body": null,
"is_bot": false,
"headline": "fix(engine): route WQL v2 'name' to Rule.Name inline field, not attr map",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T17:53:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f4b2cfaeec6e1ad69e5d55f30099c662aa087aa",
"body": "Add blockKindToV1 (§5 block-kind catalog), attrNameToV1 (§7 attribute\ncatalog), and presetToV1 (§8 preset catalog, polarity-flipped) mapping\ntables that Task A3's lowering step will use to translate WQL v2\nselect/where matchers onto the existing v1 Rule IR. Every v1 target was\ncross-checked against \n[…]\ng/types/ast.go kind constants and\nKnownSemanticGroups, pkg/engine/verify.go's matchKind semantic-group\nswitch, pkg/builder SetAttribute call sites, and pkg/engine/presets.go's\nBuiltinPresets registry.",
"is_bot": false,
"headline": "feat(engine): WQL v2 -> v1 catalog mappings",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T17:46:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e1a00761d2c9c7d33a33fb750810f96d78e7fc6d",
"body": "Adds TemplateV2/MatcherV2 parsing scaffolding for the new select/from/where\ntemplate surface (Task A1). isV2Source distinguishes v2 docs (select/from,\nno query) from v1 docs; parseV2 decodes into TemplateV2 reusing the existing\nTemplateMeta. No lowering/wiring yet — v1 loader path is untouched.",
"is_bot": false,
"headline": "feat(engine): WQL v2 template structs + auto-detecting parser",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T17:40:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b70735eafc4d289c72c24df942720aebba9f60e",
"body": "…(A+B wiring)",
"is_bot": false,
"headline": "feat(report): emit nav.json + explorer.json for the VSCode extension …",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T17:08:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8659705194db1a126fcdd88c1e5f0f54348de0f7",
"body": "…lated, WQL improvements, template metadata, docs)\n\nCommitted as one reversible baseline so v0.4 work (A+B wiring) sits on a\nstable, standalone-building tree. Reorganize into finer commits with\ngit reset --soft if desired. Also gitignores the /security/ scan-output folder.",
"is_bot": false,
"headline": "wip: in-progress feature baseline (report bundle refactor, Finding.Re…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T17:03:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0fb80e8cda0d5c7ccf3681b75cebcf3049be317c",
"body": "…lders",
"is_bot": false,
"headline": "feat(report): deterministic ordering for nav.json + explorer.json bui…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T16:54:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89e2f2fd8b0e56b527f98ee6307e406236d9f8ff",
"body": null,
"is_bot": false,
"headline": "chore: gitignore .superpowers and untrack committed .vscode design doc",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T16:40:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "54c97ac290ccfa3b83d141386122ddfba49d2edb",
"body": "… require body) + tighten test",
"is_bot": false,
"headline": "fix(report): correct interface-impl resolution (self-contract lookup,…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T15:30:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4552f7331775485427792c732a57aff710f5234b",
"body": "Adds resolveInterfaceImpls to walk each interface method against\nimplementing contracts' MRO (LinearizedBases) and record the\nmost-derived matching selector as the concrete implementation,\npopulating NavJSON.InterfaceImpl in BuildNavJSON.",
"is_bot": false,
"headline": "feat(report): materialize interface->implementation map in nav.json",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T15:24:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b05f8125387b22b47f6a237071f5cddc8e5d88eb",
"body": null,
"is_bot": false,
"headline": "feat(report): nav.json symbols + caller edges with precise ranges",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T15:19:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "589d416d4979a26f1f5c641de5bd7635590c3d9e",
"body": "…+ entry/getter functions)",
"is_bot": false,
"headline": "feat(report): explorer.json model + BuildExplorerJSON (ordered state …",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T15:14:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d74b88539f1bc6ad67589440c7108c3107b923d",
"body": "…, keep location fields\n\nThe pre-F function.go WIP baseline (11f38a2) changed ComparesCallerIdentity's\nsignature but its callers (presets.go, verify.go) live in still-uncommitted\nWIP, so the F branch did not build standalone. Revert the method-body WIP\nhere (keeping only F's additive location struct fields); the working-tree WIP\nis restored uncommitted afterward.",
"is_bot": false,
"headline": "refactor(F): decouple F from function.go WIP — revert method-body WIP…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T15:00:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de567b9957f0e6cae99b474d42091ac3ea9427fd",
"body": "…den location tests",
"is_bot": false,
"headline": "fix(F): correct stale location comments, locate try/catch blocks, har…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T11:49:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3b5e99a30923ab9b83ece78de4affeb596768c8",
"body": "Document the new StartCol/EndCol/StartByte/EndByte fields on\ntypes.ASTNode and every declaration type, the Col/Byte pair on\nFunctionCall/CallEdge, and the pkg/builder/location.go helpers\n(spanFields/applySpan) plus the build*/build*Inner dispatch chokepoints\nthat stamp them onto interior AST nodes. \n[…]\nAST nodes carry no source\npositions, and bump the report schemaVersion references in docs/usage.md\nand pkg/report/INDEX.md from 1.0.0 to 2.0.0 (the separate extract\nschema constant is left untouched).",
"is_bot": false,
"headline": "docs: document precise-location fields (v0.4 F)",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T11:26:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cc3af0b1f192ae643a79cce0326712d5caed0d54",
"body": "…ound-trip test",
"is_bot": false,
"headline": "feat(report): bump schema to 2.0.0 for precise-location fields; add r…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T11:14:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b27ae491f251758b9e11de32fe398564bb354dc7",
"body": "analyzeFunctionEffects now sets Line: n.StartLine on every StateWrite\nand Guard it constructs, using the interior-node source positions that\nTask 2 added to the AST builder. Previously these fields stayed 0.",
"is_bot": false,
"headline": "feat(builder): populate Line on state writes and guards in effects",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T11:10:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0220b657edb44651e05a1e31fe58c3bfdaaf6748",
"body": "Task 5's call-site column/byte capture was dormant because solast-go\nv0.1.6 never set Loc/Range on call/member/index postfix expressions.\nv0.1.7 fixes that upstream, so FunctionCall.Col/Byte now populate and\nTestCallSiteHasColumn asserts instead of skipping.",
"is_bot": false,
"headline": "build: bump solast-go to v0.1.7 (call-expression source locations)",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T11:05:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd9202c3ac454a486f7364de92e6aa126041ec52",
"body": null,
"is_bot": false,
"headline": "feat(types,builder): capture call-site column and byte offset",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T10:56:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db93c4b846e540df205ca46691c3f47218c97dd6",
"body": "…struct/enum/parameter",
"is_bot": false,
"headline": "feat(types,builder): add source location to contract/state-var/event/…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T10:42:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6150a9de3980b56d8557cdd24eb526d03e12c9d",
"body": "…modifiers\n\nAdds StartCol/EndCol/StartByte/EndByte to types.Function and types.Modifier,\nand switches extractFunction/extractModifier in the builder to populate the\nfull span via spanFields instead of only line numbers.",
"is_bot": false,
"headline": "feat(types,builder): capture column + byte offsets for functions and …",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T10:37:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11f38a2de70e40c683b7beb3354220db652fbbdb",
"body": null,
"is_bot": false,
"headline": "wip: in-progress function.go changes (pre-F baseline)",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T10:34:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c598904c2a0a1a6b36fab418b3a7d255c5284b6d",
"body": "…ch chokepoints",
"is_bot": false,
"headline": "feat(builder): stamp source location on interior AST nodes via dispat…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T10:22:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d87d862847bc9cab3ae94368e7f87baf7b4bf69c",
"body": "…elper",
"is_bot": false,
"headline": "feat(types): add col/byte location fields to ASTNode + builder span h…",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-09T10:15:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2dfbd7bdb02d9bc95eafcd92a1b8637931ab095",
"body": null,
"is_bot": false,
"headline": "docs: add AI report drafting design",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-07-01T08:41:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5c1bc55c555e5b8248fc64bc121eb12d702bcbd",
"body": null,
"is_bot": false,
"headline": "docs: update CHANGELOG for v0.3.1",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-06-22T06:45:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03f958f23b20cad6e1233f5f78feac74f7713ea9",
"body": null,
"is_bot": false,
"headline": "change to v0.3.1",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-06-22T06:43:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3993c35523951ef0f07f7250696e43c25f700484",
"body": null,
"is_bot": false,
"headline": "remove old benchmark results",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-06-22T06:39:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4792cdcd3b9d82296f9feaaf9d9bfafae00f9a56",
"body": null,
"is_bot": false,
"headline": "Release v0.3.0 audit workspace",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-06-22T06:14:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97408887707fb5bac0d124aa0095013f2ec95e02",
"body": "Go CLI + SDK that builds a contract database (AST, C3 inheritance, call\ngraph, selectors, entry points, semantic type facts) and scans it with\nWQL detector templates.\n\nLayout:\n- templates/official/ — curated, embedded detector pack (the default scan)\n- templates/test/ — WQL engine feature-exerc\n[…]\nance correctness — C3 linearization, state-variable storage order,\nand MRO-based function-override binding — is pinned against solc 0.8.20 by\ntest-data/core/build-database/10-override-state-order.sol.",
"is_bot": false,
"headline": "w3goaudit: Solidity static-analysis engine with WQL templates",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-06-22T06:13:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e4d15fefd1aa373642ad9e788af4c3dd320da250",
"body": "Repo is hosted at github.com/th13vn/w3goaudit, so the module path,\nimport paths, and docs needed to match for `go install` / `go get`\nto resolve correctly.",
"is_bot": false,
"headline": "Rename module from w3goaudit-engine to w3goaudit",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-05-25T07:32:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6c3db744e08e34c5ae45fa2e27e2a286f228f55",
"body": "Solidity smart contract security audit engine with WQL templates,\nbenchmarking corpus, and test data.",
"is_bot": false,
"headline": "Initial commit: w3goaudit static analysis tool",
"author_name": "th13vn",
"author_login": "th13vn",
"committed_at": "2026-05-22T10:45:58Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 63,
"latest_release_at": "2026-07-27T09:42:30Z",
"latest_release_tag": "v0.4.1",
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 7,
"days_since_latest_release": 1,
"mean_days_between_releases": 11.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 71,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/th13vn/w3goaudit",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/th13vn/w3goaudit",
"is_deprecated": false,
"latest_version": "v0.4.1",
"repository_url": "https://github.com/th13vn/w3goaudit",
"versions_count": 4,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-27T09:59:00Z",
"latest_version_yanked": null,
"days_since_latest_publish": 1
}
]
},
"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": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 688911,
"source_files_sampled": 155,
"oversized_source_files": 4,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/pelletier/go-toml/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.4.3"
},
{
"name": "github.com/spf13/cobra",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.2"
},
{
"name": "github.com/th13vn/solast-go",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.1.7"
},
{
"name": "golang.org/x/crypto",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.46.0"
},
{
"name": "gopkg.in/yaml.v3",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v3.0.1"
}
],
"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": "th13vn",
"commits": 63,
"avatar_url": "https://avatars.githubusercontent.com/u/47786126?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"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": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"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": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "project was created within the last 90 days. Please review its contents carefully",
"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": null,
"reason": "no dependencies found",
"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": 4,
"reason": "security policy file 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": null,
"reason": "No tokens found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "15 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "ecf8a1239eb2165c0c1e7a56cc982ac3b726f5c3",
"ran_at": "2026-07-28T22:30:45Z",
"aggregate_score": 1.8,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": true,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": null,
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/th13vn/w3goaudit",
"host": "github.com",
"name": "w3goaudit",
"owner": "th13vn"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 43,
"inputs": {
"security": 18,
"vitality": 74,
"community": 33,
"governance": 35,
"engineering": 48
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 74,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"commits_last_year": 63,
"human_commit_share": 1,
"days_since_last_push": 1,
"active_weeks_last_year": 7
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "7/52 weeks with commits",
"points": 4.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 7
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "63 commits in the last year",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 63
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"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": 4,
"latest_release_tag": "v0.4.1",
"releases_from_tags": false,
"days_since_latest_release": 1,
"mean_days_between_releases": 11.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 4
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~11.7 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 11.7
}
}
],
"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": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 33,
"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": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"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": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"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
}
]
}
],
"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": 10,
"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 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "moderate",
"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": 52,
"inputs": {
"followers": 12,
"owner_type": "User",
"is_verified": null,
"owner_login": "th13vn",
"public_repos": 42,
"account_age_days": 2716
},
"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": "12 followers of th13vn",
"points": 8,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 12,
"login": "th13vn"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "42 public repos, account ~7 yr old",
"points": 23.9,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 42
}
},
{
"code": "account_age_years",
"params": {
"years": 7
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/th13vn/w3goaudit"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 1
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 1 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 1
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "4 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 4
}
}
],
"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": "at_risk",
"name": "Engineering Quality",
"value": 48,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"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": 30,
"inputs": {
"has_ci": false,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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": "critical",
"name": "Security",
"value": 18,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 18,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 12,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 6,
"scorecard_aggregate": 1.8
},
"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 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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 detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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 detected",
"points": 2,
"status": "partial",
"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": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "15 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 65,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.952,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"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": "60 of 63 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 60,
"sampled": 63
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 72,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.048,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "go.mod"
}
}
],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"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": "3 of the last 63 commits agent-authored or agent-credited",
"points": 9.5,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 3,
"sampled": 63
}
}
],
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 99,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 688911,
"source_files_sampled": 155,
"oversized_source_files": 4
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "4/155 source files over 60KB",
"points": 53.6,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 155,
"oversized": 4
}
}
],
"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-28T22:30:49.877276Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/t/th13vn/w3goaudit.svg",
"full_name": "th13vn/w3goaudit",
"license_state": "standard",
"license_spdx": "MIT"
}