-
Notifications
You must be signed in to change notification settings - Fork 0
V0.5.0/git remote release #20
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
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c2387ae
✨ introduce git-remote-release skill
aicia-bot 2361b95
💬 add git-remote-release to readme
aicia-bot f41ee5d
♻️ refine git-remote-release skill
aicia-bot 40d1896
📝 update README for git-remote-release showcase
aicia-bot f180fd7
🍱 add hero image to git-remote-release skill
aicia-bot 1760d3f
📝 clarify git-remote-release default resolution behavior
aicia-bot 8fa94cf
📝 improve git-remote-release docs for branch and PR clarity
aicia-bot 4d1f915
📝 refine git-remote-release implementation details
aicia-bot c0ac219
✨ enhance git-remote-release with default-branch handling and paginat…
aicia-bot 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
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,40 @@ | ||
| # Parameter Form | ||
|
|
||
| Collect input values, present a summary, and ask for confirmation before generating release notes. | ||
|
|
||
| ## Fields | ||
|
|
||
| ### compare_url | ||
| - **type:** text | ||
| - **required:** no | ||
| - **prompt:** Do you have a GitHub compare URL? (e.g. `https://github.com/owner/repo/compare/v1.0.0...v1.0.1`) When provided, all other fields are inferred automatically. | ||
|
|
||
| ### repository | ||
| - **type:** text | ||
| - **required:** yes (unless compare_url is provided or using default resolution) | ||
| - **prompt:** Which GitHub repository? Use `owner/repo` format (e.g. `codebeltnet/agentic`). | ||
|
|
||
| ### previous_ref | ||
| - **type:** text | ||
| - **required:** yes (unless compare_url is provided or using default resolution) | ||
| - **prompt:** What is the previous tag or branch to compare from? (e.g. `v1.0.0` or `main`) | ||
|
|
||
| ### current_ref | ||
| - **type:** text | ||
| - **required:** yes (unless compare_url is provided or using default resolution) | ||
| - **prompt:** What is the current tag or branch to compare to? (e.g. `v1.0.1` or `feature/my-branch`) | ||
|
|
||
| ## Presentation Rules | ||
|
|
||
| 0. If the user provided no input at all (no URL, no repository, no tags or branches), skip this form entirely and proceed directly to the Default Resolution Behavior defined in `SKILL.md`. Do not prompt for individual fields. | ||
| 1. If the user provided a compare URL, parse it and present the inferred values: | ||
| ``` | ||
| Ready to generate release notes: | ||
| Repository: {owner}/{repo} | ||
| Previous: {previousRef} | ||
| Current: {currentRef} | ||
| ``` | ||
| Then ask: "Ready to proceed? (yes / no)" | ||
| 2. If the user provided separate values, present them in the same summary format, then ask: "Ready to proceed? (yes / no)" | ||
| 3. If any required value is missing and the user did provide partial input, ask for it individually before presenting the summary. | ||
| 4. After confirmation, proceed immediately to data collection. | ||
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.
Uh oh!
There was an error while loading. Please reload this page.