Add support for Junie (#1831)

* Add support for Junie

* Add Junie agent configuration to specify-cli

* Add support for iflow agent in context update scripts
This commit is contained in:
Irina Chichikova
2026-03-19 18:54:42 +02:00
committed by GitHub
parent c8af730b14
commit 34171efcef
10 changed files with 68 additions and 31 deletions

View File

@@ -183,6 +183,13 @@ AGENT_CONFIG = {
"install_url": None, # IDE-based
"requires_cli": False,
},
"junie": {
"name": "Junie",
"folder": ".junie/",
"commands_subdir": "commands",
"install_url": "https://junie.jetbrains.com/",
"requires_cli": True,
},
"kilocode": {
"name": "Kilo Code",
"folder": ".kilocode/",

View File

@@ -71,6 +71,12 @@ class CommandRegistrar:
"args": "$ARGUMENTS",
"extension": ".md"
},
"junie": {
"dir": ".junie/commands",
"format": "markdown",
"args": "$ARGUMENTS",
"extension": ".md"
},
"kilocode": {
"dir": ".kilocode/workflows",
"format": "markdown",