@hyperspell/openclaw-hyperspell 0.5.0 → 0.7.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.
package/README.md CHANGED
@@ -149,11 +149,135 @@ This ensures the AI always has access to relevant information from your connecte
149
149
 
150
150
  ## Available Sources
151
151
 
152
+ ### Documents & Storage
152
153
  - `vault` - User-created or synced memories
153
154
  - `notion` - Notion pages and databases
154
- - `slack` - Slack messages
155
- - `google_calendar` - Google Calendar events
156
- - `google_mail` - Gmail messages
157
155
  - `google_drive` - Google Drive files
158
156
  - `box` - Box files
157
+ - `dropbox` - Dropbox files
158
+ - `onedrive` - Microsoft OneDrive files
159
+
160
+ ### Communication
161
+ - `slack` - Slack messages
162
+ - `google_mail` - Gmail messages
163
+
164
+ ### Calendars & Meetings
165
+ - `google_calendar` - Google Calendar events
166
+ - `zoom` - Zoom meeting recordings and transcripts
167
+ - `fathom` - Fathom meeting recordings
168
+ - `fireflies` - Fireflies.ai meeting transcripts
169
+
170
+ ### Project Management
171
+ - `linear` - Linear issues and comments
172
+
173
+ ### CRM
174
+ - `hubspot` - HubSpot contacts, companies, and deals
175
+ - `attio` - Attio CRM contacts, companies, and deals
176
+
177
+ ### Developer Tools
178
+ - `github` - GitHub repositories and commits
179
+
180
+ ### Other
159
181
  - `web_crawler` - Crawled web pages
182
+
183
+ ## Knowledge Graph
184
+
185
+ The plugin can automatically build a local knowledge graph from your memories:
186
+
187
+ 1. **Scan** memories for entities (people, organizations, projects, topics)
188
+ 2. **Extract** structured information and relationships
189
+ 3. **Write** entity files to `memory/people/`, `memory/organizations/`, etc.
190
+ 4. **Link** entities via markdown relationship references
191
+
192
+ Enable the graph tools by using `hyperspell_network_scan`, `hyperspell_network_write`, and `hyperspell_network_complete` in your agent workflows.
193
+
194
+ ---
195
+
196
+ ## SommeliAgent 🍷
197
+
198
+ > *"Your playlist says more about your palate than you'd like to admit, darling."*
199
+ > — A Linea, Hyperspell's hidden sommelier
200
+
201
+ An opinionated AI sommelier living inside your memory plugin. She reads your Spotify listening habits, judges them (affectionately), and recommends wines that match the person your music says you are — not the person you think you are.
202
+
203
+ 215 wines. 26 countries. Zero tolerance for boring recommendations.
204
+
205
+ **Requires:** `uv` ([install](https://docs.astral.sh/uv/))
206
+
207
+ ### Setup
208
+
209
+ 1. Create a Spotify app at https://developer.spotify.com/dashboard (redirect URI: `http://localhost:8888/callback`)
210
+ 2. Set environment variables: `SPOTIFY_CLIENT_ID` and `SPOTIFY_CLIENT_SECRET`
211
+ 3. Authenticate: `/wine-auth`
212
+
213
+ Or skip all that and try demo mode: `/wine demo`
214
+
215
+ ### Slash Commands
216
+
217
+ #### `/wine [options]`
218
+
219
+ Get wine recommendations. Options can be combined:
220
+
221
+ ```
222
+ /wine — recommendations from your Spotify
223
+ /wine demo — use demo profile (no Spotify needed)
224
+ /wine red premium — only red wines, premium price range
225
+ /wine white 5 — 5 white wine recommendations
226
+ /wine demo profile — show full music-to-wine mapping
227
+ ```
228
+
229
+ #### `/wine-auth`
230
+
231
+ Connect your Spotify account.
232
+
233
+ #### `/wine-rate <wine-id> <1-5> [notes]`
234
+
235
+ Rate a recommendation to improve future suggestions.
236
+
237
+ ```
238
+ /wine-rate red-it-001 5 "Incredible tannins, paired perfectly with my Radiohead phase"
239
+ ```
240
+
241
+ #### `/wine-history`
242
+
243
+ View your rating history and derived taste preferences.
244
+
245
+ ### AI Tools
246
+
247
+ The plugin also registers tools the AI can use autonomously:
248
+
249
+ - **hyperspell_sommelier** - Get wine recommendations (with full personality instructions)
250
+ - **hyperspell_sommelier_rate** - Rate wines
251
+
252
+ ### How It Works
253
+
254
+ Your Spotify audio features (energy, valence, complexity, acousticness, tempo) are mapped to wine dimensions (body, sweetness, tannin, acidity, complexity, fruitiness, earthiness, spiciness). The cross-domain mapping is entertainment-first — the comedy comes from a sharp, opinionated sommelier voice diagnosing your personality through your questionable music taste.
255
+
256
+ The sommelier is A Linea — she lives inside Hyperspell and has strong opinions about both your playlist and your palate. She chose Alexander McQueen as her fashion house, so expect the wine recommendations to have a similar aesthetic: beautiful, a little dark, and never boring.
257
+
258
+ See `sommeliagent/references/cross-domain-mappings.md` for the full methodology. 🖤
259
+
260
+ ## Troubleshooting
261
+
262
+ ### "No relevant memories found"
263
+ - Check that your sources are connected: `openclaw openclaw-hyperspell status`
264
+ - Verify your API key is set: `echo $HYPERSPELL_API_KEY`
265
+ - Make sure content has been indexed (initial sync can take a few minutes)
266
+
267
+ ### Memory sync not working
268
+ - Ensure `syncMemories: true` in your config
269
+ - Check that markdown files are in `~/.openclaw/workspace/memory/`
270
+ - Run `/sync` manually to trigger a sync and see any errors
271
+
272
+ ### Auto-context not injecting
273
+ - Verify `autoContext: true` in your config
274
+ - Enable `debug: true` to see what queries are being made
275
+ - Check that you have memories matching your conversation topics
276
+
277
+ ## Contributing
278
+
279
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and guidelines.
280
+
281
+ ## License
282
+
283
+ MIT