mirror of
https://github.com/github/spec-kit.git
synced 2026-08-03 06:26:30 +08:00
fix(kilocode): install commands under .kilo/commands (#3672)
* fix(kilocode): write commands to .kilo/commands * fix: guard Kilo legacy command migration --------- Co-authored-by: root <kinsonnee@gmail.com>
This commit is contained in:
@@ -422,7 +422,12 @@ class TestForgeCommandRegistrar:
|
||||
|
||||
# Kilo Code uses standard markdown format without name injection.
|
||||
# The format_name callback should not be invoked for non-Forge agents.
|
||||
kilocode_cmd = tmp_path / ".kilocode" / "workflows" / "speckit.my-extension.example.md"
|
||||
kilocode_cmd = (
|
||||
tmp_path
|
||||
/ ".kilo"
|
||||
/ "commands"
|
||||
/ "speckit.my-extension.example.md"
|
||||
)
|
||||
assert kilocode_cmd.exists()
|
||||
|
||||
content = kilocode_cmd.read_text(encoding="utf-8")
|
||||
|
||||
Reference in New Issue
Block a user