-
Notifications
You must be signed in to change notification settings - Fork 2
# JSX Transpiler, Too Many Cooks v0.3.0 & Comprehensive Test Coverage #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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.
TLDR;
Major feature release adding a JSX transpiler for Dart, Too Many Cooks v0.3.0 with admin tools and subscriptions, VSCode extension v0.3.0 with admin commands, plus ~20,000 lines of new tests across all packages.
What Does This Do?
1. New
dart_jsxPackage - JSX Transpiler for DartA complete JSX transpiler that transforms JSX syntax directly in Dart files:
Input (.jsx file):
Output (.g.dart file):
Features:
<>...</>), self-closing tags, spread attributes<List<T>>vs<MyComponent>)--watchmode for development2. Too Many Cooks MCP Server v0.3.0
New capabilities for multi-agent coordination:
delete_lock,delete_agent,reset_keyactions3. VSCode Extension v0.3.0
npx too-many-cooks(same as Claude Code)4. React Native Enhancements
npmComponent()- Generic wrapper to use ANY npm React componentNavigationProp,RoutePropfor React NavigationpaperButton(),paperFAB(), etc.5. Massive Test Coverage Expansion
Brief Details?
New Files (Key Additions)
dart_jsx package:
jsx_demo example:
Too Many Cooks:
React Native:
VSCode Extension:
deleteLock,deleteAgent,sendMessageserverPathconfig - usesnpx too-many-cooksby defaultModified Files (Key Changes)
tools/build/build.dart.github/workflows/ci.ymlfor new test structureStats
How Do The Tests Prove The Change Works?
JSX Transpiler Tests (packages/dart_jsx/test/)
transpiler_test.dart (1,480 LOC):
<, comments, nested genericsintegration_test.dart (339 LOC):
jsx_demo Tests (examples/jsx_demo/test/)
counter_test.dart - Tests Counter component:
tabs_example_test.dart - Tests TabsExample component:
jsx_demo_test.dart - Integration tests:
Too Many Cooks Tests (examples/too_many_cooks/test/)
integration_test.dart (+302 LOC):
VSCode Extension Tests
command-integration.test.ts (470 LOC):
mcp-integration.test.ts (+800 LOC):
React Package Tests
semantic_elements_test.dart (1,913 LOC):
svg_elements_test.dart (953 LOC):
synthetic_event_test.dart (506 LOC):
Generated with multi-agent coordination via Too Many Cooks MCP server.