microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/docs-new-user

Branches

Tags

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

Clone

HTTPS

Download ZIP

docs/docusaurus/src/data/hubCards.tsx

123lines · modecode

1import React from 'react';
2import {
3 GettingStartedIcon,
4 AgentsPromptsIcon,
5 InstructionsSkillsIcon,
6 WorkflowsIcon,
7 DesignThinkingIcon,
8 TemplatesExamplesIcon,
9 VsCodeExtensionIcon
10} from '../components/Icons';
11
12export interface IconCardData {
13 icon: React.ReactNode;
14 supertitle: string;
15 title: string;
16 href: string;
17 description: string;
18}
19
20export interface BoxCardData {
21 title: string;
22 description: string;
23 links: { label: string; href: string }[];
24 icon?: string;
25}
26
27export const iconCards: IconCardData[] = [
28 {
29 icon: <GettingStartedIcon />,
30 supertitle: 'Getting Started',
31 title: 'Set up HVE Core',
32 href: '/docs/getting-started/',
33 description: 'Install, configure, and run your first AI-assisted workflow',
34 },
35
36 {
37 icon:<VsCodeExtensionIcon/>,
38 supertitle : 'Install',
39 title :'VS Code Extension',
40 href : 'https://marketplace.visualstudio.com/items?itemName=ise-hve-essentials.hve-core',
41 description: 'Install the HVE Core extension from the VS Code Marketplace',
42
43 },
44
45 {
46 icon: <DesignThinkingIcon />,
47 supertitle: 'HVE Guide',
48 title: 'Project lifecycle',
49 href: '/docs/hve-guide/',
50 description: 'Explore the HVE project lifecycle stages and role-specific guides',
51 },
52 {
53 icon: <WorkflowsIcon />,
54 supertitle: 'RPI Workflow',
55 title: 'Research-Plan-Implement',
56 href: '/docs/rpi/',
57 description: 'The Research-Plan-Implement loop for structured AI-assisted development',
58 },
59 {
60 icon: <AgentsPromptsIcon />,
61 supertitle: 'Agents',
62 title: 'Custom AI agents',
63 href: '/docs/agents/',
64 description: 'Build and configure specialized agents for your development tasks',
65 },
66 {
67 icon: <InstructionsSkillsIcon />,
68 supertitle: 'Architecture',
69 title: 'System design',
70 href: '/docs/architecture/',
71 description: 'Architecture decisions, design patterns, and system design references',
72 },
73 {
74 icon: <TemplatesExamplesIcon />,
75 supertitle: 'Templates',
76 title: 'Reusable patterns',
77 href: '/docs/templates/',
78 description: 'Ready-to-use templates for ADRs, BRDs, agents, and instructions',
79 },
80];
81
82export const boxCards: BoxCardData[] = [
83 {
84 icon: '/img/icons/i_quickstart.svg',
85 title: 'Quick Start',
86 description: 'Get up and running in minutes',
87 links: [
88 { label: 'Installation guide', href: '/docs/getting-started/' },
89 { label: 'Your first workflow', href: '/docs/rpi/' },
90 { label: 'Browse templates', href: '/docs/templates/' },
91 ],
92 },
93 {
94 icon: '/img/icons/i_build-ai.svg',
95 title: 'Build with AI',
96 description: 'Leverage AI across the development lifecycle',
97 links: [
98 { label: 'Configure agents', href: '/docs/agents/' },
99 { label: 'Write instructions', href: '/docs/customization/' },
100 { label: 'Architecture', href: '/docs/architecture/' },
101 ],
102 },
103 {
104 icon: '/img/icons/i_plan-architect.svg',
105 title: 'Plan & Architect',
106 description: 'Structure work before coding',
107 links: [
108 { label: 'Explore and specify', href: '/docs/hve-guide/' },
109 { label: 'RPI workflow', href: '/docs/rpi/' },
110 { label: 'Architecture patterns', href: '/docs/architecture/' },
111 ],
112 },
113 {
114 icon: '/img/icons/i_customize.svg',
115 title: 'Customize & Extend',
116 description: 'Tailor HVE Core to your team',
117 links: [
118 { label: 'Custom agents', href: '/docs/agents/' },
119 { label: 'Skill packages', href: '/docs/customization/' },
120 { label: 'Template library', href: '/docs/templates/' },
121 ],
122 },
123];
124