fix: correct framework, env detection, and skill doc drift - #573
Merged
Conversation
Hono overview claimed no useLogger() export; evlog/hono exports it and the Hono page documents it. The env auto-detection table listed package.json sources and stale env vars; detectEnvironment() reads only process env (SERVICE_NAME, APP_VERSION, COMMIT_SHA/GITHUB_SHA/VERCEL/ CF_PAGES, VERCEL/AWS/FLY/CF region). build-audit-logs showed a curried withAudit() call; the API takes (options, fn). review-logging-patterns listed a non-existent evlog.nuxthub retentionDays/batchSize config; the module reads evlog.retention as a duration string.
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
3 Skipped Deployments
|
|
Contributor
|
Thank you for following the naming conventions! 🙏 |
commit: |
HugoRCD
approved these changes
Aug 14, 2026
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.
Part of the bi-weekly repo health sweep (EVL-242). Content-only fixes to docs and published skills, all confined to
apps/docs(no changeset needed).Fixes
4.integrate/frameworks/00.overview.md: the overview claimed Hono exports nouseLogger(), contradictingpackages/evlog/src/hono/index.ts(export { useLogger }) and the Hono page itself (08.hono.md). Row and callout corrected.7.reference/1.configuration.md: the env auto-detection table listedpackage.jsonas a source and stale env vars.detectEnvironment()(packages/evlog/src/utils.ts) reads only process env:service=SERVICE_NAME,version=APP_VERSION,commitHash=COMMIT_SHA/GITHUB_SHA/VERCEL_GIT_COMMIT_SHA/CF_PAGES_COMMIT_SHA,region=VERCEL_REGION/AWS_REGION/FLY_REGION/CF_REGION. Table and intro updated to match.skills/build-audit-logs/SKILL.md: the flagshipwithAudit()example used a curriedwithAudit(...)(fn)form; the real API is two-argumentwithAudit(options, fn)(packages/evlog/src/audit.ts). Example rewritten. The cheat-sheet already used the two-arg form, so the skill was internally inconsistent.skills/review-logging-patterns/SKILL.md: the NuxtHub drain row documented a config key that does not exist (evlog.nuxthub: { retentionDays, batchSize }).@evlog/nuxthubreadsevlog.retentionas a duration string ('7d',d/h/m), default'7d'(packages/nuxthub/src/config.ts). Row corrected.Checks
Content-only changes under
apps/docs; no package code, exports, or tests are touched, solint/typecheck/testare unaffected and no regression test applies.Full sweep report with citations and the noted systemic findings (e.g. the pervasive em-dash in docs vs the AGENTS.md "never use an em dash" rule, and three
as anycasts in the Vite plugin) is tracked in the EVL-242 report.