-
Notifications
You must be signed in to change notification settings - Fork 14
chore: release main #364
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
chore: release main #364
Changes from all commits
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" | ||
| } | ||
| 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.
This release changes the published 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 manifest now asks release-please to publish
plugins/aidd-ui, but the artifact workflow I checked only builds plugin zips for[aidd-context, aidd-dev, aidd-vcs, aidd-pm, aidd-orchestrator, aidd-refine]in.github/workflows/ci.yml:176-184. When the aidd-ui release is created, its GitHub release will be left without the standaloneaidd-ui-v<version>.zipasset that every other plugin release gets, so users who install plugins from per-plugin release assets cannot install this newly released plugin.Useful? React with 👍 / 👎.