feat: add LexAI status bar and suggestion panel
Some checks failed
CI — Test & Build / Test & Build (push) Has been cancelled
- Implemented a status bar item for LexAI with dynamic status updates (ready, processing, notReady). - Created a suggestion panel for displaying and interacting with AI-generated suggestions. - Added functionality for accepting, regenerating, and discarding suggestions within the suggestion zone. - Introduced configuration options for writing style, prompt patterns, personas, and formats. - Integrated progress indicators for long-running tasks and improved user feedback. - Established TypeScript configuration for the vscode package.
BIN
packages/vscode/media/icon-128.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
packages/vscode/media/icon-16.png
Normal file
|
After Width: | Height: | Size: 544 B |
BIN
packages/vscode/media/icon-32.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
packages/vscode/media/icon-48.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
27
packages/vscode/media/icon.svg
Normal file
@@ -0,0 +1,27 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128" height="128">
|
||||
<!-- Background circle with gradient -->
|
||||
<defs>
|
||||
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#6366f1;stop-opacity:1" />
|
||||
<stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient id="boltGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#fde68a;stop-opacity:1" />
|
||||
<stop offset="100%" style="stop-color:#fbbf24;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<!-- Background rounded square -->
|
||||
<rect x="4" y="4" width="120" height="120" rx="26" ry="26" fill="url(#bgGrad)" />
|
||||
|
||||
<!-- Subtle inner glow -->
|
||||
<rect x="4" y="4" width="120" height="120" rx="26" ry="26"
|
||||
fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="2"/>
|
||||
|
||||
<!-- Lightning bolt shape -->
|
||||
<polygon points="72,14 38,68 62,68 56,114 90,60 66,60"
|
||||
fill="url(#boltGrad)"
|
||||
stroke="rgba(255,255,255,0.3)"
|
||||
stroke-width="1.5"
|
||||
stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
4
packages/vscode/media/lexai-activity.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none">
|
||||
<!-- Monochrome bolt for VS Code Activity Bar (host recolors fill) -->
|
||||
<path fill="#ffffff" d="M14.2 2.2L7.1 13.2h4.7l-1.2 8.6 7.1-11h-4.7l1.2-8.6z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 258 B |
3
packages/vscode/media/lexai-gutter.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
|
||||
<path d="M8 1.5L9.6 5.4L13.8 5.8L10.6 8.6L11.5 12.8L8 10.6L4.5 12.8L5.4 8.6L2.2 5.8L6.4 5.4L8 1.5Z" stroke="#89b4fa" stroke-width="1.2" fill="#89b4fa" fill-opacity="0.25"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 278 B |