mirror of
https://github.com/github/spec-kit.git
synced 2026-07-07 06:35:06 +08:00
* fix(goose): repoint install_url and docs to goose-docs.ai (#3171) Goose moved to the Agentic AI Foundation; docs moved from block.github.io/goose to goose-docs.ai. Update install_url and the docs reference link. Assisted-by: GitHub Copilot (model: Claude Opus 4.8, autonomous) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * docs(goose): restore table column alignment Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Assisted-by: GitHub Copilot (model: Claude Opus 4.8, autonomous) --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
21 lines
544 B
Python
21 lines
544 B
Python
"""Goose integration — open source AI agent (Agentic AI Foundation)."""
|
|
|
|
from ..base import YamlIntegration
|
|
|
|
|
|
class GooseIntegration(YamlIntegration):
|
|
key = "goose"
|
|
config = {
|
|
"name": "Goose",
|
|
"folder": ".goose/",
|
|
"commands_subdir": "recipes",
|
|
"install_url": "https://goose-docs.ai/docs/getting-started/installation",
|
|
"requires_cli": True,
|
|
}
|
|
registrar_config = {
|
|
"dir": ".goose/recipes",
|
|
"format": "yaml",
|
|
"args": "{{args}}",
|
|
"extension": ".yaml",
|
|
}
|