chore: tidy up example bundles#47
Merged
Merged
Conversation
Collaborator
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Jul 1, 2026
76d7247 to
5afc455
Compare
Collaborator
Author
Merge activity
|
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.

TL;DR
Flattened the
examples/configs/directory structure by moving all example agent configurations directly intoexamples/, and removed pre-built.zipbundles from version control.What changed?
All example agent directories (
presentation-deck-agent,research-assistant,simple-html-page-agent,skill-builder,tangle-ml-pipeline-optimizer, andtangle) have been moved fromexamples/configs/toexamples/directly. The corresponding pre-built.zipbundles that previously lived inexamples/configs/have been deleted from the repository.The
pack-bundle.mjsscript's default source path and output directory have been updated to reflect the new layout (examples/tangle-ossandexamples/respectively)..gitignorehas been updated to excludeexamples/localand anyexamples/*.zipfiles, ensuring locally generated bundles and working directories are not accidentally committed.How to test?
examples/(e.g.,examples/research-assistant,examples/tangle, etc.).pack-bundle.mjsscript and confirm it resolves paths correctly and outputs.zipbundles toexamples/..zipfiles are ignored by git as expected.Why make this change?
The
configs/subdirectory added an unnecessary layer of nesting. Moving examples directly underexamples/simplifies the directory structure and makes paths more intuitive. Removing committed.zipbundles in favor of.gitignorerules keeps binary artifacts out of version control, reducing repository size and avoiding stale pre-built bundles.