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.
Files changed (43) hide show
  1. package/README.md +59 -0
  2. package/ai-assistant-0.0.1.vsix +0 -0
  3. package/bin/agi-cli.js +815 -0
  4. package/bin/agi-cli.js.bak +352 -0
  5. package/bin/agi-cli.js.new +328 -0
  6. package/bin/config.json +3 -0
  7. package/bin/ui.js +42 -0
  8. package/dist/agentUtils.js +539 -0
  9. package/dist/agentUtils.js.map +1 -0
  10. package/dist/aiAssistantViewProvider.js +2098 -0
  11. package/dist/aiAssistantViewProvider.js.map +1 -0
  12. package/dist/extension.js +117 -0
  13. package/dist/extension.js.map +1 -0
  14. package/dist/fetch-polyfill.js +9 -0
  15. package/dist/fetch-polyfill.js.map +1 -0
  16. package/foldersnake/snake_game.py +125 -0
  17. package/media/ai-icon.png +0 -0
  18. package/media/ai-icon.svg +5 -0
  19. package/media/infinity-icon.svg +4 -0
  20. package/out/agentUtils.d.ts +28 -0
  21. package/out/agentUtils.d.ts.map +1 -0
  22. package/out/agentUtils.js +539 -0
  23. package/out/agentUtils.js.map +1 -0
  24. package/out/aiAssistantViewProvider.d.ts +58 -0
  25. package/out/aiAssistantViewProvider.d.ts.map +1 -0
  26. package/out/aiAssistantViewProvider.js +2098 -0
  27. package/out/aiAssistantViewProvider.js.map +1 -0
  28. package/out/extension.d.ts +4 -0
  29. package/out/extension.d.ts.map +1 -0
  30. package/out/extension.js +117 -0
  31. package/out/extension.js.map +1 -0
  32. package/out/fetch-polyfill.d.ts +11 -0
  33. package/out/fetch-polyfill.d.ts.map +1 -0
  34. package/out/fetch-polyfill.js +9 -0
  35. package/out/fetch-polyfill.js.map +1 -0
  36. package/package.json +31 -0
  37. package/src/agentUtils.ts +583 -0
  38. package/src/aiAssistantViewProvider.ts +2264 -0
  39. package/src/cliAgentUtils.js +73 -0
  40. package/src/extension.ts +112 -0
  41. package/src/fetch-polyfill.ts +11 -0
  42. package/tsconfig.json +24 -0
  43. 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