/apps: nine applications, not three - #68
Merged
Merged
Conversation
A sweep of ~/src for @profullstack/hqtui found six more programs built on the library, each of which now declares its own frame: diskpush two-pane rsync browser, mid-transfer threatcrush live security dashboard coinpay merchant finances, seven screens myna cross-network composer logicsrc team credential vaults tsbb terminal message board Two of them needed a change to be captured at all, and both were improvements independent of the screenshot: myna's screen was a closure inside its app loop, and coinpay's screen renderers were module-private. Lifting each out gave those applications assertable layouts they had never had -- coinpay's dashboard had no test coverage for exactly that reason. Three of the nine touch material that cannot be published as-is: myna would expose connected handles whose credentials sit in a vault, coinpay would expose a merchant's revenue and bank balances, and logicsrc holds team member emails. Each declares invented values. logicsrc is the interesting case -- its screen is metadata-only by design, so it is the one that needed the least fiction. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017Df2FNu5DhinMV2soRz3cy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A sweep of
~/srcfor@profullstack/hqtuifound six more programs built on the library. Each now declares its own frame, and the gallery captures all nine.Two needed a change to be capturable
Both were improvements independent of the screenshot:
drawApp(args, state, invalidate?)now.FINANCE_SCREENSnow.Each already was a pure function of state; they were simply unreachable. Lifting them out gave both applications assertable layouts they had never had — coinpay's dashboard had no test coverage for exactly that reason.
Three could not be published as-is
Each declares invented values. logicsrc is the interesting case: its screen is metadata-only by design — it never handles plaintext — so it needed the least fiction of the three.
Known cosmetic defect, not from this change
The coinpay volume graph renders
$008-10at the origin: the y-axis minimum label and the firsttimeAxislabel are written to the same cell. That is a collision in hqtui's own graph widget whenaxis: trueandtimeAxisare combined, visible in any chart using both. Filed separately rather than fixed here.Checks
bun x next build—/appsrenders with all ninebun run typecheckexit 0🤖 Generated with Claude Code
https://claude.ai/code/session_017Df2FNu5DhinMV2soRz3cy