goto-assistant 0.4.1 → 0.4.3

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 +93 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -57,6 +57,99 @@ 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
+ ## See it in action
61
+
62
+ ### Setup
63
+
64
+ <table>
65
+ <tr>
66
+ <td width="50%">
67
+
68
+ **First run — provider & API key**
69
+
70
+ <video src="https://github.com/user-attachments/assets/89296859-bd91-4e8b-8839-4ec067625b06" width="100%"></video>
71
+
72
+ Run `npx goto-assistant`, pick your AI provider, paste your API key — done.
73
+
74
+ </td>
75
+ <td width="50%">
76
+
77
+ **Adding an MCP server**
78
+
79
+ <video src="https://github.com/user-attachments/assets/393ed73f-1a0c-4dfe-bac8-2570ea3ac498" width="100%"></video>
80
+
81
+ Add MCP servers through the setup wizard. The assistant verifies each server before save (trimmed for brevity — verification may take up to minutes for security purposes).
82
+
83
+ </td>
84
+ </tr>
85
+ </table>
86
+
87
+ ### Tasks
88
+
89
+ <table>
90
+ <tr>
91
+ <td width="50%">
92
+
93
+ **Create a task**
94
+
95
+ <video src="https://github.com/user-attachments/assets/249eab2c-250d-4f96-98b3-2bb78640efa9" width="100%"></video>
96
+
97
+ Ask the assistant to create an on-demand task.
98
+
99
+ </td>
100
+ <td width="50%">
101
+
102
+ **Update a task**
103
+
104
+ <video src="https://github.com/user-attachments/assets/960345c7-b314-4c88-b0e6-cb68e53a1e7b" width="100%"></video>
105
+
106
+ Modify task prompts, commands, or settings through chat.
107
+
108
+ </td>
109
+ </tr>
110
+ <tr>
111
+ <td width="50%">
112
+
113
+ **Run a task & compare results**
114
+
115
+ <video src="https://github.com/user-attachments/assets/b5202cbb-3e4c-4284-9ec9-46941cbf7c19" width="100%"></video>
116
+
117
+ Run tasks on demand and compare results across runs.
118
+
119
+ </td>
120
+ <td width="50%">
121
+
122
+ **Schedule a task**
123
+
124
+ <video src="https://github.com/user-attachments/assets/de8b34d7-7141-4552-b986-565f871b9859" width="100%"></video>
125
+
126
+ Schedule tasks to run periodically using natural language.
127
+
128
+ </td>
129
+ </tr>
130
+ </table>
131
+
132
+ ## Data Privacy
133
+
134
+ 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:
135
+
136
+ **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)):
137
+
138
+ > "Anthropic may not train models on Customer Content from Services."
139
+
140
+ > "By default, we will not use your inputs or outputs from our commercial products to train our models."
141
+
142
+ **OpenAI** ([Platform Data Controls](https://platform.openai.com/docs/guides/your-data); [Enterprise Privacy](https://openai.com/enterprise-privacy/)):
143
+
144
+ > "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)."
145
+
146
+ > "We do not train our models on your data by default."
147
+
148
+ Your conversations and data stay between you and the provider's API. All local data is stored on your machine:
149
+
150
+ - **goto-assistant**: conversations, config, and uploads in `~/.goto-assistant/`
151
+ - **mcp-cron**: tasks and results in `~/.mcp-cron/`
152
+
60
153
  ## Architecture
61
154
 
62
155
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goto-assistant",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "Lightweight, self-hosted personal AI assistant",
5
5
  "license": "MIT",
6
6
  "packageManager": "pnpm@10.29.3",