Skip to content

feat(ledger): declare unrecoverable rows instead of failing forever - #9863

Merged
JSONbored merged 2 commits into
mainfrom
feat/ledger-content-waiver
Jul 29, 2026
Merged

feat(ledger): declare unrecoverable rows instead of failing forever#9863
JSONbored merged 2 commits into
mainfrom
feat/ledger-content-waiver

Conversation

@JSONbored

@JSONbored JSONbored commented Jul 29, 2026

Copy link
Copy Markdown
Owner

Refs #9850 · #9857 has merged; this branch was rebuilt directly on main and now applies cleanly on its own.

The problem this closes

Rows whose record preimage is genuinely gone — the 83 rows (seq 5–257) left by the record-overwriting UPDATE that #9123 replaced — can never be reconciled. Rewriting those records so the digests match would be exactly the tampering this ledger exists to detect.

#9857 stopped one such row from blinding the rest of the chain. It did not solve the remaining problem: /verify reports ok: false forever, and a permanently-red endpoint is one nobody reads — a worse public signal than a green one carrying an explicit, counted exclusion.

The mechanism

LOOPOVER_LEDGER_CONTENT_WAIVER, format <fromSeq>-<toSeq>:<reason>. Four properties make this a disclosure rather than a cover-up. Each is enforced in code and pinned by a test:

Property Why it matters
Bounded by seq, not time A date boundary drifts — as the clock advances it silently swallows new damage. A seq range is fixed forever; only an explicit edit widens it. (The retention cutoff gets to be time-based because it tracks a published policy that genuinely moves. This does not.)
Both ends required An open-ended waiver is a blanket exemption wearing a range's clothes.
A reason is mandatory You cannot waive silently, and the text is published alongside the count.
Content only The content check runs after sequence/predecessor/row_hash have passed, so a waived row that is mis-chained still fails. There is a test for exactly this.

Deliberate design choices

  • Counted separately, never folded in. waivedContentMismatches is its own field; contentMismatches stays 0 when everything is declared. "83 rows are excused" must never render as "83 rows are fine".
  • Published even on a clean chain. The declaration shouldn't require a failure to become visible — a reader can see what's excluded before anything goes wrong.
  • Per-deployment, not in the codebase. This is one operator's damage. Hardcoding a seq range into the product would assert something about every operator's ledger.
  • Fails closed. A malformed value waives nothing rather than widening the exclusion on a typo — and preflight surfaces it, because a set-but-ineffective value is the dangerous one (same reasoning as the half-configured-anchoring check it sits beside).

Tests

Eleven cases. The load-bearing ones:

  • a mismatch outside the range still fails — the bound is real, not paperwork
  • a waiver never excuses a structural break inside its own range
  • a malformed waiver waives nothing and the failure is still reported
  • reason and both bounds are mandatory; descending/zero-based ranges rejected
  • waived and unwaived counts stay separate when both are present

Validation

tsc --noEmit · selfhost:config-lint · docs:drift-check · import-specifiers:check · dead-source-files:check — clean. 95 tests across decision-record, preflight and the public ledger routes.

Every line and branch I changed in decision-record.ts and preflight.ts is covered — verified against the coverage JSON restricted to the changed ranges. The one uncovered branch in the file (line 700) is outside them and pre-existing.

OpenAPI description updated, apps/loopover-ui/public/openapi.json regenerated in the same commit, and .env.selfhost.example documents the format and the reasoning.

For your instance

Once this ships, the declaration would be:

LOOPOVER_LEDGER_CONTENT_WAIVER=5-257:rows written before the #9123 record-overwrite fix

I have not set it on edge-nl-01 — that's a claim about your ledger's integrity, and it should be your call to publish, not mine to apply.

@loopover-orb

loopover-orb Bot commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

Warning

⏸️ LoopOver review result - manual review recommended

Review updated: 2026-07-29 16:06:30 UTC

9 files · 1 AI reviewer · 1 blocker · CI green · clean

⏸️ Suggested Action - Manual Review

Review summary
This PR adds a bounded, seq-based content-mismatch waiver (LOOPOVER_LEDGER_CONTENT_WAIVER) to verifyDecisionLedger, letting an operator declare known-unrecoverable rows as excused-but-counted rather than having /verify fail forever. The parse function fails closed on malformed input, the waiver only ever applies after chain checks (sequence/predecessor/row_hash) have already passed, and waived vs. unwaived mismatches are tracked in separate fields — never folded together. Wiring is complete: preflight validation, env.d.ts typing, .env.selfhost.example docs, OpenAPI/spec.ts description updates, and a thorough test suite covering the parse edge cases and the invariant that a waiver never excuses a structural break.

Nits — 5 non-blocking
  • src/review/decision-record.ts: the seq range check `row.seq >= contentWaiver.fromSeq && row.seq <= contentWaiver.toSeq` runs on every row inside the hot loop — negligible cost given a single waiver, but worth a comment noting it's O(1) per row, not a lookup.
  • Magic numbers like `9123` (the bug-fix issue number) appear directly in comments/doc text rather than as a named constant — acceptable here since they're documentation references, not logic, but flagged for consistency.
  • Consider adding a test for a waiver whose range covers zero actual mismatches (waivedContentMismatches stays 0) — currently only implicitly covered by the 'publishes on a clean chain' test with a corrupted row absent.
  • decision-record.ts: the JSDoc block is quite long (60+ lines) for a single function; consider trimming to the property list and moving the full rationale to the PR description/docs site, per repo convention elsewhere in this file.
  • openapi.json/spec.ts descriptions are now very dense single-line strings; consider breaking the contentWaiver explanation into a separate documented schema type instead of prose in the endpoint description for future maintainability.

Concerns raised — review before merging

  • No linked issue detected: No closing reference or linked issue number was found in the PR metadata/body. — If this PR is intended to solve an issue, link it explicitly in the PR body.
📋 Copy for AI agents — paste into your coding agent
Fix the following blocker(s) from this PR review:

1. No linked issue detected: No closing reference or linked issue number was found in the PR metadata/body. — If this PR is intended to solve an issue, link it explicitly in the PR body.

Decision drivers

  • ❌ Code review — 1 blocker (1 reviewer)
  • ❌ Gate result — Blocking (Repo-configured hard blocker found.)
Context & advisory signals — never blocks the verdict
Signal Result Evidence
Linked issue ✅ No-issue rationale PR body explains why no issue is linked.
Related work ✅ No active overlap found No same-issue or scoped active PR overlap found.
Change scope ✅ 20/20 Low review scope from cached public metadata (no linked issue context).
Validation posture ✅ 25/25 PR body includes validation/test evidence.
Contributor workload ✅ 10/10 Author activity: 14 registered-repo PR(s), 13 merged, 330 issue(s).
Contributor context ✅ Confirmed Gittensor contributor JSONbored; Gittensor profile; 14 PR(s), 330 issue(s).
Improvement ✅ Minor risk: clean · value: minor · LLM: significant
Review context
  • Author: JSONbored
  • Role context: owner (maintainer lane)
  • Public audience mode: oss maintainer
  • Lane context: Repository is registered but has no active allocation in the current snapshot.
  • Public profile languages: Python, TypeScript, Ruby, Go, MDX, Shell, Solidity, JavaScript
  • Official Gittensor activity: 14 PR(s), 330 issue(s).
  • PR-specific overlap: none found.
Contributor next steps
  • Start here: Treat this as maintainer-lane context rather than normal contributor-lane activity.
  • Then work through the remaining 1 step in the Signals table above.
Signal definitions
  • Related work = same linked issue, overlapping active PRs, or title/path similarity.
  • Change scope = cached public metadata such as size labels, draft state, and review-burden hints.
  • Validation posture = whether the PR provides enough public validation/test evidence for maintainer review.
  • Contributor workload = public contributor activity and cleanup pressure, not a repo-wide quality failure.
  • Contributor context = public GitHub/Gittensor identity context; non-Gittensor status is not a blocker.
🧪 Chat with LoopOver

Ask LoopOver a question about this PR directly in a comment — grounded only in the same cached, public-safe facts shown above, never a new claim.

  • @loopover ask &lt;question&gt; answers contribution-quality Q&A with source citations and freshness.
  • @loopover chat &lt;question&gt; answers in natural prose from cached decision-pack facts via local inference (maintainer/collaborator; read-only).
  • A plain-language @loopover mention with a real question is routed to the closest matching read-only command automatically — no exact syntax required.

Full command reference: https://loopover.ai/docs/loopover-commands

🧪 Experimental — new and may change.

Decision record
  • action: hold · clause: missing_linked_issue
  • config: 63021ab8dbac6432dee29bc37505f5004c7c3f3cae7635151855349121b8f041 · pack: oss-anti-slop · ci: failed
  • record: 85b0a2f1cbebb6e3eb35b937522146ce2d0e1eb7a0d24dcf18ec008c8c00d6c3 (schema v5, head bde672f)
Visual preview
Route Viewport Before (production) After (this PR's preview) Diff
/ desktop before /
before /
after /
after /
/ mobile before / (mobile)
before / (mobile)
after / (mobile)
after / (mobile)

Click any thumbnail to open the full-size screenshot. Before = production · After = this PR's preview deploy.

Scroll preview
Route Before (production) After (this PR's preview)
/ before / (scroll)
before / (scroll)
after / (scroll)
after / (scroll)

A short scroll-through clip (desktop) — click either thumbnail to open the full animation. Evidence for scroll-linked behavior a single screenshot can't show.

🟩 Safe / merged · 🟦 Advisory · 🟨 Held for review · 🟥 Blocked / closed


💰 Earn for open-source contributions like this. Gittensor lets GitHub contributors earn for the work they already do — register to start earning →.

Checked by LoopOver, a quiet PR intelligence layer for OSS maintainers.

  • Re-run LoopOver review

@superagent-security

Copy link
Copy Markdown
Contributor

Superagent didn't find any vulnerabilities or security issues in this PR.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jul 29, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
loopover-ui f85e8ce Commit Preview URL

Branch Preview URL
Jul 29 2026, 03:46 PM

@codecov

codecov Bot commented Jul 29, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 90.86%. Comparing base (39239df) to head (f85e8ce).
⚠️ Report is 2 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #9863      +/-   ##
==========================================
- Coverage   91.74%   90.86%   -0.88%     
==========================================
  Files         917      917              
  Lines      112901   112921      +20     
  Branches    27159    27167       +8     
==========================================
- Hits       103581   102610     -971     
- Misses       8034     9223    +1189     
+ Partials     1286     1088     -198     
Flag Coverage Δ
backend 94.12% <100.00%> (-1.57%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/openapi/spec.ts 99.27% <ø> (ø)
src/review/decision-record.ts 100.00% <100.00%> (ø)
src/selfhost/preflight.ts 100.00% <100.00%> (ø)

... and 3 files with indirect coverage changes

A row whose record preimage is genuinely gone -- the rows the pre-#9123
record-overwriting UPDATE left behind -- can never be reconciled again.
Rewriting those records so the digests match would be exactly the tampering this
ledger exists to detect, so the only honest options are to fail forever or to
declare the damage. A permanently-red endpoint is one nobody reads, which is a
worse public signal than a green one carrying an explicit, counted exclusion.

LOOPOVER_LEDGER_CONTENT_WAIVER, format "<fromSeq>-<toSeq>:<reason>". Four
properties make it a disclosure rather than a cover-up, each enforced and tested:

  * BOUNDED BY SEQ, NOT TIME. A date boundary drifts -- as the clock advances it
    silently swallows new damage. A seq range is fixed forever; only an explicit
    edit widens it. (The retention cutoff is time-based because it tracks a
    published policy that genuinely moves. This does not.)
  * BOTH ENDS REQUIRED. An open-ended waiver is a blanket exemption wearing a
    range's clothes.
  * A REASON IS MANDATORY. You cannot waive silently, and the text is published.
  * CONTENT ONLY. The content check runs after sequence/predecessor/row_hash have
    already passed, so a waived row that is mis-chained still fails.

Waived mismatches are counted SEPARATELY and never folded into contentMismatches:
"83 rows are excused" must never read as "83 rows are fine". The range and the
count are published even on a clean chain, so the declaration does not require a
failure to become visible.

Per-deployment, because this is one operator's damage -- hardcoding a range into
the product would assert something about every operator's ledger. Malformed
values waive NOTHING rather than widening the exclusion on a typo, and preflight
surfaces them, since a set-but-ineffective value is the dangerous one.

Refs #9850
@JSONbored

Copy link
Copy Markdown
Owner Author

Rebuilt on current main now that #9857 has merged — the conflicts were both sides carrying that change (squashed on main, a commit here). Rather than resolve 13 conflict hunks across four files, I reset to main and cherry-picked the waiver commit alone; it applied clean.

Re-verified after the rebuild: tsc --noEmit, 113 tests across decision-record / preflight / public-ledger-routes, and ui:openapi:check, selfhost:config-lint, docs:drift-check, import-specifiers:check, dead-source-files:check all clean.

…TENT_WAIVER

gen-selfhost-env-reference scans process.env reads under src/selfhost/**, and
the new waiver is read by preflight.ts -- so adding it made the generated
apps/loopover-ui/src/lib/selfhost-env-reference.ts stale. Generated output,
committed alongside the change that caused it.
@codecov

codecov Bot commented Jul 29, 2026

Copy link
Copy Markdown

Bundle Report

Changes will increase total bundle size by 1.02kB (0.01%) ⬆️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.9MB 1.02kB (0.01%) ⬆️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-Dc-g5Pmf.js (New) 2.16MB 2.16MB 100.0% 🚀
assets/tanstack-vendor-B1DUZWR5.js (New) 930.96kB 930.96kB 100.0% 🚀
openapi.json 477 bytes 749.94kB 0.06%
assets/docs.fumadocs-spike-api-reference-CMJ7SSOd.js (New) 443.45kB 443.45kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-CrGR-L-C.js (New) 201.7kB 201.7kB 100.0% 🚀
assets/modal-D957aWET.js (New) 184.5kB 184.5kB 100.0% 🚀
assets/client-CHNi958Z.js (New) 151.47kB 151.47kB 100.0% 🚀
assets/self-hosting-configuration-1mklU-_N.js (New) 116.4kB 116.4kB 100.0% 🚀
assets/maintainer-panel-DbdURm-m.js (New) 78.99kB 78.99kB 100.0% 🚀
assets/routes-CKgyvpha.js (New) 35.96kB 35.96kB 100.0% 🚀
assets/owner-panel-Cv6e3V6d.js (New) 28.18kB 28.18kB 100.0% 🚀
assets/app-CqeH2KZZ.js (New) 25.78kB 25.78kB 100.0% 🚀
assets/ui-vendor-4K6Mxmzt.js (New) 24.57kB 24.57kB 100.0% 🚀
assets/miner-panel-C9hDZN0E.js (New) 20.24kB 20.24kB 100.0% 🚀
assets/app.runs-OxmUFLxr.js (New) 20.22kB 20.22kB 100.0% 🚀
assets/api._op-BabpcFHB.js (New) 17.57kB 17.57kB 100.0% 🚀
assets/self-hosting-docs-audit-DJBgJap_.js (New) 16.6kB 16.6kB 100.0% 🚀
assets/docs._slug-B39NfJq9.js (New) 15.52kB 15.52kB 100.0% 🚀
assets/playground-panel-gu_u4Xjo.js (New) 14.42kB 14.42kB 100.0% 🚀
assets/fairness-CcdknyxO.js (New) 13.98kB 13.98kB 100.0% 🚀
assets/app.audit-CumaLwv0.js (New) 10.08kB 10.08kB 100.0% 🚀
assets/app.config-generator-DYD5u7Cw.js (New) 10.06kB 10.06kB 100.0% 🚀
assets/maintainers-B80OOdtX.js (New) 8.06kB 8.06kB 100.0% 🚀
assets/miners-BNbArrOx.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/agents-tj_BlCsM.js (New) 7.74kB 7.74kB 100.0% 🚀
assets/commands-panel-D_Xkkevo.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/maintainer-workflow-BzGE896y.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/digest-panel-BoYDYf_6.js (New) 6.15kB 6.15kB 100.0% 🚀
assets/repos._owner._repo.quality-Dyt5y8TS.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs-nav-DpV9tWSP.js (New) 6.01kB 6.01kB 100.0% 🚀
assets/docs.index-Biyj_6De.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/api.index-CJKPEzcZ.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/docs-DugfjxCe.js (New) 2.7kB 2.7kB 100.0% 🚀
assets/api-B7HsMVE6.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-vx03-PvW.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-BORKpUeF.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench-BH1_5fMX.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/tabs-CsIExxzV.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-DmbONs7e.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-ChFZgwsX.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-COz1c1RN.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-fP4h5KFs.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/app.owner-CP5FhFTM.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-DBJCj5M6.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-C8ARqQOW.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-D5d42R7u.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-RvXljXqS.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-zYA7gRwE.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-mlS79oE9.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-CQlYuoQU.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-CRko2Fbq.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-DBMKnvpN.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-B-Zlka2A.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-DDbLFTGR.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/list-checks-BaOpaI6M.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/compass-DtwLXbd6.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-DZBvV0QT.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/message-square-JilBOcln.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-ByxJSqXN.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-DBI44TfX.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-7oLfR06_.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-CauigH64.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-DIL3C4-Y.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/add-scalar-classes-CPRhUdF_.js (Deleted) -2.16MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-CwpA0pUS.js (Deleted) -930.48kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-DZ56gGkg.js (Deleted) -443.45kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-D9Njlzb5.js (Deleted) -201.7kB 0 bytes -100.0% 🗑️
assets/modal-DsfQmfxt.js (Deleted) -184.5kB 0 bytes -100.0% 🗑️
assets/client-ClFC2X7M.js (Deleted) -151.47kB 0 bytes -100.0% 🗑️
assets/self-hosting-configuration-DoE8md-d.js (Deleted) -116.33kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-7cHoFeSY.js (Deleted) -78.99kB 0 bytes -100.0% 🗑️
assets/routes-DYC5qBUA.js (Deleted) -35.96kB 0 bytes -100.0% 🗑️
assets/owner-panel-BnUj2Ism.js (Deleted) -28.18kB 0 bytes -100.0% 🗑️
assets/app-BMhFyMwI.js (Deleted) -25.78kB 0 bytes -100.0% 🗑️
assets/ui-vendor-BRqfI_UO.js (Deleted) -24.57kB 0 bytes -100.0% 🗑️
assets/miner-panel-X-3rWUMP.js (Deleted) -20.24kB 0 bytes -100.0% 🗑️
assets/app.runs-CiLRAUgF.js (Deleted) -20.22kB 0 bytes -100.0% 🗑️
assets/api._op-Cw6olzFE.js (Deleted) -17.57kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-Cs3ZXcS9.js (Deleted) -16.6kB 0 bytes -100.0% 🗑️
assets/docs._slug-BVK9mPV3.js (Deleted) -15.52kB 0 bytes -100.0% 🗑️
assets/playground-panel-WbhUmo7y.js (Deleted) -14.42kB 0 bytes -100.0% 🗑️
assets/fairness-C5UVUQKo.js (Deleted) -13.98kB 0 bytes -100.0% 🗑️
assets/app.audit-DEwv7YQq.js (Deleted) -10.08kB 0 bytes -100.0% 🗑️
assets/app.config-generator-CwNeSB4t.js (Deleted) -10.06kB 0 bytes -100.0% 🗑️
assets/maintainers-CCJnNgvb.js (Deleted) -8.06kB 0 bytes -100.0% 🗑️
assets/miners-BfXJ3OG9.js (Deleted) -7.91kB 0 bytes -100.0% 🗑️
assets/agents-Vln5FyXa.js (Deleted) -7.74kB 0 bytes -100.0% 🗑️
assets/commands-panel-bsoMoKHq.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-CI_drEOp.js (Deleted) -6.52kB 0 bytes -100.0% 🗑️
assets/digest-panel-CPMW60zC.js (Deleted) -6.15kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-vj5Uz8hG.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs-nav-BFPmyYPy.js (Deleted) -6.01kB 0 bytes -100.0% 🗑️
assets/docs.index-juUtHZ2q.js (Deleted) -5.95kB 0 bytes -100.0% 🗑️
assets/api.index-B6N0X002.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/docs-Byv-rmrf.js (Deleted) -2.7kB 0 bytes -100.0% 🗑️
assets/api-DWtSRcia.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-page-Ck5df4Dk.js (Deleted) -2.1kB 0 bytes -100.0% 🗑️
assets/table-DAFE1koM.js (Deleted) -1.75kB 0 bytes -100.0% 🗑️
assets/app.workbench-D_3MXRZb.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/tabs-KHraCw9N.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-BjgNpZxU.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-D20ujuVg.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-Bv6E87bc.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-mhroENu5.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/app.owner-BjOJLwwe.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-oLyUVPdQ.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground--eW3fwXp.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-BZjOLm4a.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-DiQfti1P.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-SOXYK49i.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-046oA3ES.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-CFE4VXrT.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-B9xpc1Uu.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-DjGjV9ql.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-DUqGw8BA.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-DAoi8KyV.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/list-checks-B8MGh9D8.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/compass-C77lKR0f.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-Bu2CBiWO.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/message-square-O37-TPb4.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-DWrBjyvK.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-BpOdhmUc.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-B8F7lvO2.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-CPJaFAKR.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-DWzY5hnS.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️

@loopover-orb loopover-orb Bot added the manual-review Gittensor contributor context label Jul 29, 2026
@JSONbored
JSONbored merged commit 889defe into main Jul 29, 2026
12 checks passed
@JSONbored
JSONbored deleted the feat/ledger-content-waiver branch July 29, 2026 16:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

manual-review Gittensor contributor context

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant