-
-
Notifications
You must be signed in to change notification settings - Fork 20
validate transformer #671
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
Merged
validate transformer #671
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,12 @@ | ||
| --- | ||
| '@walkeros/web-source-browser': minor | ||
| '@walkeros/mcp-source-browser': patch | ||
| '@walkeros/mcp-source-browser': minor | ||
| --- | ||
|
|
||
| Add the `data-elb_` scoped generic attribute. It carries the same `key:value` | ||
| properties as the blanket `data-elb-` generic, but only events whose triggered | ||
| element is nested below the `data-elb_` element receive them. Use `data-elb-` | ||
| for properties every trigger in an entity should carry, and `data-elb_` when | ||
| only triggers within a specific branch should. | ||
| element is nested below the `data-elb_` element receive them. The | ||
| `createTagger()` API gains a `scoped()` method and the `generate_tagging` MCP | ||
| tool gains a `scoped` input to produce it. Use `data-elb-` for properties every | ||
| trigger in an entity should carry, and `data-elb_` when only triggers within a | ||
| specific branch should. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| --- | ||
| '@walkeros/transformer-validate': minor | ||
| '@walkeros/core': minor | ||
| '@walkeros/cli': patch | ||
| --- | ||
|
|
||
| New `@walkeros/transformer-validate` transformer validates events against JSON | ||
| Schema contracts. It runs in both web and server flows, supports strict and pass | ||
| modes, and writes the verdict and error list to configurable paths so you can | ||
| gate or observe event quality. | ||
|
|
||
| The declarative per-step `validate` field on sources, transformers, and | ||
| destinations is removed. Define event shapes in the top-level `contract` and | ||
| enforce them at runtime by adding a `transformer-validate` step that references | ||
| them via `$contract.<name>`; `format: true` still checks an event is a valid | ||
| `WalkerOS.PartialEvent`. Design-time validation now checks step examples against | ||
| the resolved contract. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| '@walkeros/transformer-validate': patch | ||
| --- | ||
|
|
||
| Fix schema-only contract rules being skipped during validation. A contract rule | ||
| that carries only a whole-event `schema` (no `events` block) is now enforced | ||
| instead of being treated as an inert inline schema. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use space-delimited event naming in the fixture.
Line 762 uses
'page_view', but this repo requires'entity action'format with spaces.Suggested fix
As per coding guidelines,
**/*.{ts,tsx,js,jsx}: Use event naming format: 'entity action' with space (e.g., 'page view', not 'page_view').📝 Committable suggestion
🤖 Prompt for AI Agents
Source: Coding guidelines