You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: calm-ai/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,7 +127,7 @@ Configuration files in `ai-assistants/` define how to integrate CALM prompts wit
127
127
"topLevelPromptFileName": "CALM.agent.md",
128
128
"skillPrefix": "`",
129
129
"skillSuffix": "`",
130
-
"frontmatter": "---\ndescription: An AI Assistant for FINOS CALM development.\ntools: ['codebase', 'editFiles', 'fetch', 'runInTerminal']\nmodel: Claude Sonnet 4.5\n---",
130
+
"frontmatter": "---\ndescription: An AI Assistant for FINOS CALM development.\ntools: ['codebase', 'editFiles', 'fetch', 'runInTerminal']\n---",
131
131
"skillPrompts": [
132
132
"calm-prompts/architecture-creation.md",
133
133
"calm-prompts/calm-cli-instructions.md",
@@ -149,7 +149,7 @@ Configuration files in `ai-assistants/` define how to integrate CALM prompts wit
149
149
150
150
**GitHub Copilot specifics:**
151
151
- Uses backticks (`` ` ``) to reference skill files
152
-
- Frontmatter specifies Claude Sonnet 4.5 model and available tools
152
+
- Frontmatter specifies available tools
153
153
- Prompts placed in `.github/agents/` directory
154
154
- Skill prompts referenced as `` `calm-prompts/architecture-creation.md` ``
Copy file name to clipboardExpand all lines: calm-ai/ai-assistants/copilot.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
"topLevelPromptFileName": "CALM.agent.md",
5
5
"skillPrefix": "`",
6
6
"skillSuffix": "`",
7
-
"frontmatter": "---\ndescription: An AI Assistant for FINOS CALM development.\ntools: ['codebase', 'editFiles', 'fetch', 'runInTerminal']\nmodel: Claude Sonnet 4.5\n---",
7
+
"frontmatter": "---\ndescription: An AI Assistant for FINOS CALM development.\ntools: ['codebase', 'editFiles', 'fetch', 'runInTerminal']\n---",
Copy file name to clipboardExpand all lines: cli/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -241,7 +241,7 @@ This isn't a full break, but it implies that you've forgotten to fill out a deta
241
241
242
242
## CALM init-ai
243
243
244
-
The `init-ai`command sets up AI-powered development assistance for CALM architecture modeling by configuring a specialized VSCode agent with comprehensive tool prompts. At present two AI Assistant providers are supported: Github Copilot and AWS Kiro.
244
+
The `init-ai`command sets up AI-powered development assistance for CALM architecture modeling by configuring a specialized VSCode agent with comprehensive tool prompts. At present three AI Assistant providers are supported: Github Copilot, Claude Code, and AWS Kiro.
245
245
246
246
```shell
247
247
calm init-ai --help
@@ -250,7 +250,7 @@ Usage: calm init-ai [options]
250
250
Augment a git repository with AI assistance for CALM
251
251
252
252
Options:
253
-
-p, --provider <provider> AI provider to initialize (choices: "copilot", "kiro")
253
+
-p, --provider <provider> AI provider to initialize (choices: "copilot", "kiro", "claude")
254
254
-d, --directory <path> Target directory (defaults to current directory) (default: ".")
0 commit comments