-
Notifications
You must be signed in to change notification settings - Fork 14
chore: reconcile next with the 5.1.0 release state from main #367
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
Changes from all commits
f5516cd
f71bdd2
b1b1033
5aa9216
dba017e
80daf0d
0e88266
efbc759
a56792a
06c1e93
81115da
a42cc5b
2db0005
bc69310
7df7a34
2c75d0d
d3fe2ac
dcc232a
f2a252b
a409d49
c17d38c
2712c17
8ec202b
7bf212b
71e09ff
1407a9a
2ba2443
0ed4cca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,10 @@ | ||
| { | ||
| ".": "5.0.3", | ||
| "plugins/aidd-context": "2.0.1", | ||
| "plugins/aidd-dev": "2.0.0", | ||
| "plugins/aidd-vcs": "2.0.0", | ||
| "plugins/aidd-pm": "2.0.0", | ||
| "plugins/aidd-orchestrator": "2.0.0", | ||
| "plugins/aidd-refine": "2.0.0", | ||
| "plugins/aidd-ui": "0.1.0-alpha.0" | ||
| ".": "5.1.0", | ||
| "plugins/aidd-context": "2.1.0", | ||
| "plugins/aidd-dev": "2.1.0", | ||
| "plugins/aidd-vcs": "2.1.0", | ||
| "plugins/aidd-pm": "2.1.0", | ||
| "plugins/aidd-orchestrator": "2.1.0", | ||
| "plugins/aidd-refine": "2.1.0", | ||
| "plugins/aidd-ui": "4.0.0" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
With Useful? React with 👍 / 👎. |
||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,21 @@ | ||
| { | ||
| "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json", | ||
| "name": "aidd-ui", | ||
| "version": "0.1.0-alpha.0", | ||
| "version": "4.0.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Changing the UI plugin manifest to Useful? React with 👍 / 👎. |
||
| "description": "ALPHA, not ready for use. UI and UX concern for the AI-Driven Development framework. Use when the user wants to design, review, or improve a frontend interface. Do NOT use for backend-only or non-UI tasks.", | ||
| "author": { "name": "AI-Driven Dev", "url": "https://github.com/ai-driven-dev" }, | ||
| "skills": ["./skills/01-hello"], | ||
| "keywords": ["ui", "ux", "design", "frontend"], | ||
| "author": { | ||
| "name": "AI-Driven Dev", | ||
| "url": "https://github.com/ai-driven-dev" | ||
| }, | ||
| "skills": [ | ||
| "./skills/01-hello" | ||
| ], | ||
| "keywords": [ | ||
| "ui", | ||
| "ux", | ||
| "design", | ||
| "frontend" | ||
| ], | ||
| "repository": "https://github.com/ai-driven-dev/framework", | ||
| "homepage": "https://ai-driven.dev", | ||
| "license": "MIT" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # Changelog | ||
|
|
||
| ## [4.0.0](https://github.com/ai-driven-dev/framework/compare/aidd-ui-v0.1.0-alpha.0...aidd-ui-v4.0.0) (2026-06-30) | ||
|
|
||
|
|
||
| ### Features | ||
|
|
||
| * **aidd-ui:** scaffold alpha plugin (0.1.0-alpha.0) ([#319](https://github.com/ai-driven-dev/framework/issues/319)) ([a56792a](https://github.com/ai-driven-dev/framework/commit/a56792afb6584ba17115011721823a2439fb7759)) | ||
|
|
||
|
|
||
| ### Miscellaneous | ||
|
|
||
| * **framework:** release as 4.0.0 ([5b0fc9d](https://github.com/ai-driven-dev/framework/commit/5b0fc9d9116e37abe7ef5dbb5d06438f607475e8)) | ||
| * **framework:** trigger ci recheck after history rewrite ([391760e](https://github.com/ai-driven-dev/framework/commit/391760e19eb69fe80e098c3aefc3c527cda2169a)) | ||
|
|
||
|
|
||
| ### Refactoring | ||
|
|
||
| * conform remaining skills to the authoring contract ([#334](https://github.com/ai-driven-dev/framework/issues/334)) ([dcc232a](https://github.com/ai-driven-dev/framework/commit/dcc232a5a7a7bcdf0c477b36399fd4d412685022)) |
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.
This copies the 5.1.0 release state, but
c61886dis a single-parent commit (7ad6b65) rather than a merge that has the releasedmaincommit (2ba2443) as a parent. I checked the back-merge workflow in.github/workflows/back-merge.yml: its conflict path opens a PR fromorigin/mainintonext, so squashing that PR syncs the files while leavingmainunmerged; as a resultgit diff 2ba2443...c61886dstill shows the already-released batch instead of a no-op. Please land this as a real merge/non-squash back-merge so future promotions and back-merges have the correct merge base.Useful? React with 👍 / 👎.