Skip to content

Commit fbbb455

Browse files
committed
Merge origin/main into chore/parallelize-integration-tests
Assisted-by: OpenAI Codex (model: GPT-5, autonomous)
2 parents 5375034 + 4badf3b commit fbbb455

182 files changed

Lines changed: 4911 additions & 2584 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/post-create.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ run_command "npm install -g @jetbrains/junie-cli@latest"
5656
echo "✅ Done"
5757

5858
echo -e "\n🤖 Installing Pi Coding Agent..."
59-
run_command "npm install -g @mariozechner/pi-coding-agent@latest"
59+
run_command "npm install -g @earendil-works/pi-coding-agent@latest"
6060
echo "✅ Done"
6161

6262
echo -e "\n🤖 Installing Kiro CLI..."
@@ -88,9 +88,9 @@ fi
8888
run_command "$kiro_binary --help > /dev/null"
8989
echo "✅ Done"
9090

91-
echo -e "\n🤖 Installing Kimi CLI..."
91+
echo -e "\n🤖 Installing Kimi Code CLI..."
9292
# https://code.kimi.com
93-
run_command "pipx install kimi-cli"
93+
run_command "npm install -g @moonshot-ai/kimi-code@latest"
9494
echo "✅ Done"
9595

9696
echo -e "\n🤖 Installing CodeBuddy CLI..."

.github/ISSUE_TEMPLATE/agent_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body:
88
value: |
99
Thanks for requesting a new agent! Before submitting, please check if the agent is already supported.
1010
11-
**Currently supported agents**: Amp, Antigravity, Auggie CLI, Claude Code, Cline, CodeBuddy, Codex CLI, Cursor, Devin for Terminal, Firebender, Forge, Gemini CLI, GitHub Copilot, Goose, Hermes Agent, IBM Bob, iFlow CLI, Junie, Kilo Code, Kimi Code, Kiro CLI, Lingma, Mistral Vibe, opencode, Pi Coding Agent, Qoder CLI, Qwen Code, Roo Code, RovoDev ACLI, SHAI, Tabnine CLI, Trae, Windsurf, ZCode, Zed
11+
**Currently supported agents**: Amp, Antigravity, Auggie CLI, Claude Code, Cline, CodeBuddy, Codex CLI, Cursor, Devin for Terminal, Firebender, Forge, Gemini CLI, GitHub Copilot, Goose, Hermes Agent, IBM Bob, iFlow CLI, Junie, Kilo Code, Kimi Code, Kiro CLI, Lingma, Mistral Vibe, Oh My Pi, opencode, Pi Coding Agent, Qoder CLI, Qwen Code, Roo Code, RovoDev ACLI, SHAI, Tabnine CLI, Trae, Windsurf, ZCode, Zed
1212
1313
- type: input
1414
id: agent-name

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ body:
8585
- Kiro CLI
8686
- Lingma
8787
- Mistral Vibe
88+
- Oh My Pi
8889
- opencode
8990
- Pi Coding Agent
9091
- Qoder CLI
Lines changed: 293 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,293 @@
1+
name: Bundle Submission
2+
description: Submit your bundle metadata for community catalog validation
3+
title: "[Bundle]: Add "
4+
labels: ["enhancement", "needs-triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for contributing a bundle! This template captures metadata for maintainers to validate formatting, links, component resolution, and installation evidence. Maintainers do not audit, endorse, or support bundle code or installed components.
10+
11+
**Before submitting:**
12+
- Review the [Bundles reference](https://github.com/github/spec-kit/blob/main/docs/reference/bundles.md)
13+
- Ensure your bundle has a valid `bundle.yml` manifest
14+
- Create a GitHub release with a versioned bundle artifact
15+
- Test installation from a downloaded artifact: `specify bundle install ./your-bundle-1.0.0.zip`
16+
- If you host a bundle catalog, test catalog installation with `specify bundle catalog add <catalog-url> --id <catalog-id> --policy install-allowed` and `specify bundle install <bundle-id>`
17+
- If your bundle depends on components from non-default catalogs, document those catalog URLs and test installation from a clean project
18+
19+
- type: input
20+
id: bundle-id
21+
attributes:
22+
label: Bundle ID
23+
description: Unique bundle identifier; must start and end with a lowercase letter or digit and may contain lowercase letters, digits, dots, underscores, and hyphens between
24+
placeholder: "e.g., security-governance-stack"
25+
validations:
26+
required: true
27+
28+
- type: input
29+
id: bundle-name
30+
attributes:
31+
label: Bundle Name
32+
description: Human-readable bundle name
33+
placeholder: "e.g., Security Governance Stack"
34+
validations:
35+
required: true
36+
37+
- type: input
38+
id: version
39+
attributes:
40+
label: Version
41+
description: Semantic version number
42+
placeholder: "e.g., 1.0.0"
43+
validations:
44+
required: true
45+
46+
- type: input
47+
id: role
48+
attributes:
49+
label: Role or Team
50+
description: Primary role, team, or persona this bundle provisions
51+
placeholder: "e.g., security-engineer, product-manager, platform-team"
52+
validations:
53+
required: true
54+
55+
- type: textarea
56+
id: description
57+
attributes:
58+
label: Description
59+
description: Brief description of the stack this bundle installs
60+
placeholder: Installs a security governance stack with compliance presets, review commands, and evidence workflows
61+
validations:
62+
required: true
63+
64+
- type: input
65+
id: author
66+
attributes:
67+
label: Author
68+
description: Your name or organization
69+
placeholder: "e.g., Jane Doe or Acme Corp"
70+
validations:
71+
required: true
72+
73+
- type: input
74+
id: repository
75+
attributes:
76+
label: Repository URL
77+
description: GitHub repository URL for your bundle source
78+
placeholder: "https://github.com/your-org/spec-kit-bundle-your-bundle"
79+
validations:
80+
required: true
81+
82+
- type: input
83+
id: download-url
84+
attributes:
85+
label: Download URL
86+
description: URL to the versioned bundle artifact generated by `specify bundle build`
87+
placeholder: "https://github.com/your-org/spec-kit-bundle-your-bundle/releases/download/v1.0.0/your-bundle-1.0.0.zip"
88+
validations:
89+
required: true
90+
91+
- type: input
92+
id: documentation
93+
attributes:
94+
label: Documentation URL
95+
description: Link to documentation that explains what the bundle installs and how to use it
96+
placeholder: "https://github.com/your-org/spec-kit-bundle-your-bundle/blob/main/README.md"
97+
validations:
98+
required: true
99+
100+
- type: input
101+
id: license
102+
attributes:
103+
label: License
104+
description: Open source license type
105+
placeholder: "e.g., MIT, Apache-2.0"
106+
validations:
107+
required: true
108+
109+
- type: input
110+
id: speckit-version
111+
attributes:
112+
label: Required Spec Kit Version
113+
description: Minimum Spec Kit version required by the bundle
114+
placeholder: "e.g., >=0.9.0"
115+
validations:
116+
required: true
117+
118+
- type: input
119+
id: integration
120+
attributes:
121+
label: Integration Target (optional)
122+
description: Integration ID if the bundle pins one; leave empty if integration-agnostic
123+
placeholder: "e.g., claude, copilot, gemini"
124+
125+
- type: textarea
126+
id: components-provided
127+
attributes:
128+
label: Components Provided
129+
description: List the extensions, presets, workflows, and steps this bundle installs
130+
placeholder: |
131+
- extensions: sicario-guard@0.5.1
132+
- presets: sicario-core@0.5.1, sicario-ai-governance@0.5.1
133+
- workflows: evidence-review@1.0.0
134+
- steps: threat-model
135+
validations:
136+
required: true
137+
138+
- type: textarea
139+
id: required-catalogs
140+
attributes:
141+
label: Required Component Catalogs
142+
description: List any non-default catalogs users must add before this bundle can resolve its components; enter "None" if every component resolves from built-in or bundled catalogs
143+
placeholder: |
144+
- Presets: https://github.com/your-org/your-bundle/releases/download/v1.0.0/presets.json
145+
- Extensions: https://github.com/your-org/your-bundle/releases/download/v1.0.0/extensions.json
146+
validations:
147+
required: true
148+
149+
- type: textarea
150+
id: tags
151+
attributes:
152+
label: Tags
153+
description: 2-5 relevant tags (lowercase, separated by commas)
154+
placeholder: "security, governance, compliance"
155+
validations:
156+
required: true
157+
158+
- type: textarea
159+
id: features
160+
attributes:
161+
label: Key Features
162+
description: List the main capabilities this bundle provides
163+
placeholder: |
164+
- Installs evidence-first security governance templates
165+
- Adds automated bundle verification commands
166+
- Pins all components to release-tested versions
167+
validations:
168+
required: true
169+
170+
- type: checkboxes
171+
id: testing
172+
attributes:
173+
label: Testing Checklist
174+
description: Confirm that your bundle has been tested
175+
options:
176+
- label: Validation succeeds with `specify bundle validate --path <bundle-directory>`
177+
required: true
178+
- label: Build succeeds with `specify bundle build --path <bundle-directory>` and produces the submitted artifact
179+
required: true
180+
- label: Bundle installs successfully from the built artifact
181+
required: true
182+
- label: The submitted distribution path was tested end to end, including bundle-ID installation from an install-allowed catalog when a catalog entry is proposed
183+
required: true
184+
- label: Installation was tested in a clean Spec Kit project
185+
required: true
186+
- label: Required component catalogs are documented and were included in testing, or no extra catalogs are required
187+
required: true
188+
- label: Documentation is complete and accurate
189+
required: true
190+
191+
- type: checkboxes
192+
id: requirements
193+
attributes:
194+
label: Submission Requirements
195+
description: Verify your bundle meets all requirements
196+
options:
197+
- label: Valid `bundle.yml` manifest included
198+
required: true
199+
- label: README.md explains the bundle's intended role, installed components, and installation steps
200+
required: true
201+
- label: LICENSE file included
202+
required: true
203+
- label: GitHub release created with a version tag
204+
required: true
205+
- label: Bundle ID matches the manifest and follows naming conventions
206+
required: true
207+
- label: Every extension, preset, workflow, and step reference is pinned where the manifest requires a version
208+
required: true
209+
210+
- type: textarea
211+
id: testing-details
212+
attributes:
213+
label: Testing Details
214+
description: Describe how you tested your bundle
215+
placeholder: |
216+
**Tested on:**
217+
- macOS 15 with Spec Kit v0.9.0
218+
- Ubuntu 24.04 with Spec Kit v0.9.0
219+
220+
**Test project:** [Link or description]
221+
222+
**Test scenarios:**
223+
1. Added required catalogs
224+
2. Validated bundle manifest
225+
3. Built release artifact
226+
4. Installed bundle in a clean project
227+
5. Ran the installed commands or workflows
228+
validations:
229+
required: true
230+
231+
- type: textarea
232+
id: example-usage
233+
attributes:
234+
label: Example Usage
235+
description: Provide a simple example of installing and using your bundle
236+
render: markdown
237+
placeholder: |
238+
```bash
239+
# Add any required component catalogs first
240+
specify preset catalog add https://github.com/your-org/your-bundle/releases/download/v1.0.0/presets.json --name your-bundle --install-allowed
241+
specify extension catalog add https://github.com/your-org/your-bundle/releases/download/v1.0.0/extensions.json --name your-bundle --install-allowed
242+
243+
# Install the downloaded bundle artifact
244+
curl -L -o your-bundle-1.0.0.zip https://github.com/your-org/your-bundle/releases/download/v1.0.0/your-bundle-1.0.0.zip
245+
specify bundle install ./your-bundle-1.0.0.zip
246+
247+
# Or test through an install-allowed bundle catalog
248+
specify bundle catalog add https://github.com/your-org/your-bundle/releases/download/v1.0.0/bundles.json --id your-bundle-catalog --policy install-allowed
249+
specify bundle install your-bundle
250+
```
251+
validations:
252+
required: true
253+
254+
- type: textarea
255+
id: catalog-entry
256+
attributes:
257+
label: Proposed Catalog Entry
258+
description: Provide the JSON entry that would appear under the top-level `bundles` object in a bundle catalog (helps reviewers)
259+
render: json
260+
placeholder: |
261+
{
262+
"your-bundle": {
263+
"name": "Your Bundle",
264+
"id": "your-bundle",
265+
"version": "1.0.0",
266+
"role": "security-engineer",
267+
"description": "Brief description of the stack",
268+
"author": "Your Name",
269+
"license": "MIT",
270+
"download_url": "https://github.com/your-org/your-bundle/releases/download/v1.0.0/your-bundle-1.0.0.zip",
271+
"repository": "https://github.com/your-org/your-bundle",
272+
"requires": {
273+
"speckit_version": ">=0.9.0"
274+
},
275+
"provides": {
276+
"extensions": 1,
277+
"presets": 2,
278+
"steps": 0,
279+
"workflows": 1
280+
},
281+
"tags": ["security", "governance"],
282+
"verified": false
283+
}
284+
}
285+
validations:
286+
required: true
287+
288+
- type: textarea
289+
id: additional-context
290+
attributes:
291+
label: Additional Context
292+
description: Any other information that would help reviewers
293+
placeholder: Screenshots, demo videos, links to related projects, dependency-resolution notes, etc.

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ body:
7979
- Kiro CLI
8080
- Lingma
8181
- Mistral Vibe
82+
- Oh My Pi
8283
- opencode
8384
- Pi Coding Agent
8485
- Qoder CLI

.github/ISSUE_TEMPLATE/preset_submission.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,18 @@ body:
7777
validations:
7878
required: true
7979

80+
- type: input
81+
id: documentation
82+
attributes:
83+
label: Documentation URL
84+
description: |
85+
Link to the README that explains how to use **this preset** (not a general product/framework pitch).
86+
Prefer the preset-scoped README (e.g. `presets/<id>/README.md` in a monorepo) over the repository root README.
87+
It must contain at least one valid `specify preset add ...` install command — ideally `specify preset add --from <download-url>` using the exact Download URL above (other forms such as `specify preset add <preset-id>` or `specify preset add --dev <path>` are also accepted).
88+
placeholder: "https://github.com/your-org/spec-kit-presets/blob/main/presets/your-preset/README.md"
89+
validations:
90+
required: true
91+
8092
- type: input
8193
id: license
8294
attributes:
@@ -175,7 +187,7 @@ body:
175187
options:
176188
- label: Valid `preset.yml` manifest included
177189
required: true
178-
- label: README.md with description and usage instructions
190+
- label: Linked README (Documentation URL) explains how to use this preset and includes a valid `specify preset add ...` command (preferably `specify preset add --from <download-url>` using the exact download URL)
179191
required: true
180192
- label: LICENSE file included
181193
required: true

.github/workflows/add-community-preset.lock.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)