Bundle product extension and create individual extension releases#72
Merged
Bundle product extension and create individual extension releases#72
Conversation
- Set product extension preinstall: true in catalog.json
- Add download_url to all extensions with version placeholder
- Create individual extension ZIP packages during release
- Substitute {{VERSION}} placeholder in catalog.json before packaging
- Upload extension packages as release assets
This enables:
1. Product extension bundled in all release packages
2. All extensions downloadable individually from releases
3. Users can install specific extension versions on-demand
Tested locally: all 54 agent packages and 6 extension packages created successfully
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.
Summary
Enable product extension bundling and individual extension releases for all extensions.
Changes
1. Product Extension Bundling
preinstall: trueinextensions/catalog.jsonfor product extension2. Individual Extension Releases
download_urlfield to all 5 extensions in catalog.jsonhttps://github.com/tikalk/agentic-sdlc-spec-kit/releases/download/{{VERSION}}/extension-{name}-{{VERSION}}.zip{{VERSION}}substituted during release build3. Release Workflow Updates
create_extension_packages()function to create individual extension ZIPs{{VERSION}}placeholder in catalog.json before copying to packagesWhat This Enables
For Users:
specify extension add --from <url>For Developers:
Testing
✅ Tested locally with
agentic-sdlc-v0.0.999:Release Assets (Future)
After merge and next release, GitHub releases will include:
agentic-sdlc-spec-kit-template-{agent}-{script}-{VERSION}.zip(40 total)extension-{name}-{VERSION}.zip(6 total)Related