sam-coder-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +59 -0
- package/ai-assistant-0.0.1.vsix +0 -0
- package/bin/agi-cli.js +815 -0
- package/bin/agi-cli.js.bak +352 -0
- package/bin/agi-cli.js.new +328 -0
- package/bin/config.json +3 -0
- package/bin/ui.js +42 -0
- package/dist/agentUtils.js +539 -0
- package/dist/agentUtils.js.map +1 -0
- package/dist/aiAssistantViewProvider.js +2098 -0
- package/dist/aiAssistantViewProvider.js.map +1 -0
- package/dist/extension.js +117 -0
- package/dist/extension.js.map +1 -0
- package/dist/fetch-polyfill.js +9 -0
- package/dist/fetch-polyfill.js.map +1 -0
- package/foldersnake/snake_game.py +125 -0
- package/media/ai-icon.png +0 -0
- package/media/ai-icon.svg +5 -0
- package/media/infinity-icon.svg +4 -0
- package/out/agentUtils.d.ts +28 -0
- package/out/agentUtils.d.ts.map +1 -0
- package/out/agentUtils.js +539 -0
- package/out/agentUtils.js.map +1 -0
- package/out/aiAssistantViewProvider.d.ts +58 -0
- package/out/aiAssistantViewProvider.d.ts.map +1 -0
- package/out/aiAssistantViewProvider.js +2098 -0
- package/out/aiAssistantViewProvider.js.map +1 -0
- package/out/extension.d.ts +4 -0
- package/out/extension.d.ts.map +1 -0
- package/out/extension.js +117 -0
- package/out/extension.js.map +1 -0
- package/out/fetch-polyfill.d.ts +11 -0
- package/out/fetch-polyfill.d.ts.map +1 -0
- package/out/fetch-polyfill.js +9 -0
- package/out/fetch-polyfill.js.map +1 -0
- package/package.json +31 -0
- package/src/agentUtils.ts +583 -0
- package/src/aiAssistantViewProvider.ts +2264 -0
- package/src/cliAgentUtils.js +73 -0
- package/src/extension.ts +112 -0
- package/src/fetch-polyfill.ts +11 -0
- package/tsconfig.json +24 -0
- package/webpack.config.js +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# AI Assistant
|
|
2
|
+
|
|
3
|
+
A beautiful and minimalistic AI assistant for VS Code.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Beautiful and modern UI with animations and transitions
|
|
8
|
+
- Minimalistic design with a focus on usability
|
|
9
|
+
- Support for code blocks and inline code
|
|
10
|
+
- Language toggle between English and Portuguese
|
|
11
|
+
- Clear conversation button
|
|
12
|
+
- Status bar integration
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
1. Click on the AI Assistant icon in the activity bar
|
|
17
|
+
2. Type your question in the input field
|
|
18
|
+
3. Press Enter or click the Send button
|
|
19
|
+
4. The AI Assistant will respond with helpful information
|
|
20
|
+
|
|
21
|
+
## Commands
|
|
22
|
+
|
|
23
|
+
- `aiAssistant.showView`: Show the AI Assistant view
|
|
24
|
+
- `aiAssistant.sendQuery`: Send a query to the AI Assistant
|
|
25
|
+
- `aiAssistant.clear`: Clear the conversation
|
|
26
|
+
- `aiAssistant.toggleLanguage`: Toggle between English and Portuguese
|
|
27
|
+
- `aiAssistant.testFileWrite`: Test file writing capabilities
|
|
28
|
+
|
|
29
|
+
## Keyboard Shortcuts
|
|
30
|
+
|
|
31
|
+
- `Ctrl+L` (Windows/Linux) or `Cmd+L` (Mac): Show the AI Assistant view
|
|
32
|
+
|
|
33
|
+
## Requirements
|
|
34
|
+
|
|
35
|
+
- VS Code 1.60.0 or higher
|
|
36
|
+
|
|
37
|
+
## Extension Settings
|
|
38
|
+
|
|
39
|
+
This extension contributes the following settings:
|
|
40
|
+
|
|
41
|
+
* `aiAssistant.language`: The language to use for the AI Assistant (en or pt-BR)
|
|
42
|
+
|
|
43
|
+
## Known Issues
|
|
44
|
+
|
|
45
|
+
- None at the moment
|
|
46
|
+
|
|
47
|
+
## Release Notes
|
|
48
|
+
|
|
49
|
+
### 0.0.1
|
|
50
|
+
|
|
51
|
+
Initial release of AI Assistant
|
|
52
|
+
|
|
53
|
+
## Contributing
|
|
54
|
+
|
|
55
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
56
|
+
|
|
57
|
+
## License
|
|
58
|
+
|
|
59
|
+
This extension is licensed under the MIT License.
|
|
Binary file
|