microsoft/hve-core

Public

mirrored from https://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fix/dependency-review-license-allowlist

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/docusaurus/src/data/collectionCards.ts

73lines · modecode

1export interface CollectionCardData {
2 name: string;
3 description: string;
4 artifacts: number;
5 maturity: 'Stable' | 'Preview' | 'Experimental';
6 href: string;
7}
8
9export const collectionCards: CollectionCardData[] = [
10 {
11 name: 'ado',
12 description: 'Azure DevOps work items, builds, and pull requests',
13 artifacts: 21,
14 maturity: 'Stable',
15 href: '/docs/getting-started/collections',
16 },
17 {
18 name: 'coding-standards',
19 description: 'Language-specific coding conventions',
20 artifacts: 14,
21 maturity: 'Stable',
22 href: '/docs/getting-started/collections',
23 },
24 {
25 name: 'data-science',
26 description: 'Data specs, notebooks, and dashboards',
27 artifacts: 7,
28 maturity: 'Stable',
29 href: '/docs/getting-started/collections',
30 },
31 {
32 name: 'design-thinking',
33 description: 'AI-enhanced Design Thinking coaching',
34 artifacts: 58,
35 maturity: 'Preview',
36 href: '/docs/getting-started/collections',
37 },
38 {
39 name: 'experimental',
40 description: 'Preview artifacts under active development',
41 artifacts: 6,
42 maturity: 'Experimental',
43 href: '/docs/getting-started/collections',
44 },
45 {
46 name: 'github',
47 description: 'GitHub issue backlogs and triage workflows',
48 artifacts: 12,
49 maturity: 'Stable',
50 href: '/docs/getting-started/collections',
51 },
52 {
53 name: 'hve-core',
54 description: 'RPI workflow, planning, and implementation',
55 artifacts: 40,
56 maturity: 'Stable',
57 href: '/docs/getting-started/collections',
58 },
59 {
60 name: 'project-planning',
61 description: 'ADRs, requirements, and architecture diagrams',
62 artifacts: 16,
63 maturity: 'Stable',
64 href: '/docs/getting-started/collections',
65 },
66 {
67 name: 'security',
68 description: 'Security review, planning, incident response, and risk assessment',
69 artifacts: 4,
70 maturity: 'Experimental',
71 href: '/docs/getting-started/collections',
72 },
73];
74