monacopilot 0.17.3 → 0.17.4

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 (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -53,6 +53,7 @@
53
53
  - [Custom Headers for LLM Requests](#custom-headers-for-llm-requests)
54
54
  - [Custom Prompt](#custom-prompt)
55
55
  - [Cross-Language API Handler Implementation](#cross-language-api-handler-implementation)
56
+ - [Security](#security)
56
57
  - [Contributing](#contributing)
57
58
 
58
59
  ### Examples
@@ -721,6 +722,12 @@ registerCompletion(monaco, editor, {
721
722
  });
722
723
  ```
723
724
 
725
+ ## Security
726
+
727
+ Monacopilot takes security seriously. Your code remains completely private since Monacopilot never stores or transmits code from the editor.
728
+
729
+ Additionally, your AI provider API keys are protected by being stored and used exclusively on your server-side API handler, never being exposed to the client side.
730
+
724
731
  ## Contributing
725
732
 
726
733
  For guidelines on contributing, please read the [contributing guide](https://github.com/arshad-yaseen/monacopilot/blob/main/CONTRIBUTING.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monacopilot",
3
- "version": "0.17.3",
3
+ "version": "0.17.4",
4
4
  "description": "AI auto-completion plugin for Monaco Editor",
5
5
  "main": "./build/index.js",
6
6
  "module": "./build/index.mjs",