feat(skills): add Claude Code skills for consuming Remix#81
Open
tilucasoli wants to merge 1 commit into
Open
Conversation
Adds three task-shaped skills to help downstream developers use Remix in their own Flutter apps, plus a shared reference: - shared/find-remix-source.md: how to locate the installed package and read its real API (naming is non-uniform across components/versions, so all skills confirm names from source rather than from memory). - remix-theming: app-wide RemixTheme / Fortal (Radix) scope + design tokens. - remix-component-styling: per-component styler chains that reference theme tokens instead of hardcoding values. - remix-material-migration: Material -> Remix conversion with a tiered mapping table (auto-convert 1:1, flag near-matches, leave layout alone) and Material-style translation. Each skill requires `dart analyze` as a final verification step. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
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.
What
Adds three task-shaped Claude Code skills (plus a shared reference) that help downstream developers consume Remix in their own Flutter apps.
Design decisions
RemixButtonStylervsRemixCardStylevs the threeRemixSelect*Styleclasses) and change between versions. Every skill opens with a gate that confirms class/method/constructor names against the resolved package source. The shared reference encodes the pub-cache /package_config.jsonresolution and grep recipes once.remix-themingowns tokens + scope;remix-component-stylingreferences existing tokens and defers to theming when no scope exists.MAPPING.mdsplits Material widgets into auto-convert (1:1), flag-as-TODO (near-match), and leave-untouched (layout/navigation). No silent semantic changes. Migration also translates Material styling into the equivalent Remix chain.dart analyzeon touched files is a required final step in every skill (non-negotiable in migration, which rewrites already-compiling code).Follow-ups (deferred)
.claude/skills/.🤖 Generated with Claude Code