mirror of
https://github.com/github/spec-kit.git
synced 2026-07-06 05:53:12 +08:00
* support controlled multi-install integrations * fix: harden multi-install integration state * refactor: isolate integration runtime helpers * fix: address copilot review feedback * fix: address follow-up copilot feedback * fix: tighten integration switch semantics * fix: address final copilot review feedback * fix: harden integration manifest read errors * fix: refuse symlinked shared infra paths * test: filter expected self-test preset warning * test: address copilot review nits * refactor: centralize safe shared infra writes * fix: use no-follow writes for shared infra * fix: keep default integration atomic on template refresh * fix: harden shared infra error paths * fix: preflight shared infra and future state schemas * fix: support nested shared scripts during preflight * test: tolerate wrapped schema error output * fix: use safe default mode for shared text writes * fix: use posix paths in shared skip output * fix: share project guard for integration use * fix: centralize spec-kit project guards * fix: use posix project paths in cli output * fix: harden shared manifest and upgrade refresh
23 lines
560 B
Python
23 lines
560 B
Python
"""Gemini CLI integration."""
|
|
|
|
from ..base import TomlIntegration
|
|
|
|
|
|
class GeminiIntegration(TomlIntegration):
|
|
key = "gemini"
|
|
config = {
|
|
"name": "Gemini CLI",
|
|
"folder": ".gemini/",
|
|
"commands_subdir": "commands",
|
|
"install_url": "https://github.com/google-gemini/gemini-cli",
|
|
"requires_cli": True,
|
|
}
|
|
registrar_config = {
|
|
"dir": ".gemini/commands",
|
|
"format": "toml",
|
|
"args": "{{args}}",
|
|
"extension": ".toml",
|
|
}
|
|
context_file = "GEMINI.md"
|
|
multi_install_safe = True
|