feat: add Junie agent integration

Add support for JetBrains Junie AI agent:
- Create .junie/guidelines.md with workflow instructions
- Create .junie/mcp/mcp.json for MCP server configuration
- Add 'junie' to BuiltinRecipes in recipes.go
- Add runJunieRecipe() handler in setup.go
- Add website documentation
- Add integrations/junie/README.md

Usage: bd setup junie
This commit is contained in:
Jan-Niklas W
2026-01-12 10:36:46 -06:00
committed by Jan-Niklas W.
parent 279192c5fb
commit d475e424c2
7 changed files with 1073 additions and 0 deletions

View File

@@ -90,6 +90,12 @@ var BuiltinRecipes = map[string]Recipe{
Description: "Aider config and instruction files",
Paths: []string{".aider.conf.yml", ".aider/BEADS.md", ".aider/README.md"},
},
"junie": {
Name: "Junie",
Type: TypeMultiFile,
Description: "Junie guidelines and MCP configuration",
Paths: []string{".junie/guidelines.md", ".junie/mcp/mcp.json"},
},
}
// UserRecipes holds recipes loaded from user config file.