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.
This commit is contained in:
john kevin asprec
2026-08-13 18:06:45 +08:00
parent fc19ead0a7
commit 8bc529ef2d
84 changed files with 10025 additions and 662 deletions

11
.cursor/hooks.json Normal file
View File

@@ -0,0 +1,11 @@
{
"version": 1,
"hooks": {
"sessionStart": [
{ "command": "node .cursor/hooks/session-context.mjs", "timeout": 10 }
],
"beforeShellExecution": [
{ "command": "node .cursor/hooks/guard-destructive.mjs", "timeout": 10 }
]
}
}