@theia/core 1.74.0-next.5 → 1.74.0-next.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/lib/browser/catalog.json +300 -36
- package/lib/browser/common-frontend-contribution.d.ts.map +1 -1
- package/lib/browser/common-frontend-contribution.js +1 -2
- package/lib/browser/common-frontend-contribution.js.map +1 -1
- package/lib/browser/keybinding.d.ts.map +1 -1
- package/lib/browser/keybinding.js +12 -7
- package/lib/browser/keybinding.js.map +1 -1
- package/lib/browser/preferences/preference-contribution.d.ts.map +1 -1
- package/lib/browser/preferences/preference-contribution.js +9 -1
- package/lib/browser/preferences/preference-contribution.js.map +1 -1
- package/lib/browser/preferences/preference-service.spec.js +63 -0
- package/lib/browser/preferences/preference-service.spec.js.map +1 -1
- package/lib/browser/shell/application-shell.d.ts.map +1 -1
- package/lib/browser/shell/application-shell.js +19 -26
- package/lib/browser/shell/application-shell.js.map +1 -1
- package/lib/browser/tree/tree-widget.d.ts +7 -33
- package/lib/browser/tree/tree-widget.d.ts.map +1 -1
- package/lib/browser/tree/tree-widget.js +7 -54
- package/lib/browser/tree/tree-widget.js.map +1 -1
- package/lib/browser/widgets/select-component.d.ts +2 -2
- package/lib/browser/widgets/select-component.d.ts.map +1 -1
- package/lib/browser/widgets/select-component.js +42 -12
- package/lib/browser/widgets/select-component.js.map +1 -1
- package/lib/common/preferences/index.d.ts +1 -0
- package/lib/common/preferences/index.d.ts.map +1 -1
- package/lib/common/preferences/index.js +1 -0
- package/lib/common/preferences/index.js.map +1 -1
- package/lib/common/preferences/preference-scope.d.ts +6 -1
- package/lib/common/preferences/preference-scope.d.ts.map +1 -1
- package/lib/common/preferences/preference-scope.js +5 -0
- package/lib/common/preferences/preference-scope.js.map +1 -1
- package/lib/common/preferences/preference-scope.spec.js +5 -3
- package/lib/common/preferences/preference-scope.spec.js.map +1 -1
- package/lib/common/preferences/preference-service.d.ts +19 -0
- package/lib/common/preferences/preference-service.d.ts.map +1 -1
- package/lib/common/preferences/preference-service.js +34 -5
- package/lib/common/preferences/preference-service.js.map +1 -1
- package/lib/common/preferences/session-preference-provider.d.ts +17 -0
- package/lib/common/preferences/session-preference-provider.d.ts.map +1 -0
- package/lib/common/preferences/session-preference-provider.js +77 -0
- package/lib/common/preferences/session-preference-provider.js.map +1 -0
- package/lib/common/preferences/session-preference-provider.spec.d.ts +2 -0
- package/lib/common/preferences/session-preference-provider.spec.d.ts.map +1 -0
- package/lib/common/preferences/session-preference-provider.spec.js +71 -0
- package/lib/common/preferences/session-preference-provider.spec.js.map +1 -0
- package/lib/electron-node/hosting/electron-backend-hosting-module.d.ts.map +1 -1
- package/lib/electron-node/hosting/electron-backend-hosting-module.js +7 -0
- package/lib/electron-node/hosting/electron-backend-hosting-module.js.map +1 -1
- package/lib/electron-node/hosting/electron-backend-hosting-module.spec.d.ts +2 -0
- package/lib/electron-node/hosting/electron-backend-hosting-module.spec.d.ts.map +1 -0
- package/lib/electron-node/hosting/electron-backend-hosting-module.spec.js +39 -0
- package/lib/electron-node/hosting/electron-backend-hosting-module.spec.js.map +1 -0
- package/lib/node/hosting/backend-hosting-module.d.ts.map +1 -1
- package/lib/node/hosting/backend-hosting-module.js +4 -1
- package/lib/node/hosting/backend-hosting-module.js.map +1 -1
- package/lib/node/hosting/browser-connection-token.d.ts +29 -1
- package/lib/node/hosting/browser-connection-token.d.ts.map +1 -1
- package/lib/node/hosting/browser-connection-token.js +25 -1
- package/lib/node/hosting/browser-connection-token.js.map +1 -1
- package/lib/node/hosting/browser-connection-token.spec.js +70 -0
- package/lib/node/hosting/browser-connection-token.spec.js.map +1 -1
- package/lib/node/index.d.ts +1 -0
- package/lib/node/index.d.ts.map +1 -1
- package/lib/node/index.js +3 -1
- package/lib/node/index.js.map +1 -1
- package/package.json +9 -9
- package/src/browser/common-frontend-contribution.ts +1 -2
- package/src/browser/keybinding.ts +12 -7
- package/src/browser/preferences/preference-contribution.ts +9 -1
- package/src/browser/preferences/preference-service.spec.ts +72 -0
- package/src/browser/shell/application-shell.ts +19 -25
- package/src/browser/style/select-component.css +16 -0
- package/src/browser/style/sidepanel.css +5 -0
- package/src/browser/style/status-bar.css +1 -1
- package/src/browser/tree/tree-widget.tsx +12 -78
- package/src/browser/widgets/select-component.tsx +41 -12
- package/src/common/preferences/index.ts +1 -0
- package/src/common/preferences/preference-scope.spec.ts +5 -3
- package/src/common/preferences/preference-scope.ts +6 -1
- package/src/common/preferences/preference-service.ts +39 -5
- package/src/common/preferences/session-preference-provider.spec.ts +78 -0
- package/src/common/preferences/session-preference-provider.ts +69 -0
- package/src/electron-node/hosting/electron-backend-hosting-module.spec.ts +42 -0
- package/src/electron-node/hosting/electron-backend-hosting-module.ts +8 -0
- package/src/node/hosting/backend-hosting-module.ts +5 -2
- package/src/node/hosting/browser-connection-token.spec.ts +92 -0
- package/src/node/hosting/browser-connection-token.ts +45 -1
- package/src/node/index.ts +1 -0
package/lib/browser/catalog.json
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
"$schema": "https://www.schemastore.org/schema-catalog.json",
|
|
3
3
|
"version": 1,
|
|
4
4
|
"schemas": [
|
|
5
|
+
{
|
|
6
|
+
"name": "Mermaid config",
|
|
7
|
+
"description": "Configuration for Mermaid diagrams and charts",
|
|
8
|
+
"fileMatch": ["mermaid.config.json", ".mermaidrc.json", "mermaidrc.json"],
|
|
9
|
+
"url": "https://mermaid.js.org/schemas/config.schema.json"
|
|
10
|
+
},
|
|
5
11
|
{
|
|
6
12
|
"name": "Specpin spec file",
|
|
7
13
|
"description": "Specpin business-spec file (.specs/*.spec.json): rules, descriptions, and acceptance criteria pinned to UI elements",
|
|
@@ -10,13 +16,13 @@
|
|
|
10
16
|
},
|
|
11
17
|
{
|
|
12
18
|
"name": "Burnless SRE config",
|
|
13
|
-
"description": "Burnless sre.yaml
|
|
19
|
+
"description": "Burnless sre.yaml — SLOs, error budgets, runbooks, on-call, and dashboards as code",
|
|
14
20
|
"fileMatch": ["sre.yaml", "sre.yml"],
|
|
15
21
|
"url": "https://raw.githubusercontent.com/Custos-com/Burnless/main/schema/sre.schema.json"
|
|
16
22
|
},
|
|
17
23
|
{
|
|
18
24
|
"name": "SigmaCV CV",
|
|
19
|
-
"description": "SigmaCV canonical academic-CV object
|
|
25
|
+
"description": "SigmaCV canonical academic-CV object — open, machine-readable CV metadata (publications, positions, education, funding and narrative sections) generated from open research information",
|
|
20
26
|
"fileMatch": ["**/*.sigmacv.json"],
|
|
21
27
|
"url": "https://www.schemastore.org/sigmacv.json"
|
|
22
28
|
},
|
|
@@ -122,6 +128,16 @@
|
|
|
122
128
|
"fileMatch": ["accelerator.yaml"],
|
|
123
129
|
"url": "https://www.schemastore.org/accelerator.json"
|
|
124
130
|
},
|
|
131
|
+
{
|
|
132
|
+
"name": "Amazon S3 bucket CORS",
|
|
133
|
+
"description": "JSON CORS configuration for Amazon S3 buckets",
|
|
134
|
+
"fileMatch": [
|
|
135
|
+
"**/s3-cors.json",
|
|
136
|
+
"**/s3-bucket-cors.json",
|
|
137
|
+
"**/s3-cors-configuration.json"
|
|
138
|
+
],
|
|
139
|
+
"url": "https://www.schemastore.org/s3-bucket-cors.json"
|
|
140
|
+
},
|
|
125
141
|
{
|
|
126
142
|
"name": "amplify.yml",
|
|
127
143
|
"description": "AWS Amplify Console build settings file",
|
|
@@ -131,7 +147,7 @@
|
|
|
131
147
|
{
|
|
132
148
|
"name": "Applicant Profile Protocol",
|
|
133
149
|
"description": "Structured JSON format for professional profiles, resumes, and CVs with skills, experience, education, and certifications",
|
|
134
|
-
"fileMatch": ["*.app.json"],
|
|
150
|
+
"fileMatch": ["*.app-profile.json"],
|
|
135
151
|
"url": "https://app-protocol.org/schema/app-1.0.json"
|
|
136
152
|
},
|
|
137
153
|
{
|
|
@@ -219,7 +235,7 @@
|
|
|
219
235
|
"name": ".aiproj.json",
|
|
220
236
|
"description": "Settings for project analysis by the Application Inspector",
|
|
221
237
|
"fileMatch": [".aiproj.json"],
|
|
222
|
-
"url": "https://www.schemastore.org/aiproj-1.
|
|
238
|
+
"url": "https://www.schemastore.org/aiproj-1.11.json",
|
|
223
239
|
"versions": {
|
|
224
240
|
"1.0": "https://www.schemastore.org/aiproj-1.0.json",
|
|
225
241
|
"1.1": "https://www.schemastore.org/aiproj-1.1.json",
|
|
@@ -231,9 +247,16 @@
|
|
|
231
247
|
"1.7": "https://www.schemastore.org/aiproj-1.7.json",
|
|
232
248
|
"1.8": "https://www.schemastore.org/aiproj-1.8.json",
|
|
233
249
|
"1.9": "https://www.schemastore.org/aiproj-1.9.json",
|
|
234
|
-
"1.10": "https://www.schemastore.org/aiproj-1.10.json"
|
|
250
|
+
"1.10": "https://www.schemastore.org/aiproj-1.10.json",
|
|
251
|
+
"1.11": "https://www.schemastore.org/aiproj-1.11.json"
|
|
235
252
|
}
|
|
236
253
|
},
|
|
254
|
+
{
|
|
255
|
+
"name": "abtop",
|
|
256
|
+
"description": "abtop configuration file",
|
|
257
|
+
"fileMatch": ["**/abtop/config.toml"],
|
|
258
|
+
"url": "https://www.schemastore.org/abtop.json"
|
|
259
|
+
},
|
|
237
260
|
{
|
|
238
261
|
"name": "ABCInventoryModuleData",
|
|
239
262
|
"description": "ABCInventoryModuleData defining the structure of ABCInventoryModuleData including Principal Data, inventory, and transaction data in ABC-Plan's Inventory Management Module",
|
|
@@ -331,6 +354,18 @@
|
|
|
331
354
|
"fileMatch": ["actionlint.yaml", "actionlint.yml"],
|
|
332
355
|
"url": "https://www.schemastore.org/actionlint.json"
|
|
333
356
|
},
|
|
357
|
+
{
|
|
358
|
+
"name": "AI Harness config",
|
|
359
|
+
"description": "Repository bootstrap-intent marker for ai-harness, including context directory, resolved AI coding targets, and posture",
|
|
360
|
+
"fileMatch": [".aih-config.json"],
|
|
361
|
+
"url": "https://www.schemastore.org/aih-config.json"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "AI Harness org policy",
|
|
365
|
+
"description": "Repository governance policy for ai-harness command guardrails, MCP policy, and trust gates",
|
|
366
|
+
"fileMatch": ["aih-org-policy.json"],
|
|
367
|
+
"url": "https://www.schemastore.org/aih-org-policy.json"
|
|
368
|
+
},
|
|
334
369
|
{
|
|
335
370
|
"name": "AIConfig",
|
|
336
371
|
"description": "AIConfig that is used to store generative AI prompts, models and model parameters",
|
|
@@ -503,6 +538,12 @@
|
|
|
503
538
|
"fileMatch": ["artifacthub-repo.yml"],
|
|
504
539
|
"url": "https://www.schemastore.org/artifacthub-repo.json"
|
|
505
540
|
},
|
|
541
|
+
{
|
|
542
|
+
"name": "Are The Types Wrong?",
|
|
543
|
+
"description": "Configuration for the Are The Types Wrong? CLI",
|
|
544
|
+
"fileMatch": [".attw.json"],
|
|
545
|
+
"url": "https://www.schemastore.org/attw.json"
|
|
546
|
+
},
|
|
506
547
|
{
|
|
507
548
|
"name": "asm-lsp",
|
|
508
549
|
"description": "Configuration file for asm-lsp",
|
|
@@ -1015,6 +1056,24 @@
|
|
|
1015
1056
|
"fileMatch": ["loki.yml", "loki.yaml"],
|
|
1016
1057
|
"url": "https://www.schemastore.org/loki.json"
|
|
1017
1058
|
},
|
|
1059
|
+
{
|
|
1060
|
+
"name": "lsd config",
|
|
1061
|
+
"description": "Configuration for lsd, the next-generation ls command",
|
|
1062
|
+
"fileMatch": ["**/.config/lsd/config.yaml"],
|
|
1063
|
+
"url": "https://www.schemastore.org/lsd-config.json"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"name": "lsd colors",
|
|
1067
|
+
"description": "Color theme configuration for lsd",
|
|
1068
|
+
"fileMatch": ["**/.config/lsd/colors.yaml"],
|
|
1069
|
+
"url": "https://www.schemastore.org/lsd-colors.json"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"name": "lsd icons",
|
|
1073
|
+
"description": "Icon theme configuration for lsd",
|
|
1074
|
+
"fileMatch": ["**/.config/lsd/icons.yaml"],
|
|
1075
|
+
"url": "https://www.schemastore.org/lsd-icons.json"
|
|
1076
|
+
},
|
|
1018
1077
|
{
|
|
1019
1078
|
"name": "Azure Pipelines",
|
|
1020
1079
|
"description": "Azure Pipelines YAML pipelines definition",
|
|
@@ -1722,25 +1781,25 @@
|
|
|
1722
1781
|
"name": "dbt Dependencies",
|
|
1723
1782
|
"description": "dbt's dependencies.yml file for external packages and cross-project refs",
|
|
1724
1783
|
"fileMatch": ["**/*dbt*/dependencies.yaml", "**/*dbt*/dependencies.yml"],
|
|
1725
|
-
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/
|
|
1784
|
+
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest_fusion/dependencies-latest-fusion.json"
|
|
1726
1785
|
},
|
|
1727
1786
|
{
|
|
1728
1787
|
"name": "dbt Project",
|
|
1729
1788
|
"description": "dbt's project configuration file",
|
|
1730
1789
|
"fileMatch": ["dbt_project.yaml", "dbt_project.yml"],
|
|
1731
|
-
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/
|
|
1790
|
+
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest_fusion/dbt_project-latest-fusion.json"
|
|
1732
1791
|
},
|
|
1733
1792
|
{
|
|
1734
1793
|
"name": "dbt Packages",
|
|
1735
1794
|
"description": "dbt's packages.yml file for external packages",
|
|
1736
1795
|
"fileMatch": ["**/*dbt*/packages.yaml", "**/*dbt*/packages.yml"],
|
|
1737
|
-
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/
|
|
1796
|
+
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest_fusion/packages-latest-fusion.json"
|
|
1738
1797
|
},
|
|
1739
1798
|
{
|
|
1740
1799
|
"name": "dbt Selectors",
|
|
1741
1800
|
"description": "dbt's selectors.yml file for configuring YAML selectors",
|
|
1742
1801
|
"fileMatch": ["**/*dbt*/selectors.yaml", "**/*dbt*/selectors.yml"],
|
|
1743
|
-
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/
|
|
1802
|
+
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest_fusion/selectors-latest-fusion.json"
|
|
1744
1803
|
},
|
|
1745
1804
|
{
|
|
1746
1805
|
"name": "dbt YAML files",
|
|
@@ -1755,7 +1814,7 @@
|
|
|
1755
1814
|
"**/*dbt*/snapshots/**/*.yaml",
|
|
1756
1815
|
"**/*dbt*/snapshots/**/*.yml"
|
|
1757
1816
|
],
|
|
1758
|
-
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/
|
|
1817
|
+
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest_fusion/dbt_yml_files-latest-fusion.json"
|
|
1759
1818
|
},
|
|
1760
1819
|
{
|
|
1761
1820
|
"name": "Debian Upstream Metadata file",
|
|
@@ -2766,6 +2825,15 @@
|
|
|
2766
2825
|
"fileMatch": ["**/eca/config.json", "**/.eca/config.json"],
|
|
2767
2826
|
"url": "https://eca.dev/config.json"
|
|
2768
2827
|
},
|
|
2828
|
+
{
|
|
2829
|
+
"name": "editorconfig-checker",
|
|
2830
|
+
"description": "editorconfig-checker configuration file",
|
|
2831
|
+
"fileMatch": [".editorconfig-checker.json"],
|
|
2832
|
+
"url": "https://raw.githubusercontent.com/editorconfig-checker/editorconfig-checker/main/.editorconfig-checker.schema.json",
|
|
2833
|
+
"versions": {
|
|
2834
|
+
"3.8.0": "https://raw.githubusercontent.com/editorconfig-checker/editorconfig-checker/v3.8.0/.editorconfig-checker.schema.json"
|
|
2835
|
+
}
|
|
2836
|
+
},
|
|
2769
2837
|
{
|
|
2770
2838
|
"name": "eksctl",
|
|
2771
2839
|
"description": "eksctl cluster configuration file",
|
|
@@ -3406,6 +3474,12 @@
|
|
|
3406
3474
|
"2.3": "https://raw.githubusercontent.com/roedoejet/g2p/main/g2p/mappings/.schema/g2p-config-schema-2.3.json"
|
|
3407
3475
|
}
|
|
3408
3476
|
},
|
|
3477
|
+
{
|
|
3478
|
+
"name": "GAMA",
|
|
3479
|
+
"description": "GAMA configuration file",
|
|
3480
|
+
"fileMatch": ["**/gama/config.yaml", ".gama.yaml"],
|
|
3481
|
+
"url": "https://www.schemastore.org/gama.json"
|
|
3482
|
+
},
|
|
3409
3483
|
{
|
|
3410
3484
|
"name": "Gaspar",
|
|
3411
3485
|
"description": "Configuration for Gaspar",
|
|
@@ -3442,7 +3516,6 @@
|
|
|
3442
3516
|
{
|
|
3443
3517
|
"name": "GCP Blueprint Metadata",
|
|
3444
3518
|
"description": "Blueprint Solutions for Google Cloud",
|
|
3445
|
-
"fileMatch": ["metadata.yaml", "metadata.display.yaml"],
|
|
3446
3519
|
"url": "https://www.schemastore.org/gcp-blueprint-metadata.json"
|
|
3447
3520
|
},
|
|
3448
3521
|
{
|
|
@@ -3483,7 +3556,7 @@
|
|
|
3483
3556
|
".gitversion.yml",
|
|
3484
3557
|
".gitversion.yaml"
|
|
3485
3558
|
],
|
|
3486
|
-
"url": "https://gitversion.net/schemas/6.
|
|
3559
|
+
"url": "https://gitversion.net/schemas/6.8/GitVersion.configuration.json",
|
|
3487
3560
|
"versions": {
|
|
3488
3561
|
"5.12": "https://gitversion.net/schemas/5.12/GitVersion.configuration.json",
|
|
3489
3562
|
"6.0": "https://gitversion.net/schemas/6.0/GitVersion.configuration.json",
|
|
@@ -3493,9 +3566,32 @@
|
|
|
3493
3566
|
"6.4": "https://gitversion.net/schemas/6.4/GitVersion.configuration.json",
|
|
3494
3567
|
"6.5": "https://gitversion.net/schemas/6.5/GitVersion.configuration.json",
|
|
3495
3568
|
"6.6": "https://gitversion.net/schemas/6.6/GitVersion.configuration.json",
|
|
3496
|
-
"6.7": "https://gitversion.net/schemas/6.7/GitVersion.configuration.json"
|
|
3569
|
+
"6.7": "https://gitversion.net/schemas/6.7/GitVersion.configuration.json",
|
|
3570
|
+
"6.8": "https://gitversion.net/schemas/6.8/GitVersion.configuration.json"
|
|
3497
3571
|
}
|
|
3498
3572
|
},
|
|
3573
|
+
{
|
|
3574
|
+
"name": "Gitleaks",
|
|
3575
|
+
"description": "Gitleaks configuration file",
|
|
3576
|
+
"fileMatch": ["gitleaks.toml", ".gitleaks.toml"],
|
|
3577
|
+
"url": "https://www.schemastore.org/gitleaks.json"
|
|
3578
|
+
},
|
|
3579
|
+
{
|
|
3580
|
+
"name": "git-cliff",
|
|
3581
|
+
"description": "git-cliff configuration file",
|
|
3582
|
+
"fileMatch": [
|
|
3583
|
+
"cliff.toml",
|
|
3584
|
+
".cliff.toml",
|
|
3585
|
+
"**/.config/cliff.toml",
|
|
3586
|
+
"cliff.yaml",
|
|
3587
|
+
"cliff.yml",
|
|
3588
|
+
".cliff.yaml",
|
|
3589
|
+
".cliff.yml",
|
|
3590
|
+
"**/.config/cliff.yaml",
|
|
3591
|
+
"**/.config/cliff.yml"
|
|
3592
|
+
],
|
|
3593
|
+
"url": "https://www.schemastore.org/git-cliff.json"
|
|
3594
|
+
},
|
|
3499
3595
|
{
|
|
3500
3596
|
"name": "Gitea Issue Template configuration",
|
|
3501
3597
|
"description": "YAML configuring Gitea Issue Templates",
|
|
@@ -3533,6 +3629,12 @@
|
|
|
3533
3629
|
],
|
|
3534
3630
|
"url": "https://www.schemastore.org/github-discussion.json"
|
|
3535
3631
|
},
|
|
3632
|
+
{
|
|
3633
|
+
"name": "GitHub Prompt",
|
|
3634
|
+
"description": "YAML prompt files for GitHub Models (.prompt.yml / .prompt.yaml)",
|
|
3635
|
+
"fileMatch": ["**/*.prompt.yml", "**/*.prompt.yaml"],
|
|
3636
|
+
"url": "https://www.schemastore.org/github-prompt.json"
|
|
3637
|
+
},
|
|
3536
3638
|
{
|
|
3537
3639
|
"name": "GitHub Funding",
|
|
3538
3640
|
"description": "YAML GitHub Funding",
|
|
@@ -3567,6 +3669,12 @@
|
|
|
3567
3669
|
"description": "YAML Jekyll configuration for sites built by GitHub Pages",
|
|
3568
3670
|
"url": "https://www.schemastore.org/github-pages-jekyll.json"
|
|
3569
3671
|
},
|
|
3672
|
+
{
|
|
3673
|
+
"name": "GitHub Secret Scanning",
|
|
3674
|
+
"description": "YAML configuration for GitHub secret scanning exclusions",
|
|
3675
|
+
"fileMatch": ["**/.github/secret_scanning.yml"],
|
|
3676
|
+
"url": "https://www.schemastore.org/github-secret-scanning.json"
|
|
3677
|
+
},
|
|
3570
3678
|
{
|
|
3571
3679
|
"name": "GitHub Workflow",
|
|
3572
3680
|
"description": "YAML GitHub Workflow",
|
|
@@ -3620,6 +3728,17 @@
|
|
|
3620
3728
|
"fileMatch": [".gitpod.yml"],
|
|
3621
3729
|
"url": "https://gitpod.io/schemas/gitpod-schema.json"
|
|
3622
3730
|
},
|
|
3731
|
+
{
|
|
3732
|
+
"name": "GitResume",
|
|
3733
|
+
"description": "GitResume resume-as-code definition file",
|
|
3734
|
+
"fileMatch": [
|
|
3735
|
+
"gitresume.yaml",
|
|
3736
|
+
"gitresume.yml",
|
|
3737
|
+
"*.gitresume.yaml",
|
|
3738
|
+
"*.gitresume.yml"
|
|
3739
|
+
],
|
|
3740
|
+
"url": "https://gitresume.co/schema/resume.schema.json"
|
|
3741
|
+
},
|
|
3623
3742
|
{
|
|
3624
3743
|
"name": "Ansible Execution Environment",
|
|
3625
3744
|
"description": "Ansible execution-environment.yml file",
|
|
@@ -3751,6 +3870,12 @@
|
|
|
3751
3870
|
"fileMatch": [".custom-gcl.yml", ".custom-gcl.yaml"],
|
|
3752
3871
|
"url": "https://golangci-lint.run/jsonschema/custom-gcl.jsonschema.json"
|
|
3753
3872
|
},
|
|
3873
|
+
{
|
|
3874
|
+
"name": "gollama",
|
|
3875
|
+
"description": "gollama configuration file",
|
|
3876
|
+
"fileMatch": ["**/gollama/config.json"],
|
|
3877
|
+
"url": "https://www.schemastore.org/gollama.json"
|
|
3878
|
+
},
|
|
3754
3879
|
{
|
|
3755
3880
|
"name": "go-feature-flag Flag Configuration",
|
|
3756
3881
|
"description": "go-feature-flag flag configuration file",
|
|
@@ -3925,6 +4050,12 @@
|
|
|
3925
4050
|
],
|
|
3926
4051
|
"url": "https://hazelcast.com/schema/config/hazelcast-config-5.7.json"
|
|
3927
4052
|
},
|
|
4053
|
+
{
|
|
4054
|
+
"name": "hassette.toml",
|
|
4055
|
+
"description": "Configuration file for Hassette, an async Python framework for Home Assistant automations",
|
|
4056
|
+
"fileMatch": ["hassette.toml"],
|
|
4057
|
+
"url": "https://raw.githubusercontent.com/NodeJSmith/hassette/main/hassette.schema.json"
|
|
4058
|
+
},
|
|
3928
4059
|
{
|
|
3929
4060
|
"name": "Home Assistant Integration Manifest",
|
|
3930
4061
|
"description": "Home Assistant integration manifest file. Documentation: https://developers.home-assistant.io/docs/creating_integration_manifest/",
|
|
@@ -3964,6 +4095,12 @@
|
|
|
3964
4095
|
"fileMatch": [".htmlvalidate.json"],
|
|
3965
4096
|
"url": "https://html-validate.org/schemas/config.json"
|
|
3966
4097
|
},
|
|
4098
|
+
{
|
|
4099
|
+
"name": "Hoverfly Simulation",
|
|
4100
|
+
"description": "Hoverfly API simulation file for captured or authored HTTP request-response pairs",
|
|
4101
|
+
"fileMatch": [],
|
|
4102
|
+
"url": "https://raw.githubusercontent.com/SpectoLabs/hoverfly/master/core/handlers/v2/schema.json"
|
|
4103
|
+
},
|
|
3967
4104
|
{
|
|
3968
4105
|
"name": "Ory Hydra configuration",
|
|
3969
4106
|
"description": "Ory Hydra configuration file",
|
|
@@ -3986,7 +4123,7 @@
|
|
|
3986
4123
|
"name": "IBM Zapp document",
|
|
3987
4124
|
"description": "IBM Z APPlication configuration file for IBM zDevOps development tools such as Z Open Editor",
|
|
3988
4125
|
"fileMatch": ["zapp.yaml", "zapp.yml", "zapp.json"],
|
|
3989
|
-
"url": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.
|
|
4126
|
+
"url": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.10.2.json",
|
|
3990
4127
|
"versions": {
|
|
3991
4128
|
"1.0.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.0.0.json",
|
|
3992
4129
|
"1.1.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.1.0.json",
|
|
@@ -3997,7 +4134,10 @@
|
|
|
3997
4134
|
"1.5.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.5.0.json",
|
|
3998
4135
|
"1.6.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.6.0.json",
|
|
3999
4136
|
"1.7.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.7.0.json",
|
|
4000
|
-
"1.8.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.8.0.json"
|
|
4137
|
+
"1.8.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.8.0.json",
|
|
4138
|
+
"1.9.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.9.0.json",
|
|
4139
|
+
"1.10.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.10.0.json",
|
|
4140
|
+
"1.10.2": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.10.2.json"
|
|
4001
4141
|
}
|
|
4002
4142
|
},
|
|
4003
4143
|
{
|
|
@@ -4481,6 +4621,17 @@
|
|
|
4481
4621
|
"fileMatch": [".kubri.yaml", ".kubri.yml", "kubri.yaml", "kubri.yml"],
|
|
4482
4622
|
"url": "https://kubri.dev/schema.json"
|
|
4483
4623
|
},
|
|
4624
|
+
{
|
|
4625
|
+
"name": "kind cluster",
|
|
4626
|
+
"description": "Configuration file for kind (Kubernetes IN Docker) clusters",
|
|
4627
|
+
"fileMatch": [
|
|
4628
|
+
"kind.yaml",
|
|
4629
|
+
"kind.yml",
|
|
4630
|
+
"**/kind-config.yaml",
|
|
4631
|
+
"**/kind-config.yml"
|
|
4632
|
+
],
|
|
4633
|
+
"url": "https://www.schemastore.org/kind-cluster.json"
|
|
4634
|
+
},
|
|
4484
4635
|
{
|
|
4485
4636
|
"name": "kustomization.yaml",
|
|
4486
4637
|
"description": "Kubernetes native configuration management",
|
|
@@ -4625,6 +4776,12 @@
|
|
|
4625
4776
|
"fileMatch": [".luaurc"],
|
|
4626
4777
|
"url": "https://www.schemastore.org/luaurc.json"
|
|
4627
4778
|
},
|
|
4779
|
+
{
|
|
4780
|
+
"name": "Madge configuration",
|
|
4781
|
+
"description": "Madge module dependency analysis configuration file",
|
|
4782
|
+
"fileMatch": [".madgerc"],
|
|
4783
|
+
"url": "https://www.schemastore.org/madge.json"
|
|
4784
|
+
},
|
|
4628
4785
|
{
|
|
4629
4786
|
"name": "Mado configuration",
|
|
4630
4787
|
"description": "Mado markdown linter configuration file",
|
|
@@ -4889,6 +5046,11 @@
|
|
|
4889
5046
|
],
|
|
4890
5047
|
"url": "https://raw.githubusercontent.com/getmockd/mockd/main/schema/mockd.schema.json"
|
|
4891
5048
|
},
|
|
5049
|
+
{
|
|
5050
|
+
"name": "MockServer Expectation",
|
|
5051
|
+
"description": "MockServer expectation configuration defining a single request matcher and response action. For files holding an array of expectations, use the \"MockServer Expectations\" entry. See https://www.mock-server.com",
|
|
5052
|
+
"url": "https://www.mock-server.com/schema/expectation.json"
|
|
5053
|
+
},
|
|
4892
5054
|
{
|
|
4893
5055
|
"name": "MockServer Expectations",
|
|
4894
5056
|
"description": "MockServer expectations configuration for defining request matchers and response actions. See https://www.mock-server.com",
|
|
@@ -4905,6 +5067,11 @@
|
|
|
4905
5067
|
"fileMatch": [],
|
|
4906
5068
|
"url": "https://www.schemastore.org/modelparams.json"
|
|
4907
5069
|
},
|
|
5070
|
+
{
|
|
5071
|
+
"name": "models CLI",
|
|
5072
|
+
"description": "models CLI configuration file",
|
|
5073
|
+
"url": "https://www.schemastore.org/modelsdev.json"
|
|
5074
|
+
},
|
|
4908
5075
|
{
|
|
4909
5076
|
"name": "monospace.yml",
|
|
4910
5077
|
"description": "MonoSpace configuration file",
|
|
@@ -5074,7 +5241,7 @@
|
|
|
5074
5241
|
},
|
|
5075
5242
|
{
|
|
5076
5243
|
"name": "nest-cli",
|
|
5077
|
-
"description": "A progressive Node.js framework for building efficient and scalable server-side applications
|
|
5244
|
+
"description": "A progressive Node.js framework for building efficient and scalable server-side applications 🚀",
|
|
5078
5245
|
"fileMatch": [
|
|
5079
5246
|
".nestcli.json",
|
|
5080
5247
|
".nest-cli.json",
|
|
@@ -5095,6 +5262,12 @@
|
|
|
5095
5262
|
"fileMatch": [".nodehawkrc"],
|
|
5096
5263
|
"url": "https://www.schemastore.org/nodehawkrc.json"
|
|
5097
5264
|
},
|
|
5265
|
+
{
|
|
5266
|
+
"name": "Nika workflow",
|
|
5267
|
+
"description": "Nika workflow language (*.nika.yaml) · the nika: v1 envelope, four verbs, stdlib builtins",
|
|
5268
|
+
"fileMatch": ["*.nika.yaml", "*.nika.yml"],
|
|
5269
|
+
"url": "https://raw.githubusercontent.com/supernovae-st/nika-spec/main/schemas/workflow.schema.json"
|
|
5270
|
+
},
|
|
5098
5271
|
{
|
|
5099
5272
|
"name": "nodemon.json",
|
|
5100
5273
|
"description": "nodemon.json configuration files",
|
|
@@ -5203,6 +5376,24 @@
|
|
|
5203
5376
|
"fileMatch": ["fields.yaml", "*_fields.yaml"],
|
|
5204
5377
|
"url": "https://raw.githubusercontent.com/inetis-ch/october-schemas/master/fields.json"
|
|
5205
5378
|
},
|
|
5379
|
+
{
|
|
5380
|
+
"name": "ODGS Standard Metrics",
|
|
5381
|
+
"description": "Open Data Governance Standard (ODGS) metric definitions — KPI logic, lineage, and compliance mappings",
|
|
5382
|
+
"fileMatch": ["*.odgs-metrics.json"],
|
|
5383
|
+
"url": "https://www.schemastore.org/odgs-standard-metrics.json"
|
|
5384
|
+
},
|
|
5385
|
+
{
|
|
5386
|
+
"name": "ODGS Data Rules",
|
|
5387
|
+
"description": "ODGS validation and permissibility rules — mechanically executable data governance constraints",
|
|
5388
|
+
"fileMatch": ["*.odgs-rules.json"],
|
|
5389
|
+
"url": "https://www.schemastore.org/odgs-data-rules.json"
|
|
5390
|
+
},
|
|
5391
|
+
{
|
|
5392
|
+
"name": "ODGS Ontology Graph",
|
|
5393
|
+
"description": "ODGS business-entity ontology graph for AI graph traversal",
|
|
5394
|
+
"fileMatch": ["*.odgs-ontology.json"],
|
|
5395
|
+
"url": "https://www.schemastore.org/odgs-ontology-graph.json"
|
|
5396
|
+
},
|
|
5206
5397
|
{
|
|
5207
5398
|
"name": "ogen",
|
|
5208
5399
|
"description": "ogen code generator configuration, see https://ogen.dev/docs/config",
|
|
@@ -5241,7 +5432,14 @@
|
|
|
5241
5432
|
{
|
|
5242
5433
|
"name": "openapi.json",
|
|
5243
5434
|
"description": "An OpenAPI documentation file",
|
|
5244
|
-
"fileMatch": [
|
|
5435
|
+
"fileMatch": [
|
|
5436
|
+
"openapi.json",
|
|
5437
|
+
"openapi.yml",
|
|
5438
|
+
"openapi.yaml",
|
|
5439
|
+
"*.openapi.json",
|
|
5440
|
+
"*.openapi.yml",
|
|
5441
|
+
"*.openapi.yaml"
|
|
5442
|
+
],
|
|
5245
5443
|
"url": "https://www.schemastore.org/openapi-3.X.json"
|
|
5246
5444
|
},
|
|
5247
5445
|
{
|
|
@@ -5777,7 +5975,7 @@
|
|
|
5777
5975
|
},
|
|
5778
5976
|
{
|
|
5779
5977
|
"name": "PRML manifest",
|
|
5780
|
-
"description": "Pre-Registered ML Manifest
|
|
5978
|
+
"description": "Pre-Registered ML Manifest — open spec for committing ML evaluation claims to a SHA-256 hash before the run (CC BY 4.0). https://spec.falsify.dev/v0.1",
|
|
5781
5979
|
"fileMatch": [
|
|
5782
5980
|
"*.prml.yaml",
|
|
5783
5981
|
"*.prml.yml",
|
|
@@ -6022,13 +6220,13 @@
|
|
|
6022
6220
|
"fileMatch": ["**/.github/labeler.yml"],
|
|
6023
6221
|
"url": "https://www.schemastore.org/pull-request-labeler.json",
|
|
6024
6222
|
"versions": {
|
|
6025
|
-
"4": "https://www.schemastore.org/pull-request-labeler.json",
|
|
6223
|
+
"4": "https://www.schemastore.org/pull-request-labeler-4.json",
|
|
6026
6224
|
"5": "https://www.schemastore.org/pull-request-labeler-5.json"
|
|
6027
6225
|
}
|
|
6028
6226
|
},
|
|
6029
6227
|
{
|
|
6030
6228
|
"name": ".putout.json",
|
|
6031
|
-
"description": "
|
|
6229
|
+
"description": "🐊Putout configuration file",
|
|
6032
6230
|
"fileMatch": [".putout.json"],
|
|
6033
6231
|
"url": "https://www.schemastore.org/putout.json"
|
|
6034
6232
|
},
|
|
@@ -6239,6 +6437,12 @@
|
|
|
6239
6437
|
"fileMatch": ["replit.toml"],
|
|
6240
6438
|
"url": "https://www.schemastore.org/replit.json"
|
|
6241
6439
|
},
|
|
6440
|
+
{
|
|
6441
|
+
"name": "repo-settings-as-code",
|
|
6442
|
+
"description": "Declarative GitHub repository settings applied by the repo-settings-as-code action; accepts Probot Settings app files as-is. Documentation: https://github.com/Vivswan/repo-settings-as-code",
|
|
6443
|
+
"fileMatch": ["**/.github/settings.yml"],
|
|
6444
|
+
"url": "https://raw.githubusercontent.com/Vivswan/repo-settings-as-code/main/lib/settings.schema.json"
|
|
6445
|
+
},
|
|
6242
6446
|
{
|
|
6243
6447
|
"name": "reposets Configuration",
|
|
6244
6448
|
"description": "Configuration for the reposets CLI tool for syncing GitHub repository settings",
|
|
@@ -6277,7 +6481,7 @@
|
|
|
6277
6481
|
},
|
|
6278
6482
|
{
|
|
6279
6483
|
"name": "JSON Resume",
|
|
6280
|
-
"description": "JSON
|
|
6484
|
+
"description": "JSON résumé files",
|
|
6281
6485
|
"fileMatch": [
|
|
6282
6486
|
"**/resume.json",
|
|
6283
6487
|
"**/*.resume.json",
|
|
@@ -7163,7 +7367,7 @@
|
|
|
7163
7367
|
},
|
|
7164
7368
|
{
|
|
7165
7369
|
"name": "Tombi",
|
|
7166
|
-
"description": "Tombi (
|
|
7370
|
+
"description": "Tombi (鳶) is a toolkit for TOML; providing a formatter/linter and language server",
|
|
7167
7371
|
"fileMatch": ["tombi.toml", "**/tombi/config.toml"],
|
|
7168
7372
|
"url": "https://www.schemastore.org/tombi.json"
|
|
7169
7373
|
},
|
|
@@ -7235,9 +7439,15 @@
|
|
|
7235
7439
|
"fileMatch": ["trime.yaml", "trime.yml", "*.trime.yaml", "*.trime.yml"],
|
|
7236
7440
|
"url": "https://raw.githubusercontent.com/osfans/trime/develop/doc/trime-schema.json"
|
|
7237
7441
|
},
|
|
7442
|
+
{
|
|
7443
|
+
"name": "Trivy",
|
|
7444
|
+
"description": "Configuration file for Trivy security scanner (trivy.yaml)",
|
|
7445
|
+
"fileMatch": ["trivy.yaml", "trivy.yml", ".trivy.yaml", ".trivy.yml"],
|
|
7446
|
+
"url": "https://raw.githubusercontent.com/aquasecurity/trivy/main/schema/trivy-config.json"
|
|
7447
|
+
},
|
|
7238
7448
|
{
|
|
7239
7449
|
"name": "TrueScript for *.tscript files",
|
|
7240
|
-
"description": "The Ultimate Script Language for monday.com -
|
|
7450
|
+
"description": "The Ultimate Script Language for monday.com - © 2024 MakeITSimple",
|
|
7241
7451
|
"fileMatch": ["*.tscript", "*.tscript.yaml", "*.tscript.yml"],
|
|
7242
7452
|
"url": "https://www.schemastore.org/truescript.json",
|
|
7243
7453
|
"versions": {
|
|
@@ -7787,10 +7997,16 @@
|
|
|
7787
7997
|
},
|
|
7788
7998
|
{
|
|
7789
7999
|
"name": "huskyrc",
|
|
7790
|
-
"description": "Husky can prevent bad `git commit`, `git push` and more
|
|
8000
|
+
"description": "Husky can prevent bad `git commit`, `git push` and more 🐶 woof!",
|
|
7791
8001
|
"fileMatch": [".huskyrc", ".huskyrc.json"],
|
|
7792
8002
|
"url": "https://www.schemastore.org/huskyrc.json"
|
|
7793
8003
|
},
|
|
8004
|
+
{
|
|
8005
|
+
"name": "lychee",
|
|
8006
|
+
"description": "lychee link checker configuration file",
|
|
8007
|
+
"fileMatch": ["lychee.toml", ".lychee.toml"],
|
|
8008
|
+
"url": "https://www.schemastore.org/lychee.json"
|
|
8009
|
+
},
|
|
7794
8010
|
{
|
|
7795
8011
|
"name": "lint-staged (.lintstagedrc)",
|
|
7796
8012
|
"description": "lint-staged config",
|
|
@@ -7813,6 +8029,17 @@
|
|
|
7813
8029
|
],
|
|
7814
8030
|
"url": "https://www.schemastore.org/mdxlintrc.json"
|
|
7815
8031
|
},
|
|
8032
|
+
{
|
|
8033
|
+
"name": "misata.yaml",
|
|
8034
|
+
"description": "Misata synthetic-data declaration: tables, relationships, exact aggregate curves, and identities for the misata generator",
|
|
8035
|
+
"fileMatch": [
|
|
8036
|
+
"misata.yaml",
|
|
8037
|
+
"misata.yml",
|
|
8038
|
+
"*.misata.yaml",
|
|
8039
|
+
"*.misata.yml"
|
|
8040
|
+
],
|
|
8041
|
+
"url": "https://raw.githubusercontent.com/rasinmuhammed/misata/main/schema/misata.schema.json"
|
|
8042
|
+
},
|
|
7816
8043
|
{
|
|
7817
8044
|
"name": "mirrord config",
|
|
7818
8045
|
"description": "mirrord",
|
|
@@ -8007,8 +8234,8 @@
|
|
|
8007
8234
|
"url": "https://www.schemastore.org/container-structure-test.json"
|
|
8008
8235
|
},
|
|
8009
8236
|
{
|
|
8010
|
-
"name": "
|
|
8011
|
-
"description": "
|
|
8237
|
+
"name": "Žinoma",
|
|
8238
|
+
"description": "Žinoma incremental build configuration",
|
|
8012
8239
|
"fileMatch": ["zinoma.yml"],
|
|
8013
8240
|
"url": "https://github.com/fbecart/zinoma/releases/latest/download/zinoma-schema.json"
|
|
8014
8241
|
},
|
|
@@ -8157,7 +8384,7 @@
|
|
|
8157
8384
|
"name": "Gradle Enterprise",
|
|
8158
8385
|
"description": "Gradle Enterprise configuration",
|
|
8159
8386
|
"fileMatch": ["*gradle-enterprise.yml", "*gradle-enterprise.yaml"],
|
|
8160
|
-
"url": "https://docs.gradle.com/downloads/gradle-enterprise-config-schema/gradle-enterprise-config-schema-
|
|
8387
|
+
"url": "https://docs.gradle.com/downloads/gradle-enterprise-config-schema/gradle-enterprise-config-schema-16.json",
|
|
8161
8388
|
"versions": {
|
|
8162
8389
|
"1.0": "https://docs.gradle.com/develocity/helm-admin/schema/gradle-enterprise-config-schema-1.json",
|
|
8163
8390
|
"2.0": "https://docs.gradle.com/develocity/helm-admin/schema/gradle-enterprise-config-schema-2.json",
|
|
@@ -8173,7 +8400,8 @@
|
|
|
8173
8400
|
"12.0": "https://docs.gradle.com/develocity/helm-admin/schema/gradle-enterprise-config-schema-12.json",
|
|
8174
8401
|
"13.0": "https://docs.gradle.com/downloads/gradle-enterprise-config-schema/gradle-enterprise-config-schema-13.json",
|
|
8175
8402
|
"14.0": "https://docs.gradle.com/downloads/gradle-enterprise-config-schema/gradle-enterprise-config-schema-14.json",
|
|
8176
|
-
"15.0": "https://docs.gradle.com/downloads/gradle-enterprise-config-schema/gradle-enterprise-config-schema-15.json"
|
|
8403
|
+
"15.0": "https://docs.gradle.com/downloads/gradle-enterprise-config-schema/gradle-enterprise-config-schema-15.json",
|
|
8404
|
+
"16.0": "https://docs.gradle.com/downloads/gradle-enterprise-config-schema/gradle-enterprise-config-schema-16.json"
|
|
8177
8405
|
}
|
|
8178
8406
|
},
|
|
8179
8407
|
{
|
|
@@ -8279,7 +8507,7 @@
|
|
|
8279
8507
|
},
|
|
8280
8508
|
{
|
|
8281
8509
|
"name": "Render Blueprints",
|
|
8282
|
-
"description": "Blueprints are Render
|
|
8510
|
+
"description": "Blueprints are Render’s infrastructure-as-code model for defining, deploying, and managing multiple resources with a single YAML file",
|
|
8283
8511
|
"fileMatch": ["**/*render.yaml"],
|
|
8284
8512
|
"url": "https://render.com/schema/render.yaml.json"
|
|
8285
8513
|
},
|
|
@@ -10043,7 +10271,7 @@
|
|
|
10043
10271
|
},
|
|
10044
10272
|
{
|
|
10045
10273
|
"name": "Deployah Configuration",
|
|
10046
|
-
"description": "CLI tool that makes Kubernetes deployments effortless
|
|
10274
|
+
"description": "CLI tool that makes Kubernetes deployments effortless—no Helm or K8s expertise required",
|
|
10047
10275
|
"fileMatch": [
|
|
10048
10276
|
"deployah.yaml",
|
|
10049
10277
|
"deployah.yml",
|
|
@@ -10351,7 +10579,7 @@
|
|
|
10351
10579
|
},
|
|
10352
10580
|
{
|
|
10353
10581
|
"name": "OpenDecree",
|
|
10354
|
-
"description": "OpenDecree definition file (https://opendecree.dev)
|
|
10582
|
+
"description": "OpenDecree definition file (https://opendecree.dev) — describes typed configuration fields, constraints, and metadata that the OpenDecree configuration management service serves to applications",
|
|
10355
10583
|
"fileMatch": [
|
|
10356
10584
|
"decree.schema.yaml",
|
|
10357
10585
|
"decree.schema.yml",
|
|
@@ -10365,7 +10593,7 @@
|
|
|
10365
10593
|
},
|
|
10366
10594
|
{
|
|
10367
10595
|
"name": "OpenDecree Configuration",
|
|
10368
|
-
"description": "OpenDecree configuration values file (https://opendecree.dev)
|
|
10596
|
+
"description": "OpenDecree configuration values file (https://opendecree.dev) — concrete values for fields declared in a paired main decree yaml",
|
|
10369
10597
|
"fileMatch": [
|
|
10370
10598
|
"decree.config.yaml",
|
|
10371
10599
|
"decree.config.yml",
|
|
@@ -10379,7 +10607,7 @@
|
|
|
10379
10607
|
},
|
|
10380
10608
|
{
|
|
10381
10609
|
"name": "Envelope Team Definition",
|
|
10382
|
-
"description": "Open standard for AI agent team definitions
|
|
10610
|
+
"description": "Open standard for AI agent team definitions — declare agents, roles, tools, access policies, and pipelines in a single versioned document",
|
|
10383
10611
|
"fileMatch": ["*.envelope.json", "team.envelope.json"],
|
|
10384
10612
|
"url": "https://schema.openenvelope.org/team/v1.json"
|
|
10385
10613
|
},
|
|
@@ -10389,9 +10617,15 @@
|
|
|
10389
10617
|
"fileMatch": ["Acton.toml"],
|
|
10390
10618
|
"url": "https://raw.githubusercontent.com/ton-blockchain/acton/master/crates/acton-config/schemas/acton.schema.json"
|
|
10391
10619
|
},
|
|
10620
|
+
{
|
|
10621
|
+
"name": "act3",
|
|
10622
|
+
"description": "act3 configuration file",
|
|
10623
|
+
"fileMatch": ["**/act3/act3.yml"],
|
|
10624
|
+
"url": "https://www.schemastore.org/act3.json"
|
|
10625
|
+
},
|
|
10392
10626
|
{
|
|
10393
10627
|
"name": "memnex",
|
|
10394
|
-
"description": "Open specification for portable meeting outputs
|
|
10628
|
+
"description": "Open specification for portable meeting outputs — transcripts, summaries, action items, and decisions. https://memnex.org",
|
|
10395
10629
|
"fileMatch": ["*.memnex.json", "meeting-output.json"],
|
|
10396
10630
|
"url": "https://memnex.org/schema/v0.2/meeting-output.schema.json",
|
|
10397
10631
|
"versions": {
|
|
@@ -10401,7 +10635,7 @@
|
|
|
10401
10635
|
},
|
|
10402
10636
|
{
|
|
10403
10637
|
"name": "runspec",
|
|
10404
|
-
"description": "Interface specification for anything runnable
|
|
10638
|
+
"description": "Interface specification for anything runnable — scripts, apps, and MCP tools",
|
|
10405
10639
|
"fileMatch": ["runspec.toml"],
|
|
10406
10640
|
"url": "https://raw.githubusercontent.com/JasonFinestone/runspec/main/schema/runspec.schema.json"
|
|
10407
10641
|
},
|
|
@@ -10451,7 +10685,7 @@
|
|
|
10451
10685
|
"name": "Qlik Talend Cloud Pipeline - Transformation Rules",
|
|
10452
10686
|
"description": "Transformation rules definition for QTCP tasks",
|
|
10453
10687
|
"fileMatch": ["**/qtcp_tasks/*/transformationRules.yaml"],
|
|
10454
|
-
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.
|
|
10688
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.transformationrules.schema.json"
|
|
10455
10689
|
},
|
|
10456
10690
|
{
|
|
10457
10691
|
"name": "Qlik Talend Cloud Pipeline - Transformation Data Flow",
|
|
@@ -10497,11 +10731,41 @@
|
|
|
10497
10731
|
"1.27": "https://www.schemastore.org/podman-desktop-extension-1.27.json"
|
|
10498
10732
|
}
|
|
10499
10733
|
},
|
|
10734
|
+
{
|
|
10735
|
+
"name": "index.toml (packwiz)",
|
|
10736
|
+
"description": "The index file of the modpack, storing references to every file to be downloaded in the pack",
|
|
10737
|
+
"url": "https://www.schemastore.org/packwiz-index.json"
|
|
10738
|
+
},
|
|
10739
|
+
{
|
|
10740
|
+
"name": "mod.pw.toml (packwiz)",
|
|
10741
|
+
"description": "A metadata file which references an external file from a URL",
|
|
10742
|
+
"url": "https://www.schemastore.org/packwiz-mod.json"
|
|
10743
|
+
},
|
|
10744
|
+
{
|
|
10745
|
+
"name": "pack.toml (packwiz)",
|
|
10746
|
+
"description": "The main modpack file for a packwiz modpack",
|
|
10747
|
+
"url": "https://www.schemastore.org/packwiz-pack.json"
|
|
10748
|
+
},
|
|
10500
10749
|
{
|
|
10501
10750
|
"name": "Slang Server Configuration",
|
|
10502
10751
|
"description": "Configuration file for the slang-server SystemVerilog language server. Documentation: https://hudson-trading.github.io/slang-server",
|
|
10503
10752
|
"fileMatch": ["**/.slang/server.json", "**/.slang/local/server.json"],
|
|
10504
10753
|
"url": "https://raw.githubusercontent.com/hudson-trading/slang-server/refs/heads/main/clients/vscode/resources/config.schema.json"
|
|
10754
|
+
},
|
|
10755
|
+
{
|
|
10756
|
+
"name": "Heloisa Assistant Plugins Marketplace",
|
|
10757
|
+
"description": "Validation rules for the Heloísa assistant's plugin catalog",
|
|
10758
|
+
"fileMatch": ["heloisa-marketplace.json"],
|
|
10759
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/heloisa-marketplace.json"
|
|
10760
|
+
},
|
|
10761
|
+
{
|
|
10762
|
+
"name": "OKF Graph",
|
|
10763
|
+
"description": "Graph generated for an OKF bundle",
|
|
10764
|
+
"fileMatch": ["okf.json"],
|
|
10765
|
+
"url": "https://www.schemastore.org/okf-0.1.json",
|
|
10766
|
+
"versions": {
|
|
10767
|
+
"0.1": "https://www.schemastore.org/okf-0.1.json"
|
|
10768
|
+
}
|
|
10505
10769
|
}
|
|
10506
10770
|
]
|
|
10507
10771
|
}
|