mirror of
https://github.com/github/spec-kit.git
synced 2026-07-03 12:28:06 +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
617 B
Python
23 lines
617 B
Python
"""Auggie CLI integration."""
|
|
|
|
from ..base import MarkdownIntegration
|
|
|
|
|
|
class AuggieIntegration(MarkdownIntegration):
|
|
key = "auggie"
|
|
config = {
|
|
"name": "Auggie CLI",
|
|
"folder": ".augment/",
|
|
"commands_subdir": "commands",
|
|
"install_url": "https://docs.augmentcode.com/cli/setup-auggie/install-auggie-cli",
|
|
"requires_cli": True,
|
|
}
|
|
registrar_config = {
|
|
"dir": ".augment/commands",
|
|
"format": "markdown",
|
|
"args": "$ARGUMENTS",
|
|
"extension": ".md",
|
|
}
|
|
context_file = ".augment/rules/specify-rules.md"
|
|
multi_install_safe = True
|