sidebud 0.1.0 → 0.4.0

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 (39) hide show
  1. package/CHANGELOG.md +65 -0
  2. package/dist/main.js +9361 -4209
  3. package/package.json +3 -2
  4. package/skills/widget-packs/SKILL.md +199 -0
  5. package/src/manage/guide/app-arrange.png +0 -0
  6. package/src/manage/guide/app-disk.png +0 -0
  7. package/src/manage/guide/app-open.png +0 -0
  8. package/src/manage/guide/app-thread.png +0 -0
  9. package/src/manage/guide/app-tiles.png +0 -0
  10. package/src/manage/guide/draft.png +0 -0
  11. package/src/manage/guide/layouts.png +0 -0
  12. package/src/manage/guide/library.png +0 -0
  13. package/src/manage/guide/pack-page.png +0 -0
  14. package/src/manage/guide/permissions.png +0 -0
  15. package/src/manage/guide/phone-home.png +0 -0
  16. package/src/manage/guide/phone-open.png +0 -0
  17. package/src/manage/guide/widget-voice.png +0 -0
  18. package/src/manage/guide.js +155 -0
  19. package/src/manage/guide.md +139 -0
  20. package/src/manage/index.html +14 -0
  21. package/src/manage/manage.css +782 -0
  22. package/src/manage/manage.js +155 -39
  23. package/src/manage/packs.js +347 -0
  24. package/src/manage/settings.js +1 -1
  25. package/src/manage/setup.js +83 -23
  26. package/packs/BRAND_ASSETS.md +0 -8
  27. package/packs/calendar/logo.png +0 -0
  28. package/packs/calendar/pack.json +0 -127
  29. package/packs/discord/pack.json +0 -107
  30. package/packs/filesystem/pack.json +0 -84
  31. package/packs/github/pack.json +0 -127
  32. package/packs/gmail/logo.png +0 -0
  33. package/packs/gmail/pack.json +0 -274
  34. package/packs/obsidian/pack.json +0 -88
  35. package/packs/t3-agents/logo.png +0 -0
  36. package/packs/t3-agents/pack.json +0 -492
  37. package/packs/telegram/pack.json +0 -137
  38. package/packs/trello/pack.json +0 -102
  39. package/packs/whatsapp/pack.json +0 -118
@@ -1,102 +0,0 @@
1
- {
2
- "$schema": "../../../../docs/schemas/pack-v2.schema.json",
3
- "schemaVersion": 2,
4
- "version": "1.0.0",
5
- "author": {
6
- "name": "Sidebud"
7
- },
8
- "license": "MIT",
9
- "logo": {
10
- "kind": "icon",
11
- "name": "chat"
12
- },
13
- "id": "app.sidebud.trello",
14
- "name": "Trello",
15
- "description": "Read a selected board, lists, and cards through a companion-local MCP adapter over the official Trello REST API.",
16
- "mcp": {
17
- "transport": "builtin",
18
- "service": "trello"
19
- },
20
- "secrets": [
21
- {
22
- "name": "TRELLO_API_KEY",
23
- "description": "API key from your Trello Power-Up administration page."
24
- },
25
- {
26
- "name": "TRELLO_TOKEN",
27
- "description": "User token authorized with scope=read only. The token may access more boards than this pack exposes."
28
- }
29
- ],
30
- "settings": [
31
- {
32
- "id": "boardId",
33
- "label": "Board ID",
34
- "type": "text",
35
- "required": true,
36
- "description": "Board ID or the short ID from the board URL."
37
- }
38
- ],
39
- "permissions": {
40
- "tools": [
41
- {
42
- "name": "get_board",
43
- "access": "read",
44
- "argumentSettings": {
45
- "boardId": "boardId"
46
- }
47
- },
48
- {
49
- "name": "list_lists",
50
- "access": "read",
51
- "argumentSettings": {
52
- "boardId": "boardId"
53
- }
54
- },
55
- {
56
- "name": "list_cards",
57
- "access": "read",
58
- "argumentSettings": {
59
- "boardId": "boardId"
60
- }
61
- }
62
- ],
63
- "network": [
64
- "api.trello.com"
65
- ]
66
- },
67
- "data": [
68
- {
69
- "id": "cards",
70
- "tool": "list_cards",
71
- "arguments": {
72
- "boardId": "{{setting.boardId}}",
73
- "limit": 20
74
- },
75
- "refreshSeconds": 300
76
- }
77
- ],
78
- "glance": {
79
- "line": "{{cards/total|default:0}} open cards"
80
- },
81
- "blocks": [
82
- {
83
- "type": "list",
84
- "items": "{{cards/cards}}",
85
- "item": {
86
- "title": "{{item/name}}",
87
- "subtitle": "{{item/due|default:No due date}}"
88
- },
89
- "limit": 8,
90
- "emptyText": "No open cards"
91
- }
92
- ],
93
- "controls": [
94
- {
95
- "id": "summary",
96
- "kind": "prompt",
97
- "label": "Summarize board",
98
- "prompt": "Summarize open cards and upcoming deadlines on my configured Trello board.",
99
- "default": true
100
- }
101
- ]
102
- }
@@ -1,118 +0,0 @@
1
- {
2
- "$schema": "../../../../docs/schemas/pack-v1.schema.json",
3
- "schemaVersion": 1,
4
- "id": "dev.remotevoiceagent.whatsapp",
5
- "name": "WhatsApp",
6
- "description": "Your personal WhatsApp through verygoodplugins/whatsapp-mcp (linked as a device by QR). Recent messages on the phone, alerts for chosen contacts, and search. Read-only here: nothing is sent.",
7
- "version": "1.0.0",
8
- "author": {
9
- "name": "Sidebud"
10
- },
11
- "license": "MIT",
12
- "logo": {
13
- "kind": "icon",
14
- "name": "chat"
15
- },
16
- "tile": {
17
- "size": "small"
18
- },
19
- "mcp": {
20
- "transport": "stdio",
21
- "command": "uv",
22
- "args": [
23
- "--directory",
24
- "{{setting.serverDir}}",
25
- "run",
26
- "main.py"
27
- ],
28
- "env": {}
29
- },
30
- "permissions": {
31
- "tools": [
32
- {
33
- "name": "list_messages",
34
- "access": "read",
35
- "description": "Recent and matching messages"
36
- },
37
- {
38
- "name": "list_chats",
39
- "access": "read",
40
- "description": "Chats with unread state"
41
- },
42
- {
43
- "name": "search_contacts",
44
- "access": "read",
45
- "description": "Find a contact"
46
- }
47
- ]
48
- },
49
- "settings": [
50
- {
51
- "id": "serverDir",
52
- "label": "whatsapp-mcp-server folder",
53
- "type": "text",
54
- "default": "",
55
- "description": "Absolute path to the whatsapp-mcp-server folder of verygoodplugins/whatsapp-mcp. Its Go bridge must be running (see the repo's launchd script)."
56
- }
57
- ],
58
- "data": [
59
- {
60
- "id": "recent",
61
- "tool": "list_messages",
62
- "arguments": {
63
- "limit": 30,
64
- "include_context": false,
65
- "sort_by": "newest"
66
- },
67
- "refreshSeconds": 20
68
- },
69
- {
70
- "id": "chats",
71
- "tool": "list_chats",
72
- "arguments": {
73
- "limit": 20,
74
- "include_last_message": true
75
- },
76
- "refreshSeconds": 60
77
- }
78
- ],
79
- "glance": {
80
- "line": "{{recent/result/0/sender_name|default:No messages}}: {{recent/result/0/content|truncate:50}}"
81
- },
82
- "blocks": [
83
- {
84
- "type": "list",
85
- "items": "{{chats/result}}",
86
- "item": {
87
- "title": "{{item/name}}",
88
- "subtitle": "{{item/last_message|truncate:80}}",
89
- "status": "{{item/unread}}"
90
- },
91
- "limit": 8,
92
- "emptyText": "No chats yet"
93
- }
94
- ],
95
- "controls": [
96
- {
97
- "id": "summarize",
98
- "kind": "prompt",
99
- "label": "Summarize WhatsApp",
100
- "prompt": "Summarize my recent WhatsApp messages and tell me what needs a reply.",
101
- "default": true
102
- }
103
- ],
104
- "alerts": [
105
- {
106
- "id": "incoming",
107
- "items": "{{recent/result}}",
108
- "key": "{{item/id}}",
109
- "sender": [
110
- "{{item/sender_phone}}",
111
- "{{item/sender_name}}",
112
- "{{item/sender_jid}}"
113
- ],
114
- "text": "{{item/content}}",
115
- "fromMe": "{{item/is_from_me}}"
116
- }
117
- ]
118
- }