Skip to content

EPIC-08: template upgrades + Ink migration recipes#60

Merged
RtlZeroMemory merged 1 commit into
mainfrom
epic-08-templates-migration-recipes
Feb 17, 2026
Merged

EPIC-08: template upgrades + Ink migration recipes#60
RtlZeroMemory merged 1 commit into
mainfrom
epic-08-templates-migration-recipes

Conversation

@RtlZeroMemory

Copy link
Copy Markdown
Owner

Summary

  • add docs/migration/ink-to-rezi.md with conceptual mapping and practical migration recipes (no Ink compatibility promise)
  • link migration guide from FAQ, docs home, and MkDocs nav
  • upgrade create-rezi templates (dashboard, file-browser, streaming-viewer, form-app) to showcase polished, production-style UX and Rezi differentiators
  • improve create-rezi CLI template discovery (--list-templates highlights, clearer selection/messaging, canonical template naming)
  • add deterministic template smoke checks (npm run check:create-rezi-templates) and wire into root check

Template Highlights

  • dashboard: live-updating ui.table with stable keys, sort/filter/pin controls, incident telemetry
  • file-browser: async command palette with cancellation and request telemetry
  • streaming-viewer: ui.virtualList over 15k streams with fast navigation and live ingest feed
  • form-app: validation-centric multi-step form, keybinding modes/chords, overlays and toasts

Validation

  • npm run lint
  • npm run typecheck
  • npm run build
  • npm test
  • npm run test:e2e
  • npm run test:e2e:reduced
  • npm run test:native:smoke
  • npm run docs:build
  • npm run check:create-rezi-templates
  • scaffold validation per template: npm install --ignore-scripts, npm run build, npm run typecheck, and start script presence

@RtlZeroMemory
RtlZeroMemory merged commit 26899da into main Feb 17, 2026
18 checks passed
@RtlZeroMemory
RtlZeroMemory deleted the epic-08-templates-migration-recipes branch February 17, 2026 05:19

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: b98a264ebf

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread package.json
"check:docs": "npm run docs:build",
"check:unicode": "node scripts/check-unicode-sync.mjs",
"check": "npm run check:core-portability && npm run check:docs && npm run check:unicode",
"check": "npm run check:create-rezi-templates && npm run check:core-portability && npm run check:docs && npm run check:unicode",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Make check runnable without a prior build

Adding check:create-rezi-templates to the top-level check command makes npm run check fail on a fresh checkout, because that script hard-fails unless packages/create-rezi/dist/scaffold.js and packages/{core,node}/dist/index.d.ts already exist (see scripts/check-create-rezi-templates.mjs guards around lines 73-95). In the common local/CI flow where contributors run checks right after install, check now exits before running any real validations unless they manually run a full build first.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant