twindex-openclaw-plugin 0.5.4 → 0.5.5

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.
@@ -2,7 +2,7 @@
2
2
  "id": "twindex",
3
3
  "name": "Twindex",
4
4
  "description": "Music intelligence for AI agents. Get notified about tours, merch drops, releases, and presales for your favorite artists.",
5
- "version": "0.5.4",
5
+ "version": "0.5.5",
6
6
  "skills": ["./skills"],
7
7
  "configSchema": {
8
8
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twindex-openclaw-plugin",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Music intelligence for AI agents. Tours, merch drops, releases, presales.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -76,8 +76,7 @@ export function createNotificationService(api: any) {
76
76
 
77
77
  for (const notif of unread) {
78
78
  const message =
79
- `New Twindex update for ${notif.brand} (${notif.event_type}): ${notif.summary}\n` +
80
- "Share this with the user naturally. If they seem busy, keep it brief.";
79
+ `🎸 ${notif.brand} ${notif.event_type}\n${notif.summary}`;
81
80
 
82
81
  const delivered = await sendMessage(message, channel, target);
83
82
  if (delivered) {