microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
docs/docusaurus/src/data/collectionCards.ts
102lines · modecode
| 1 | export interface CollectionCardData { |
| 2 | name: string; |
| 3 | description: string; |
| 4 | artifacts: number; |
| 5 | maturity: 'Stable' | 'Preview' | 'Experimental'; |
| 6 | href: string; |
| 7 | } |
| 8 | |
| 9 | export 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: 21, |
| 21 | maturity: 'Stable', |
| 22 | href: '/docs/getting-started/collections', |
| 23 | }, |
| 24 | { |
| 25 | name: 'data-science', |
| 26 | description: 'Data specs, notebooks, and dashboards', |
| 27 | artifacts: 19, |
| 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: 8, |
| 42 | maturity: 'Experimental', |
| 43 | href: '/docs/getting-started/collections', |
| 44 | }, |
| 45 | { |
| 46 | name: 'github', |
| 47 | description: 'GitHub issue backlogs and triage workflows', |
| 48 | artifacts: 13, |
| 49 | maturity: 'Stable', |
| 50 | href: '/docs/getting-started/collections', |
| 51 | }, |
| 52 | { |
| 53 | name: 'gitlab', |
| 54 | description: 'GitLab merge requests and pipeline workflows', |
| 55 | artifacts: 2, |
| 56 | maturity: 'Experimental', |
| 57 | href: '/docs/getting-started/collections', |
| 58 | }, |
| 59 | { |
| 60 | name: 'hve-core', |
| 61 | description: 'RPI workflow, planning, and implementation', |
| 62 | artifacts: 40, |
| 63 | maturity: 'Stable', |
| 64 | href: '/docs/getting-started/collections', |
| 65 | }, |
| 66 | { |
| 67 | name: 'jira', |
| 68 | description: 'Jira backlogs, triage, and PRD-driven planning', |
| 69 | artifacts: 13, |
| 70 | maturity: 'Experimental', |
| 71 | href: '/docs/getting-started/collections', |
| 72 | }, |
| 73 | { |
| 74 | name: 'project-planning', |
| 75 | description: 'ADRs, requirements, and architecture diagrams', |
| 76 | artifacts: 49, |
| 77 | maturity: 'Stable', |
| 78 | href: '/docs/getting-started/collections', |
| 79 | }, |
| 80 | { |
| 81 | name: 'rai-planning', |
| 82 | description: 'Responsible AI assessment, impact analysis, and risk review', |
| 83 | artifacts: 13, |
| 84 | maturity: 'Experimental', |
| 85 | href: '/docs/getting-started/collections', |
| 86 | }, |
| 87 | { |
| 88 | name: 'security', |
| 89 | description: 'Security review, planning, incident response, and risk assessment', |
| 90 | artifacts: 47, |
| 91 | maturity: 'Experimental', |
| 92 | href: '/docs/getting-started/collections', |
| 93 | }, |
| 94 | ]; |
| 95 | |
| 96 | export interface MetaCollections { |
| 97 | 'hve-core-all': number; |
| 98 | } |
| 99 | |
| 100 | export const metaCollections: MetaCollections = { |
| 101 | 'hve-core-all': 228, |
| 102 | }; |
| 103 | |