mirror of
https://github.com/github/spec-kit.git
synced 2026-08-03 06:26:30 +08:00
* fix(kilocode): write commands to .kilo/commands * fix: guard Kilo legacy command migration --------- Co-authored-by: root <kinsonnee@gmail.com>
23 lines
544 B
Python
23 lines
544 B
Python
"""Kilo Code integration."""
|
|
|
|
from ..base import MarkdownIntegration
|
|
|
|
|
|
class KilocodeIntegration(MarkdownIntegration):
|
|
key = "kilocode"
|
|
config = {
|
|
"name": "Kilo Code",
|
|
"folder": ".kilo/",
|
|
"commands_subdir": "commands",
|
|
"install_url": None,
|
|
"requires_cli": False,
|
|
}
|
|
registrar_config = {
|
|
"dir": ".kilo/commands",
|
|
"legacy_dir": ".kilocode/workflows",
|
|
"format": "markdown",
|
|
"args": "$ARGUMENTS",
|
|
"extension": ".md",
|
|
}
|
|
multi_install_safe = True
|