-
Notifications
You must be signed in to change notification settings - Fork 12.2k
feat(bundles): first-party bugfix and assess bundles with bundled workflows #4504
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
Open
markuswondrak
wants to merge
5
commits into
github:main
Choose a base branch
from
markuswondrak:feat/4495-firstparty-bugfix-assess-bundles
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
74c57f9
feat(bundles): add first-party bugfix and assess bundles with bundled…
8a65f54
fix(bundles): install bundled workflows offline
9164b1c
fix(bundles): address review findings for first-party bundles
6b306c5
docs(bundles): show required workflow inputs in bundle README run com…
37a7213
test(events): pin the PowerShell launcher in the ps-variant argv test
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| # Idea Assessment Bundle | ||
|
|
||
| A first-party GitHub Spec Kit bundle that installs an idea-triage pipeline before committing to Spec-Driven Development. | ||
|
|
||
| ## What it provides | ||
|
|
||
| - **Assess extension** (`extensions/assess`) — the `speckit.assess.intake`, `speckit.assess.research`, `speckit.assess.define`, `speckit.assess.shape`, and `speckit.assess.decide` commands. | ||
| - **Assess workflow** (`workflows/assess`) — a guided, resumable pipeline: | ||
| 1. `intake` the raw idea. | ||
| 2. `research` the evidence. | ||
| 3. `define` the problem. | ||
| 4. `shape` the concept. | ||
| 5. `decide` the verdict. | ||
| 6. `review-verdict` gate — approve to complete the assessment; reject to abort. A `go` verdict is then handed off manually to `/speckit.specify`. | ||
|
|
||
| ## Install | ||
|
|
||
| ```bash | ||
| specify bundle install assess | ||
| # or | ||
| specify bundle add assess | ||
| ``` | ||
|
|
||
| ## Run the workflow | ||
|
|
||
| ```bash | ||
| specify workflow run assess \ | ||
| --input idea="Let users work offline and sync when they reconnect" \ | ||
| --input slug="offline-mode" | ||
| ``` | ||
|
|
||
| Inputs omitted from the command line are prompted interactively. The slug is used as the working directory under `.specify/assessments/<slug>/` for all artifacts. | ||
|
|
||
| ## Remove | ||
|
|
||
| ```bash | ||
| specify bundle remove assess | ||
| ``` | ||
|
|
||
| Removing the bundle uninstalls the workflow and the extension it contributed, unless they are still depended on by another installed bundle (FR-022). Components you installed independently are not attributed to this bundle and survive removal. |
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,25 @@ | ||
| schema_version: "1.0" | ||
|
|
||
| bundle: | ||
| id: "assess" | ||
| name: "Idea Assessment Pipeline" | ||
| version: "1.0.0" | ||
| role: "developer" | ||
| description: "Idea triage before Spec-Driven Development: intake, research, define, shape, decide with a verdict review gate; surviving ideas hand off manually to the specify command." | ||
| author: "GitHub" | ||
| license: "MIT" | ||
|
|
||
| requires: | ||
| speckit_version: ">=0.9.0" | ||
| tools: [] | ||
| mcp: [] | ||
|
|
||
| provides: | ||
| extensions: | ||
| - id: "assess" | ||
| version: "1.0.0" | ||
| workflows: | ||
| - id: "assess" | ||
| version: "1.0.0" | ||
|
|
||
| tags: ["assessment", "discovery", "triage", "product"] |
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,38 @@ | ||
| # Bug Fix Bundle | ||
|
|
||
| A first-party GitHub Spec Kit bundle that installs an orchestrated bug-fixing pipeline. | ||
|
|
||
| ## What it provides | ||
|
|
||
| - **Bug extension** (`extensions/bug`) — the `speckit.bug.assess`, `speckit.bug.fix`, and `speckit.bug.test` commands. | ||
| - **Bugfix workflow** (`workflows/bugfix`) — a guided, resumable pipeline: | ||
| 1. `assess` the bug report. | ||
| 2. `review-assessment` gate — approve to proceed, reject to abort. | ||
| 3. `fix` the bug. | ||
| 4. `test` the fix. | ||
|
|
||
| ## Install | ||
|
|
||
| ```bash | ||
| specify bundle install bugfix | ||
| # or | ||
| specify bundle add bugfix | ||
| ``` | ||
|
|
||
| ## Run the workflow | ||
|
|
||
| ```bash | ||
| specify workflow run bugfix \ | ||
| --input report="https://github.com/example/repo/issues/1234" \ | ||
| --input slug="callback-token" | ||
| ``` | ||
|
|
||
| Inputs omitted from the command line are prompted interactively. The slug is used as the working directory under `.specify/bugs/<slug>/` for all artifacts. | ||
|
|
||
| ## Remove | ||
|
|
||
| ```bash | ||
| specify bundle remove bugfix | ||
| ``` | ||
|
|
||
| Removing the bundle uninstalls the workflow and the extension it contributed, unless they are still depended on by another installed bundle (FR-022). Components you installed independently are not attributed to this bundle and survive removal. |
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,25 @@ | ||
| schema_version: "1.0" | ||
|
|
||
| bundle: | ||
| id: "bugfix" | ||
| name: "Guided Bug Fix" | ||
| version: "1.0.0" | ||
| role: "developer" | ||
| description: "Orchestrated bug triage: assess a bug report, review the assessment behind a human gate, apply the fix, and verify it with tests." | ||
| author: "GitHub" | ||
| license: "MIT" | ||
|
|
||
| requires: | ||
| speckit_version: ">=0.9.0" | ||
| tools: [] | ||
| mcp: [] | ||
|
|
||
| provides: | ||
| extensions: | ||
| - id: "bug" | ||
| version: "1.0.0" | ||
| workflows: | ||
| - id: "bugfix" | ||
| version: "1.0.0" | ||
|
|
||
| tags: ["bug", "triage", "workflow", "qa"] |
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,51 @@ | ||
| { | ||
| "schema_version": "1.0", | ||
| "updated_at": "2026-09-10T00:00:00Z", | ||
| "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/bundles/catalog.json", | ||
| "bundles": { | ||
| "bugfix": { | ||
| "id": "bugfix", | ||
| "name": "Guided Bug Fix", | ||
| "version": "1.0.0", | ||
| "role": "developer", | ||
| "description": "Orchestrated bug triage: assess a bug report, review behind a human gate, apply the fix, and verify with tests.", | ||
| "author": "GitHub", | ||
| "license": "MIT", | ||
| "download_url": "https://raw.githubusercontent.com/github/spec-kit/main/bundles/bugfix/bundle.yml", | ||
| "repository": "https://github.com/github/spec-kit", | ||
| "requires": { | ||
| "speckit_version": ">=0.9.0" | ||
| }, | ||
| "provides": { | ||
| "extensions": 1, | ||
| "presets": 0, | ||
| "steps": 0, | ||
| "workflows": 1 | ||
| }, | ||
| "tags": ["bug", "triage", "workflow", "qa"], | ||
| "verified": true | ||
| }, | ||
| "assess": { | ||
| "id": "assess", | ||
| "name": "Idea Assessment Pipeline", | ||
| "version": "1.0.0", | ||
| "role": "developer", | ||
| "description": "Idea triage before Spec-Driven Development: intake, research, define, shape, decide with a verdict review gate; surviving ideas hand off manually to specify.", | ||
| "author": "GitHub", | ||
| "license": "MIT", | ||
| "download_url": "https://raw.githubusercontent.com/github/spec-kit/main/bundles/assess/bundle.yml", | ||
| "repository": "https://github.com/github/spec-kit", | ||
| "requires": { | ||
| "speckit_version": ">=0.9.0" | ||
| }, | ||
| "provides": { | ||
| "extensions": 1, | ||
| "presets": 0, | ||
| "steps": 0, | ||
| "workflows": 1 | ||
| }, | ||
| "tags": ["assessment", "discovery", "triage", "product"], | ||
| "verified": true | ||
| } | ||
| } | ||
| } |
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
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
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
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.