-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathschema.json
More file actions
43 lines (43 loc) · 1.41 KB
/
schema.json
File metadata and controls
43 lines (43 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "http://json-schema.org/schema",
"$id": "igniteui-angular-cli-config",
"title": "Ignite UI for Angular CLI Config Options Schema",
"type": "object",
"properties": {
"addAISkills": {
"type": "boolean",
"description": "Add AI coding skills for your IDE",
"default": true,
"x-prompt": "Would you like to add AI coding skills for your IDE?"
},
"aiSkillsTargets": {
"type": "array",
"description": "AI agent targets for skill files",
"items": {
"type": "string",
"enum": ["copilot", "claude", "cursor", "agents", "custom"]
},
"x-prompt": {
"message": "Which AI coding assistant(s) would you like to add skills for?",
"type": "list",
"multiselect": true,
"items": [
{ "value": "copilot", "label": "GitHub Copilot (.github/copilot-instructions.md)" },
{ "value": "claude", "label": "Claude (CLAUDE.md)" },
{ "value": "cursor", "label": "Cursor (.cursor/skills/)" },
{ "value": "agents", "label": "VS Code Agents (.agents/skills/)" },
{ "value": "custom", "label": "Add custom path" }
]
}
},
"aiSkillsCustomPath": {
"type": "string",
"description": "Custom path for AI skill files",
"x-prompt": {
"message": "Enter the custom path for AI skill files:",
"type": "input"
}
}
},
"required": []
}