@@ -25,14 +25,17 @@ calm-ai/
2525│ ├── architecture-creation.md
2626│ ├── calm-cli-instructions.md
2727│ ├── control-creation.md
28+ │ ├── decorator-creation.md
2829│ ├── documentation-creation.md
2930│ ├── flow-creation.md
3031│ ├── interface-creation.md
3132│ ├── metadata-creation.md
33+ │ ├── moment-creation.md
3234│ ├── node-creation.md
3335│ ├── pattern-creation.md
3436│ ├── relationship-creation.md
35- │ └── standards-creation.md
37+ │ ├── standards-creation.md
38+ │ └── timeline-creation.md
3639└── package.json # Package metadata
3740```
3841
@@ -45,14 +48,17 @@ Individual markdown files providing detailed guidance for specific CALM modeling
4548| ` architecture-creation.md ` | Guide for creating complete CALM architecture documents with required schema structure |
4649| ` calm-cli-instructions.md ` | Summary of CALM CLI commands, validation modes, and usage flags |
4750| ` control-creation.md ` | Guide for defining control requirements and compliance configurations |
51+ | ` decorator-creation.md ` | Guide for creating decorators |
4852| ` documentation-creation.md ` | Guide for generating documentation from CALM models |
4953| ` flow-creation.md ` | Guide for modeling business process flows through architecture |
5054| ` interface-creation.md ` | Critical guidance for interface definitions and oneOf constraints |
5155| ` metadata-creation.md ` | Guide for adding metadata arrays with proper validation |
56+ | ` moment-creation.md ` | Guide for adding moments to timelines with proper validation |
5257| ` node-creation.md ` | Guide for creating nodes (components) with proper validation |
5358| ` pattern-creation.md ` | Guide for defining reusable architectural patterns |
5459| ` relationship-creation.md ` | Guide for creating relationships between nodes |
5560| ` standards-creation.md ` | Guide for creating JSON Schema Standards extending CALM with organizational requirements |
61+ | ` timeline-creation.md ` | Guide for creating architecture timelines |
5662
5763Each tool prompt follows a consistent structure:
5864- Overview and purpose
@@ -133,7 +139,10 @@ Configuration files in `ai-assistants/` define how to integrate CALM prompts wit
133139 " calm-prompts/flow-creation.md" ,
134140 " calm-prompts/pattern-creation.md" ,
135141 " calm-prompts/documentation-creation.md" ,
136- " calm-prompts/standards-creation.md"
142+ " calm-prompts/standards-creation.md" ,
143+ " calm-prompts/moment-creation.md" ,
144+ " calm-prompts/timeline-creation.md" ,
145+ " calm-prompts/decorator-creation.md"
137146 ]
138147}
139148```
@@ -165,7 +174,10 @@ Configuration files in `ai-assistants/` define how to integrate CALM prompts wit
165174 " calm-prompts/flow-creation.md" ,
166175 " calm-prompts/pattern-creation.md" ,
167176 " calm-prompts/documentation-creation.md" ,
168- " calm-prompts/standards-creation.md"
177+ " calm-prompts/standards-creation.md" ,
178+ " calm-prompts/moment-creation.md" ,
179+ " calm-prompts/timeline-creation.md" ,
180+ " calm-prompts/decorator-creation.md"
169181 ]
170182}
171183```
@@ -210,7 +222,7 @@ The template includes:
210222### 2. Prompt Management
211223- Provides modular, focused guidance for specific CALM tasks
212224- Enforces validation requirements and best practices
213- - References CALM schema v1.1 for accuracy
225+ - References CALM schema v1.2 for accuracy
214226- Includes working examples and common pitfall warnings
215227
216228### 3. Multi-provider Support
@@ -282,7 +294,7 @@ When editing `templates/CALM.chatmode_template.md`:
282294## Validation Requirements
283295
284296All tool prompts must:
285- - Reference CALM schema v1.1
297+ - Reference CALM schema v1.2
286298- Include mandatory validation steps
287299- Provide ` calm validate ` commands
288300- Emphasize ` hasErrors: false ` requirement
@@ -292,6 +304,6 @@ All tool prompts must:
292304## Related Documentation
293305
294306- ** CALM CLI** : See ` cli/AGENTS.md ` for CLI command details
295- - ** CALM Schema** : https://calm.finos.org/release/1.1 /meta/calm.json
307+ - ** CALM Schema** : https://calm.finos.org/release/1.2 /meta/calm.json
296308- ** User Docs** : https://calm.finos.org
297309- ** VSCode Extension** : See ` calm-plugins/vscode/AGENTS.md `
0 commit comments