|
33 | 33 | ], |
34 | 34 | "main": "./dist/extension.js", |
35 | 35 | "contributes": { |
| 36 | + "walkthroughs": [ |
| 37 | + { |
| 38 | + "id": "codacy.setup", |
| 39 | + "title": "Get Started with Codacy", |
| 40 | + "description": "Set up quality checks, coverage visibility and AI guardrails in just a few steps.", |
| 41 | + "steps": [ |
| 42 | + { |
| 43 | + "id": "codacy.walkthrough.cloudSync", |
| 44 | + "title": "Connect to Codacy", |
| 45 | + "description": "Create or sign-in to your account to customize analysis, PR overviews, see coverage in the IDE, and much more.\n\n[Connect to Codacy](command:codacy.codacyAuth)", |
| 46 | + "media": { |
| 47 | + "image": { |
| 48 | + "light": "resources/walkthrough/light/cloud-sync.svg", |
| 49 | + "dark": "resources/walkthrough/dark/cloud-sync.svg", |
| 50 | + "hc": "resources/walkthrough/dark/cloud-sync.svg", |
| 51 | + "hcLight": "resources/walkthrough/light/cloud-sync.svg" |
| 52 | + }, |
| 53 | + "altText": "Cloud sync illustration showing connection to Codacy" |
| 54 | + }, |
| 55 | + "completionEvents": [ |
| 56 | + "onContext:Codacy:CodacyCloudStateContext == Loaded" |
| 57 | + ] |
| 58 | + }, |
| 59 | + { |
| 60 | + "id": "codacy.walkthrough.aiGuardrails", |
| 61 | + "title": "Set Up AI Guardrails", |
| 62 | + "description": "Control your AI-generated code with Codacy Guardrails.\n\nInstall the MCP Server to get access to Codacy information from your AI agent.\n\n[Install Codacy MCP](command:codacy.configureMCP)", |
| 63 | + "media": { |
| 64 | + "image": { |
| 65 | + "light": "resources/walkthrough/light/ai-guardrails.svg", |
| 66 | + "dark": "resources/walkthrough/dark/ai-guardrails.svg", |
| 67 | + "hc": "resources/walkthrough/dark/ai-guardrails.svg", |
| 68 | + "hcLight": "resources/walkthrough/light/ai-guardrails.svg" |
| 69 | + }, |
| 70 | + "altText": "Shield icon representing AI guardrails protection" |
| 71 | + }, |
| 72 | + "completionEvents": [ |
| 73 | + "onContext:codacy:mcpConfigured" |
| 74 | + ] |
| 75 | + }, |
| 76 | + { |
| 77 | + "id": "codacy.walkthrough.localAnalysis", |
| 78 | + "title": "Install Local Analysis", |
| 79 | + "description": "Get instant feedback as you type by analyzing your code locally.\n\n[Install Codacy CLI](command:codacy.installCLI)\n\nInstalls all required dependencies: Node, Python, Java", |
| 80 | + "media": { |
| 81 | + "image": { |
| 82 | + "light": "resources/walkthrough/light/local-analysis.svg", |
| 83 | + "dark": "resources/walkthrough/dark/local-analysis.svg", |
| 84 | + "hc": "resources/walkthrough/dark/local-analysis.svg", |
| 85 | + "hcLight": "resources/walkthrough/light/local-analysis.svg" |
| 86 | + }, |
| 87 | + "altText": "Terminal showing Codacy CLI analyzing code" |
| 88 | + }, |
| 89 | + "completionEvents": [ |
| 90 | + "onContext:codacy:cliInstalled" |
| 91 | + ] |
| 92 | + }, |
| 93 | + { |
| 94 | + "id": "codacy.walkthrough.customizeAnalysis", |
| 95 | + "title": "Customize Your Analysis", |
| 96 | + "description": "With your organization and repository added to Codacy, configure the patterns and standards you want to follow in the cloud and the IDE.\n\n[Configure patterns](command:codacy.configurePatterns)\n\nPlus you can adjust gates / goals for duplication, complexity and even coverage.", |
| 97 | + "media": { |
| 98 | + "image": { |
| 99 | + "light": "resources/walkthrough/light/customize-analysis.svg", |
| 100 | + "dark": "resources/walkthrough/dark/customize-analysis.svg", |
| 101 | + "hc": "resources/walkthrough/dark/customize-analysis.svg", |
| 102 | + "hcLight": "resources/walkthrough/light/customize-analysis.svg" |
| 103 | + }, |
| 104 | + "altText": "Settings icon representing customization" |
| 105 | + }, |
| 106 | + "completionEvents": [ |
| 107 | + "onCommand:codacy.configurePatterns" |
| 108 | + ] |
| 109 | + } |
| 110 | + ] |
| 111 | + } |
| 112 | + ], |
36 | 113 | "viewsContainers": { |
37 | 114 | "activitybar": [ |
38 | 115 | { |
|
332 | 409 | "title": "Install Codacy CLI", |
333 | 410 | "category": "Codacy commands", |
334 | 411 | "when": "!codacy:cliInstalled && codacy:canInstallCLI" |
| 412 | + }, |
| 413 | + { |
| 414 | + "command": "codacy.configurePatterns", |
| 415 | + "title": "Configure Patterns", |
| 416 | + "category": "Codacy commands", |
| 417 | + "when": "Codacy:CodacyCloudStateContext == Loaded" |
335 | 418 | } |
336 | 419 | ], |
337 | 420 | "menus": { |
|
0 commit comments