-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathade.extensions.mjs
More file actions
64 lines (64 loc) · 1.95 KB
/
Copy pathade.extensions.mjs
File metadata and controls
64 lines (64 loc) · 1.95 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* ade.extensions.mjs — SAP BTP / ABAP architecture extension example
*
* Place this file in your project root to extend the default ADE catalog
* without modifying any upstream source files.
*
* This file serves as both documentation and an integration example.
* It is by no means functional! It's about providing options with dependent
* skills and documentation sources.
* TypeScript consumers can use ade.extensions.ts with full IDE type-checking.
*
* @type {import('@codemcp/ade-core').AdeExtensions}
*/
export default {
facetContributions: {
architecture: [
{
id: "sap-abap",
label: "SAP BTP / ABAP",
description:
"SAP Business Technology Platform with ABAP Cloud development",
recipe: [
{
writer: "skills",
config: {
skills: [
{
name: "sap-abap-architecture",
source: "your-org/ade-sap/skills/sap-abap-architecture"
},
{
name: "sap-abap-code",
source: "your-org/ade-sap/skills/sap-abap-code"
},
{
name: "sap-abap-testing",
source: "your-org/ade-sap/skills/sap-abap-testing"
}
]
}
},
{
writer: "docset",
config: {
id: "sap-btp-docs",
label: "SAP BTP",
origin: "https://your-serialized-version-of-btp-docs.git",
description: "SAP Business Technology Platform documentation"
}
},
{
writer: "docset",
config: {
id: "sap-abap-docs",
label: "SAP ABAP Cloud",
origin: "https://your-serialized-version-of-abap-docs.git",
description: "Official SAP ABAP Cloud development guide"
}
}
]
}
]
}
};