Conversation
There was a problem hiding this comment.
Pull request overview
Updates Spec Kit documentation and tooling by removing the README “Maintainers” section while also introducing support for a new AI assistant key (agy / Antigravity) across the CLI, agent-context update scripts, and release packaging scripts.
Changes:
- Remove the “Maintainers” section (and TOC entry) from
README.md. - Add
agy(Antigravity) to CLI agent configuration and user-facing docs. - Extend update scripts and GitHub release packaging scripts to handle
agy.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
src/specify_cli/__init__.py |
Adds agy to AGENT_CONFIG and updates specify init --ai help text. |
scripts/powershell/update-agent-context.ps1 |
Adds agy to ValidateSet, file path constants, and update logic. |
scripts/bash/update-agent-context.sh |
Adds agy path and update logic; updates agent lists in comments/usage output. |
README.md |
Removes Maintainers section and documents Antigravity (agy) in supported assistants and CLI options. |
.gitignore |
Minor formatting/whitespace cleanup. |
.github/workflows/scripts/create-release-packages.sh |
Adds agy build variant and includes it in ALL_AGENTS. |
.github/workflows/scripts/create-github-release.sh |
Uploads agy release zip artifacts. |
Comments suppressed due to low confidence (1)
scripts/bash/update-agent-context.sh:38
- This header comment’s
Agent types:list is inaccurate (it omits supported values likeroo,codebuddy, andamp). Please update it so the documented agent types match the actualcaseoptions below.
# Agent types: claude|gemini|copilot|cursor-agent|qwen|opencode|codex|windsurf|kilocode|auggie|shai|q|agy|bob|qoder
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
a12f06f to
198575d
Compare
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.
Comments suppressed due to low confidence (1)
scripts/bash/update-agent-context.sh:729
- The update_all_existing_agents function is missing a check for AMP_FILE. The "amp" agent type is supported in update_specific_agent (line 625-627) and documented in the usage strings (lines 38, 755), but there's no corresponding check in this function to update the Amp agent when updating all existing agents. This inconsistency means the Amp agent file won't be automatically updated when running the script without specifying an agent type.
Add a check for AMP_FILE similar to the other agent checks, for example after the CODEBUDDY_FILE check.
if [[ -f "$BOB_FILE" ]]; then
update_agent_file "$BOB_FILE" "IBM Bob"
found_agent=true
fi
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
336792f to
a41a16a
Compare
….0.98) Key upstream changes absorbed: - Modular extension system (PR github#1551): plugin architecture with YAML manifests, extension catalog, hook system, CLI management commands - Constitution preservation on reinit (PR github#1553): template moved to templates/constitution-template.md, user customizations preserved - .specify.specify path bug fix (PR github#1588): double-nesting resolved - Google Anti Gravity agent support (PR github#1220): new agy agent in release - Stale workflow (PR github#1594): auto-close inactive issues after 180 days - Dependabot config (PR github#1622): automated pip and Actions updates - Markdownlint fixes (PR github#1571), plan template typo (PR github#1446) - README maintainers section removed (PR github#1618) Conflict resolutions: - pyproject.toml: kept our version (0.0.20.post1) over upstream 0.1.0 - plan-template.md: kept /sp.plan prefix over upstream /speckit.plan - create-release-packages.sh: merged agy agent + kept our generate_agent_rules; updated constitutionplus/command-rules paths from memory/ to templates/ to match upstream rename - README.md: kept our SpecifyPlus content, dropped upstream maintainers section (already removed upstream), preserved contributing section - templates/command-rules.md, templates/constitutionplus.md: accepted memory/ → templates/ relocation matching upstream convention Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
No description provided.