goto-assistant 0.4.2 → 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.
- package/README.md +72 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,6 +57,78 @@ 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
|
+
|
|
60
132
|
## Data Privacy
|
|
61
133
|
|
|
62
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:
|