mirror of
https://github.com/github/spec-kit.git
synced 2026-03-17 10:53:08 +00:00
* Add Mistral Vibe support to Spec Kit This commit adds comprehensive support for Mistral Vibe as an AI agent in the Spec Kit project. The integration includes: - Added Mistral Vibe to AGENT_CONFIG with proper CLI tool configuration - Updated README.md with Mistral Vibe in supported agents table and examples - Modified release package scripts to generate Mistral Vibe templates - Updated both bash and PowerShell agent context update scripts - Added appropriate CLI help text and documentation Mistral Vibe is now fully supported with the same level of integration as other CLI-based agents like Claude Code, Gemini CLI, etc. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai> * Add Mistral Vibe support to Spec Kit - Added Mistral Vibe (vibe) to AGENT_CONFIG with proper TOML format support - Updated CLI help text to include vibe as a valid AI assistant option - Added Mistral Vibe to release scripts with correct .vibe/agents/ directory structure - Updated agent context scripts (bash and PowerShell) with proper TOML file paths - Added Mistral Vibe to README.md supported agents table with v2.0 slash command notes - Used correct argument syntax {{args}} for Mistral Vibe TOML configurations Mistral Vibe is now fully integrated with the same level of support as other CLI-based agents like Gemini and Qwen. Users can now use specify init --ai vibe to create projects with Mistral Vibe support. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai> * Add Vibe templates to GitHub release script creation of Mistral vibe zip * Add 'vibe' agent to release package script * Add 'vibe' to the list of agents in create-release-packages.sh * chore: bump version to v1.0.1 [skip ci] * Add generic spec kit templates to release script * chore: bump version to v1.0.2 [skip ci] * Update project version to 0.1.5 * Add generic spec kit templates to release script * Add 'generic' and 'qodercli' to agent list to be aligned * Update supported agents in update-agent-context.sh to be aligned * Update README with new AI assistant options to be aligned * Document --ai-commands-dir option in README to be aligned Added new option for AI commands directory in README. * Fix formatting in README.md for init arguments to be aligned * Update README with AI assistant options to be aligned Added AI options to specify init arguments in README. * Fix formatting in README.md for project-name argument * Update expected agent types in update-agent-context.sh to be aligned * Update agent types and usage in update-agent-context.ps1 to be aligned * Add support for generic AI assistant configuration to be aligned * Fix formatting in __init__.py clean space * Update AI assistant options in init command to be aligned * Add 'qodercli' to expected agent types to be aligned * Remove 'vibe' case from release package script Removed the 'vibe' case from the create-release-packages script. * Update README.md ok for this Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update .github/workflows/scripts/create-release-packages.ps1 ok to commit Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Add commands_subdir key to Mistral Vibe configuration * Rename specify-agents.toml to specify-agents.md * Update scripts/bash/update-agent-context.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update .github/workflows/scripts/create-release-packages.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/specify_cli/__init__.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/specify_cli/__init__.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fix duplicate 'commands_subdir' in vibe configuration Removed duplicate 'commands_subdir' entries for 'vibe'. * Add support for 'vibe' command in release script add an mkdir and generate command * Change commands_subdir from 'commands' to 'prompts' * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update update-agent-context.ps1 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update create-release-packages.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update create-release-packages.ps1 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update agent list in update-agent-context.sh Kiro --------- Co-authored-by: Lénaïc Huard <lenaic@lhuard.fr> Co-authored-by: Mistral Vibe <vibe@mistral.ai> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
61 lines
2.8 KiB
Bash
61 lines
2.8 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# create-github-release.sh
|
|
# Create a GitHub release with all template zip files
|
|
# Usage: create-github-release.sh <version>
|
|
|
|
if [[ $# -ne 1 ]]; then
|
|
echo "Usage: $0 <version>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
VERSION="$1"
|
|
|
|
# Remove 'v' prefix from version for release title
|
|
VERSION_NO_V=${VERSION#v}
|
|
|
|
gh release create "$VERSION" \
|
|
.genreleases/spec-kit-template-copilot-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-copilot-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-claude-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-claude-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-gemini-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-gemini-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-cursor-agent-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-cursor-agent-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-opencode-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-opencode-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-qwen-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-qwen-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-windsurf-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-windsurf-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-codex-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-codex-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-kilocode-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-kilocode-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-auggie-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-auggie-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-roo-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-roo-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-codebuddy-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-codebuddy-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-qodercli-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-qodercli-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-amp-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-amp-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-shai-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-shai-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-kiro-cli-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-kiro-cli-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-agy-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-agy-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-bob-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-bob-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-vibe-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-vibe-ps-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-generic-sh-"$VERSION".zip \
|
|
.genreleases/spec-kit-template-generic-ps-"$VERSION".zip \
|
|
--title "Spec Kit Templates - $VERSION_NO_V" \
|
|
--notes-file release_notes.md
|