goto-assistant 0.4.1 → 0.4.2

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 +21 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -57,6 +57,27 @@ One command, no Docker, no framework — just MCP.
57
57
 
58
58
  That one `npx` command gives you an AI assistant that can remember across conversations, manage your files, and run tasks on a schedule or on-demand — all through the standard [MCP protocol](https://modelcontextprotocol.io). Add any MCP server to extend it further.
59
59
 
60
+ ## Data Privacy
61
+
62
+ goto-assistant connects directly to AI providers using your own API keys. Both Anthropic and OpenAI have clear policies that API data is **not used for model training** by default:
63
+
64
+ **Anthropic** ([Commercial Terms](https://www.anthropic.com/legal/commercial-terms); [Privacy Center](https://privacy.claude.com/en/articles/7996868-is-my-data-used-for-model-training)):
65
+
66
+ > "Anthropic may not train models on Customer Content from Services."
67
+
68
+ > "By default, we will not use your inputs or outputs from our commercial products to train our models."
69
+
70
+ **OpenAI** ([Platform Data Controls](https://platform.openai.com/docs/guides/your-data); [Enterprise Privacy](https://openai.com/enterprise-privacy/)):
71
+
72
+ > "Data sent to the OpenAI API is not used to train or improve OpenAI models (unless you explicitly opt in to share data with us)."
73
+
74
+ > "We do not train our models on your data by default."
75
+
76
+ Your conversations and data stay between you and the provider's API. All local data is stored on your machine:
77
+
78
+ - **goto-assistant**: conversations, config, and uploads in `~/.goto-assistant/`
79
+ - **mcp-cron**: tasks and results in `~/.mcp-cron/`
80
+
60
81
  ## Architecture
61
82
 
62
83
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goto-assistant",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Lightweight, self-hosted personal AI assistant",
5
5
  "license": "MIT",
6
6
  "packageManager": "pnpm@10.29.3",