create-claude-code-visualizer 0.1.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 (220) hide show
  1. package/index.js +393 -0
  2. package/package.json +31 -0
  3. package/templates/CLAUDE.md +108 -0
  4. package/templates/app/.env.local.example +14 -0
  5. package/templates/app/ecosystem.config.js +29 -0
  6. package/templates/app/next-env.d.ts +6 -0
  7. package/templates/app/next.config.ts +16 -0
  8. package/templates/app/package-lock.json +4581 -0
  9. package/templates/app/package.json +38 -0
  10. package/templates/app/postcss.config.js +5 -0
  11. package/templates/app/src/app/agents/[slug]/chat/loading.tsx +26 -0
  12. package/templates/app/src/app/agents/[slug]/chat/page.tsx +579 -0
  13. package/templates/app/src/app/agents/[slug]/loading.tsx +19 -0
  14. package/templates/app/src/app/agents/page.tsx +8 -0
  15. package/templates/app/src/app/api/agents/[slug]/capabilities/route.ts +11 -0
  16. package/templates/app/src/app/api/agents/[slug]/route.ts +57 -0
  17. package/templates/app/src/app/api/agents/route.ts +28 -0
  18. package/templates/app/src/app/api/ai/generate-agent/route.ts +87 -0
  19. package/templates/app/src/app/api/ai/improve-claude-md/route.ts +78 -0
  20. package/templates/app/src/app/api/ai/suggestions/route.ts +64 -0
  21. package/templates/app/src/app/api/ai/title/route.ts +88 -0
  22. package/templates/app/src/app/api/auth/role/route.ts +17 -0
  23. package/templates/app/src/app/api/commands/[slug]/route.ts +61 -0
  24. package/templates/app/src/app/api/commands/route.ts +6 -0
  25. package/templates/app/src/app/api/governance/costs/route.ts +117 -0
  26. package/templates/app/src/app/api/governance/sessions/route.ts +335 -0
  27. package/templates/app/src/app/api/notifications/route.ts +62 -0
  28. package/templates/app/src/app/api/preferences/route.ts +44 -0
  29. package/templates/app/src/app/api/runs/[id]/approve/route.ts +38 -0
  30. package/templates/app/src/app/api/runs/[id]/events/route.ts +28 -0
  31. package/templates/app/src/app/api/runs/[id]/metadata/route.ts +30 -0
  32. package/templates/app/src/app/api/runs/[id]/route.ts +21 -0
  33. package/templates/app/src/app/api/runs/[id]/start/route.ts +61 -0
  34. package/templates/app/src/app/api/runs/[id]/stop/route.ts +16 -0
  35. package/templates/app/src/app/api/runs/[id]/stream/route.ts +201 -0
  36. package/templates/app/src/app/api/runs/route.ts +95 -0
  37. package/templates/app/src/app/api/schedules/[id]/route.ts +81 -0
  38. package/templates/app/src/app/api/schedules/route.ts +75 -0
  39. package/templates/app/src/app/api/settings/access-logs/route.ts +33 -0
  40. package/templates/app/src/app/api/settings/claude-md/route.ts +44 -0
  41. package/templates/app/src/app/api/settings/env-keys/route.ts +271 -0
  42. package/templates/app/src/app/api/settings/users/route.ts +108 -0
  43. package/templates/app/src/app/api/skills/[slug]/route.ts +43 -0
  44. package/templates/app/src/app/api/skills/route.ts +6 -0
  45. package/templates/app/src/app/api/tools/route.ts +65 -0
  46. package/templates/app/src/app/api/uploads/cleanup/route.ts +29 -0
  47. package/templates/app/src/app/api/uploads/route.ts +77 -0
  48. package/templates/app/src/app/auth/callback/route.ts +19 -0
  49. package/templates/app/src/app/globals.css +115 -0
  50. package/templates/app/src/app/layout.tsx +24 -0
  51. package/templates/app/src/app/loading.tsx +16 -0
  52. package/templates/app/src/app/login/page.tsx +64 -0
  53. package/templates/app/src/app/not-authorized/page.tsx +33 -0
  54. package/templates/app/src/app/runs/page.tsx +55 -0
  55. package/templates/app/src/app/schedules/page.tsx +110 -0
  56. package/templates/app/src/app/settings/page.tsx +1294 -0
  57. package/templates/app/src/app/skills/page.tsx +7 -0
  58. package/templates/app/src/components/agent-card.tsx +58 -0
  59. package/templates/app/src/components/agent-grid.tsx +90 -0
  60. package/templates/app/src/components/auth/auth-context.tsx +79 -0
  61. package/templates/app/src/components/chat-thread.tsx +50 -0
  62. package/templates/app/src/components/chat-view.tsx +670 -0
  63. package/templates/app/src/components/commands-browser.tsx +349 -0
  64. package/templates/app/src/components/create-agent-modal.tsx +388 -0
  65. package/templates/app/src/components/governance-dashboard.tsx +397 -0
  66. package/templates/app/src/components/icons.tsx +401 -0
  67. package/templates/app/src/components/layout/agent-sidebar.tsx +504 -0
  68. package/templates/app/src/components/layout/app-shell.tsx +29 -0
  69. package/templates/app/src/components/layout/nav.tsx +87 -0
  70. package/templates/app/src/components/layout/overview-inner.tsx +14 -0
  71. package/templates/app/src/components/layout/profile-menu.tsx +95 -0
  72. package/templates/app/src/components/layout/sidebar.tsx +30 -0
  73. package/templates/app/src/components/markdown.tsx +57 -0
  74. package/templates/app/src/components/message-bar.tsx +161 -0
  75. package/templates/app/src/components/notifications/notification-bell.tsx +104 -0
  76. package/templates/app/src/components/notifications/notification-panel.tsx +116 -0
  77. package/templates/app/src/components/overview/overview-content.tsx +287 -0
  78. package/templates/app/src/components/overview/overview-context.tsx +88 -0
  79. package/templates/app/src/components/preferences-modal.tsx +112 -0
  80. package/templates/app/src/components/run-form.tsx +73 -0
  81. package/templates/app/src/components/run-history-table.tsx +226 -0
  82. package/templates/app/src/components/run-output.tsx +187 -0
  83. package/templates/app/src/components/schedule-form.tsx +148 -0
  84. package/templates/app/src/components/skills-browser.tsx +338 -0
  85. package/templates/app/src/components/tool-tooltip.tsx +82 -0
  86. package/templates/app/src/hooks/use-sse.ts +115 -0
  87. package/templates/app/src/instrumentation.ts +9 -0
  88. package/templates/app/src/lib/agent-cache.ts +19 -0
  89. package/templates/app/src/lib/agent-runner.ts +411 -0
  90. package/templates/app/src/lib/agents.ts +168 -0
  91. package/templates/app/src/lib/ai.ts +40 -0
  92. package/templates/app/src/lib/approval-store.ts +70 -0
  93. package/templates/app/src/lib/auth-guard.ts +116 -0
  94. package/templates/app/src/lib/capabilities.ts +191 -0
  95. package/templates/app/src/lib/line-diff.ts +96 -0
  96. package/templates/app/src/lib/queue.ts +22 -0
  97. package/templates/app/src/lib/redis.ts +12 -0
  98. package/templates/app/src/lib/role-permissions.ts +166 -0
  99. package/templates/app/src/lib/run-agent.ts +442 -0
  100. package/templates/app/src/lib/supabase-browser.ts +8 -0
  101. package/templates/app/src/lib/supabase-middleware.ts +63 -0
  102. package/templates/app/src/lib/supabase-server.ts +28 -0
  103. package/templates/app/src/lib/supabase.ts +6 -0
  104. package/templates/app/src/lib/tool-descriptions.ts +29 -0
  105. package/templates/app/src/lib/types.ts +73 -0
  106. package/templates/app/src/lib/typewriter-animation.ts +159 -0
  107. package/templates/app/src/middleware.ts +13 -0
  108. package/templates/app/tsconfig.json +21 -0
  109. package/templates/app/uploads/.gitkeep +0 -0
  110. package/templates/app/worker/index.ts +342 -0
  111. package/templates/claude/agents/ai-trends-scout.md +66 -0
  112. package/templates/claude/commands/add-to-todos.md +56 -0
  113. package/templates/claude/commands/check-todos.md +56 -0
  114. package/templates/claude/hooks/auto-approve-safe.sh +34 -0
  115. package/templates/claude/hooks/auto-format.sh +25 -0
  116. package/templates/claude/hooks/block-destructive.sh +32 -0
  117. package/templates/claude/hooks/compaction-preserver.sh +16 -0
  118. package/templates/claude/hooks/notify.sh +26 -0
  119. package/templates/claude/settings.local.json +66 -0
  120. package/templates/claude/skills/frontend-design/SKILL.md +127 -0
  121. package/templates/claude/skills/frontend-design/reference/color-and-contrast.md +132 -0
  122. package/templates/claude/skills/frontend-design/reference/interaction-design.md +123 -0
  123. package/templates/claude/skills/frontend-design/reference/motion-design.md +99 -0
  124. package/templates/claude/skills/frontend-design/reference/responsive-design.md +114 -0
  125. package/templates/claude/skills/frontend-design/reference/spatial-design.md +100 -0
  126. package/templates/claude/skills/frontend-design/reference/typography.md +131 -0
  127. package/templates/claude/skills/frontend-design/reference/ux-writing.md +107 -0
  128. package/templates/claude/skills/gws-admin-reports/SKILL.md +57 -0
  129. package/templates/claude/skills/gws-calendar/SKILL.md +108 -0
  130. package/templates/claude/skills/gws-calendar-agenda/SKILL.md +52 -0
  131. package/templates/claude/skills/gws-calendar-insert/SKILL.md +55 -0
  132. package/templates/claude/skills/gws-chat/SKILL.md +73 -0
  133. package/templates/claude/skills/gws-chat-send/SKILL.md +49 -0
  134. package/templates/claude/skills/gws-classroom/SKILL.md +75 -0
  135. package/templates/claude/skills/gws-docs/SKILL.md +48 -0
  136. package/templates/claude/skills/gws-docs-write/SKILL.md +49 -0
  137. package/templates/claude/skills/gws-drive/SKILL.md +137 -0
  138. package/templates/claude/skills/gws-drive-upload/SKILL.md +52 -0
  139. package/templates/claude/skills/gws-events/SKILL.md +67 -0
  140. package/templates/claude/skills/gws-events-renew/SKILL.md +48 -0
  141. package/templates/claude/skills/gws-events-subscribe/SKILL.md +59 -0
  142. package/templates/claude/skills/gws-forms/SKILL.md +45 -0
  143. package/templates/claude/skills/gws-gmail/SKILL.md +59 -0
  144. package/templates/claude/skills/gws-gmail-forward/SKILL.md +53 -0
  145. package/templates/claude/skills/gws-gmail-reply/SKILL.md +56 -0
  146. package/templates/claude/skills/gws-gmail-reply-all/SKILL.md +60 -0
  147. package/templates/claude/skills/gws-gmail-send/SKILL.md +55 -0
  148. package/templates/claude/skills/gws-gmail-triage/SKILL.md +50 -0
  149. package/templates/claude/skills/gws-gmail-watch/SKILL.md +58 -0
  150. package/templates/claude/skills/gws-keep/SKILL.md +48 -0
  151. package/templates/claude/skills/gws-meet/SKILL.md +51 -0
  152. package/templates/claude/skills/gws-modelarmor/SKILL.md +42 -0
  153. package/templates/claude/skills/gws-modelarmor-create-template/SKILL.md +53 -0
  154. package/templates/claude/skills/gws-modelarmor-sanitize-prompt/SKILL.md +48 -0
  155. package/templates/claude/skills/gws-modelarmor-sanitize-response/SKILL.md +48 -0
  156. package/templates/claude/skills/gws-people/SKILL.md +67 -0
  157. package/templates/claude/skills/gws-shared/SKILL.md +66 -0
  158. package/templates/claude/skills/gws-sheets/SKILL.md +53 -0
  159. package/templates/claude/skills/gws-sheets-append/SKILL.md +51 -0
  160. package/templates/claude/skills/gws-sheets-read/SKILL.md +47 -0
  161. package/templates/claude/skills/gws-slides/SKILL.md +43 -0
  162. package/templates/claude/skills/gws-tasks/SKILL.md +56 -0
  163. package/templates/claude/skills/gws-workflow/SKILL.md +44 -0
  164. package/templates/claude/skills/gws-workflow-email-to-task/SKILL.md +47 -0
  165. package/templates/claude/skills/gws-workflow-file-announce/SKILL.md +50 -0
  166. package/templates/claude/skills/gws-workflow-meeting-prep/SKILL.md +47 -0
  167. package/templates/claude/skills/gws-workflow-standup-report/SKILL.md +46 -0
  168. package/templates/claude/skills/gws-workflow-weekly-digest/SKILL.md +46 -0
  169. package/templates/claude/skills/persona-content-creator/SKILL.md +33 -0
  170. package/templates/claude/skills/persona-customer-support/SKILL.md +34 -0
  171. package/templates/claude/skills/persona-event-coordinator/SKILL.md +35 -0
  172. package/templates/claude/skills/persona-exec-assistant/SKILL.md +35 -0
  173. package/templates/claude/skills/persona-hr-coordinator/SKILL.md +33 -0
  174. package/templates/claude/skills/persona-it-admin/SKILL.md +30 -0
  175. package/templates/claude/skills/persona-project-manager/SKILL.md +35 -0
  176. package/templates/claude/skills/persona-researcher/SKILL.md +33 -0
  177. package/templates/claude/skills/persona-sales-ops/SKILL.md +35 -0
  178. package/templates/claude/skills/persona-team-lead/SKILL.md +36 -0
  179. package/templates/claude/skills/recipe-backup-sheet-as-csv/SKILL.md +25 -0
  180. package/templates/claude/skills/recipe-batch-invite-to-event/SKILL.md +25 -0
  181. package/templates/claude/skills/recipe-block-focus-time/SKILL.md +24 -0
  182. package/templates/claude/skills/recipe-bulk-download-folder/SKILL.md +25 -0
  183. package/templates/claude/skills/recipe-collect-form-responses/SKILL.md +25 -0
  184. package/templates/claude/skills/recipe-compare-sheet-tabs/SKILL.md +25 -0
  185. package/templates/claude/skills/recipe-copy-sheet-for-new-month/SKILL.md +25 -0
  186. package/templates/claude/skills/recipe-create-classroom-course/SKILL.md +25 -0
  187. package/templates/claude/skills/recipe-create-doc-from-template/SKILL.md +29 -0
  188. package/templates/claude/skills/recipe-create-events-from-sheet/SKILL.md +24 -0
  189. package/templates/claude/skills/recipe-create-expense-tracker/SKILL.md +26 -0
  190. package/templates/claude/skills/recipe-create-feedback-form/SKILL.md +25 -0
  191. package/templates/claude/skills/recipe-create-gmail-filter/SKILL.md +26 -0
  192. package/templates/claude/skills/recipe-create-meet-space/SKILL.md +25 -0
  193. package/templates/claude/skills/recipe-create-presentation/SKILL.md +25 -0
  194. package/templates/claude/skills/recipe-create-shared-drive/SKILL.md +25 -0
  195. package/templates/claude/skills/recipe-create-task-list/SKILL.md +26 -0
  196. package/templates/claude/skills/recipe-create-vacation-responder/SKILL.md +25 -0
  197. package/templates/claude/skills/recipe-draft-email-from-doc/SKILL.md +25 -0
  198. package/templates/claude/skills/recipe-email-drive-link/SKILL.md +25 -0
  199. package/templates/claude/skills/recipe-find-free-time/SKILL.md +25 -0
  200. package/templates/claude/skills/recipe-find-large-files/SKILL.md +24 -0
  201. package/templates/claude/skills/recipe-forward-labeled-emails/SKILL.md +27 -0
  202. package/templates/claude/skills/recipe-generate-report-from-sheet/SKILL.md +34 -0
  203. package/templates/claude/skills/recipe-label-and-archive-emails/SKILL.md +25 -0
  204. package/templates/claude/skills/recipe-log-deal-update/SKILL.md +25 -0
  205. package/templates/claude/skills/recipe-organize-drive-folder/SKILL.md +26 -0
  206. package/templates/claude/skills/recipe-plan-weekly-schedule/SKILL.md +26 -0
  207. package/templates/claude/skills/recipe-post-mortem-setup/SKILL.md +25 -0
  208. package/templates/claude/skills/recipe-reschedule-meeting/SKILL.md +25 -0
  209. package/templates/claude/skills/recipe-review-meet-participants/SKILL.md +25 -0
  210. package/templates/claude/skills/recipe-review-overdue-tasks/SKILL.md +25 -0
  211. package/templates/claude/skills/recipe-save-email-attachments/SKILL.md +26 -0
  212. package/templates/claude/skills/recipe-save-email-to-doc/SKILL.md +29 -0
  213. package/templates/claude/skills/recipe-schedule-recurring-event/SKILL.md +24 -0
  214. package/templates/claude/skills/recipe-send-team-announcement/SKILL.md +24 -0
  215. package/templates/claude/skills/recipe-share-doc-and-notify/SKILL.md +25 -0
  216. package/templates/claude/skills/recipe-share-event-materials/SKILL.md +25 -0
  217. package/templates/claude/skills/recipe-share-folder-with-team/SKILL.md +26 -0
  218. package/templates/claude/skills/recipe-sync-contacts-to-sheet/SKILL.md +25 -0
  219. package/templates/claude/skills/recipe-watch-drive-changes/SKILL.md +25 -0
  220. package/templates/mcp.json +12 -0
@@ -0,0 +1,51 @@
1
+ ---
2
+ name: gws-sheets-append
3
+ version: 1.0.0
4
+ description: "Google Sheets: Append a row to a spreadsheet."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws sheets +append --help"
11
+ ---
12
+
13
+ # sheets +append
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ Append a row to a spreadsheet
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ gws sheets +append --spreadsheet <ID>
23
+ ```
24
+
25
+ ## Flags
26
+
27
+ | Flag | Required | Default | Description |
28
+ |------|----------|---------|-------------|
29
+ | `--spreadsheet` | ✓ | — | Spreadsheet ID |
30
+ | `--values` | — | — | Comma-separated values (simple strings) |
31
+ | `--json-values` | — | — | JSON array of rows, e.g. '[["a","b"],["c","d"]]' |
32
+
33
+ ## Examples
34
+
35
+ ```bash
36
+ gws sheets +append --spreadsheet ID --values 'Alice,100,true'
37
+ gws sheets +append --spreadsheet ID --json-values '[["a","b"],["c","d"]]'
38
+ ```
39
+
40
+ ## Tips
41
+
42
+ - Use --values for simple single-row appends.
43
+ - Use --json-values for bulk multi-row inserts.
44
+
45
+ > [!CAUTION]
46
+ > This is a **write** command — confirm with the user before executing.
47
+
48
+ ## See Also
49
+
50
+ - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth
51
+ - [gws-sheets](../gws-sheets/SKILL.md) — All read and write spreadsheets commands
@@ -0,0 +1,47 @@
1
+ ---
2
+ name: gws-sheets-read
3
+ version: 1.0.0
4
+ description: "Google Sheets: Read values from a spreadsheet."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws sheets +read --help"
11
+ ---
12
+
13
+ # sheets +read
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ Read values from a spreadsheet
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ gws sheets +read --spreadsheet <ID> --range <RANGE>
23
+ ```
24
+
25
+ ## Flags
26
+
27
+ | Flag | Required | Default | Description |
28
+ |------|----------|---------|-------------|
29
+ | `--spreadsheet` | ✓ | — | Spreadsheet ID |
30
+ | `--range` | ✓ | — | Range to read (e.g. 'Sheet1!A1:B2') |
31
+
32
+ ## Examples
33
+
34
+ ```bash
35
+ gws sheets +read --spreadsheet ID --range 'Sheet1!A1:D10'
36
+ gws sheets +read --spreadsheet ID --range Sheet1
37
+ ```
38
+
39
+ ## Tips
40
+
41
+ - Read-only — never modifies the spreadsheet.
42
+ - For advanced options, use the raw values.get API.
43
+
44
+ ## See Also
45
+
46
+ - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth
47
+ - [gws-sheets](../gws-sheets/SKILL.md) — All read and write spreadsheets commands
@@ -0,0 +1,43 @@
1
+ ---
2
+ name: gws-slides
3
+ version: 1.0.0
4
+ description: "Google Slides: Read and write presentations."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws slides --help"
11
+ ---
12
+
13
+ # slides (v1)
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ ```bash
18
+ gws slides <resource> <method> [flags]
19
+ ```
20
+
21
+ ## API Resources
22
+
23
+ ### presentations
24
+
25
+ - `batchUpdate` — Applies one or more updates to the presentation. Each request is validated before being applied. If any request is not valid, then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are applied. Other requests do not need to return information; these each return an empty reply. The order of replies matches that of the requests.
26
+ - `create` — Creates a blank presentation using the title given in the request. If a `presentationId` is provided, it is used as the ID of the new presentation. Otherwise, a new ID is generated. Other fields in the request, including any provided content, are ignored. Returns the created presentation.
27
+ - `get` — Gets the latest version of the specified presentation.
28
+ - `pages` — Operations on the 'pages' resource
29
+
30
+ ## Discovering Commands
31
+
32
+ Before calling any API method, inspect it:
33
+
34
+ ```bash
35
+ # Browse resources and methods
36
+ gws slides --help
37
+
38
+ # Inspect a method's required params, types, and defaults
39
+ gws schema slides.<resource>.<method>
40
+ ```
41
+
42
+ Use `gws schema` output to build your `--params` and `--json` flags.
43
+
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: gws-tasks
3
+ version: 1.0.0
4
+ description: "Google Tasks: Manage task lists and tasks."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws tasks --help"
11
+ ---
12
+
13
+ # tasks (v1)
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ ```bash
18
+ gws tasks <resource> <method> [flags]
19
+ ```
20
+
21
+ ## API Resources
22
+
23
+ ### tasklists
24
+
25
+ - `delete` — Deletes the authenticated user's specified task list. If the list contains assigned tasks, both the assigned tasks and the original tasks in the assignment surface (Docs, Chat Spaces) are deleted.
26
+ - `get` — Returns the authenticated user's specified task list.
27
+ - `insert` — Creates a new task list and adds it to the authenticated user's task lists. A user can have up to 2000 lists at a time.
28
+ - `list` — Returns all the authenticated user's task lists. A user can have up to 2000 lists at a time.
29
+ - `patch` — Updates the authenticated user's specified task list. This method supports patch semantics.
30
+ - `update` — Updates the authenticated user's specified task list.
31
+
32
+ ### tasks
33
+
34
+ - `clear` — Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.
35
+ - `delete` — Deletes the specified task from the task list. If the task is assigned, both the assigned task and the original task (in Docs, Chat Spaces) are deleted. To delete the assigned task only, navigate to the assignment surface and unassign the task from there.
36
+ - `get` — Returns the specified task.
37
+ - `insert` — Creates a new task on the specified task list. Tasks assigned from Docs or Chat Spaces cannot be inserted from Tasks Public API; they can only be created by assigning them from Docs or Chat Spaces. A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time.
38
+ - `list` — Returns all tasks in the specified task list. Doesn't return assigned tasks by default (from Docs, Chat Spaces). A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time.
39
+ - `move` — Moves the specified task to another position in the destination task list. If the destination list is not specified, the task is moved within its current list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks. A user can have up to 2,000 subtasks per task.
40
+ - `patch` — Updates the specified task. This method supports patch semantics.
41
+ - `update` — Updates the specified task.
42
+
43
+ ## Discovering Commands
44
+
45
+ Before calling any API method, inspect it:
46
+
47
+ ```bash
48
+ # Browse resources and methods
49
+ gws tasks --help
50
+
51
+ # Inspect a method's required params, types, and defaults
52
+ gws schema tasks.<resource>.<method>
53
+ ```
54
+
55
+ Use `gws schema` output to build your `--params` and `--json` flags.
56
+
@@ -0,0 +1,44 @@
1
+ ---
2
+ name: gws-workflow
3
+ version: 1.0.0
4
+ description: "Google Workflow: Cross-service productivity workflows."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws workflow --help"
11
+ ---
12
+
13
+ # workflow (v1)
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ ```bash
18
+ gws workflow <resource> <method> [flags]
19
+ ```
20
+
21
+ ## Helper Commands
22
+
23
+ | Command | Description |
24
+ |---------|-------------|
25
+ | [`+standup-report`](../gws-workflow-standup-report/SKILL.md) | Today's meetings + open tasks as a standup summary |
26
+ | [`+meeting-prep`](../gws-workflow-meeting-prep/SKILL.md) | Prepare for your next meeting: agenda, attendees, and linked docs |
27
+ | [`+email-to-task`](../gws-workflow-email-to-task/SKILL.md) | Convert a Gmail message into a Google Tasks entry |
28
+ | [`+weekly-digest`](../gws-workflow-weekly-digest/SKILL.md) | Weekly summary: this week's meetings + unread email count |
29
+ | [`+file-announce`](../gws-workflow-file-announce/SKILL.md) | Announce a Drive file in a Chat space |
30
+
31
+ ## Discovering Commands
32
+
33
+ Before calling any API method, inspect it:
34
+
35
+ ```bash
36
+ # Browse resources and methods
37
+ gws workflow --help
38
+
39
+ # Inspect a method's required params, types, and defaults
40
+ gws schema workflow.<resource>.<method>
41
+ ```
42
+
43
+ Use `gws schema` output to build your `--params` and `--json` flags.
44
+
@@ -0,0 +1,47 @@
1
+ ---
2
+ name: gws-workflow-email-to-task
3
+ version: 1.0.0
4
+ description: "Google Workflow: Convert a Gmail message into a Google Tasks entry."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws workflow +email-to-task --help"
11
+ ---
12
+
13
+ # workflow +email-to-task
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ Convert a Gmail message into a Google Tasks entry
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ gws workflow +email-to-task --message-id <ID>
23
+ ```
24
+
25
+ ## Flags
26
+
27
+ | Flag | Required | Default | Description |
28
+ |------|----------|---------|-------------|
29
+ | `--message-id` | ✓ | — | Gmail message ID to convert |
30
+ | `--tasklist` | — | @default | Task list ID (default: @default) |
31
+
32
+ ## Examples
33
+
34
+ ```bash
35
+ gws workflow +email-to-task --message-id MSG_ID
36
+ gws workflow +email-to-task --message-id MSG_ID --tasklist LIST_ID
37
+ ```
38
+
39
+ ## Tips
40
+
41
+ - Reads the email subject as the task title and snippet as notes.
42
+ - Creates a new task — confirm with the user before executing.
43
+
44
+ ## See Also
45
+
46
+ - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth
47
+ - [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands
@@ -0,0 +1,50 @@
1
+ ---
2
+ name: gws-workflow-file-announce
3
+ version: 1.0.0
4
+ description: "Google Workflow: Announce a Drive file in a Chat space."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws workflow +file-announce --help"
11
+ ---
12
+
13
+ # workflow +file-announce
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ Announce a Drive file in a Chat space
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ gws workflow +file-announce --file-id <ID> --space <SPACE>
23
+ ```
24
+
25
+ ## Flags
26
+
27
+ | Flag | Required | Default | Description |
28
+ |------|----------|---------|-------------|
29
+ | `--file-id` | ✓ | — | Drive file ID to announce |
30
+ | `--space` | ✓ | — | Chat space name (e.g. spaces/SPACE_ID) |
31
+ | `--message` | — | — | Custom announcement message |
32
+ | `--format` | — | — | Output format: json (default), table, yaml, csv |
33
+
34
+ ## Examples
35
+
36
+ ```bash
37
+ gws workflow +file-announce --file-id FILE_ID --space spaces/ABC123
38
+ gws workflow +file-announce --file-id FILE_ID --space spaces/ABC123 --message 'Check this out!'
39
+ ```
40
+
41
+ ## Tips
42
+
43
+ - This is a write command — sends a Chat message.
44
+ - Use `gws drive +upload` first to upload the file, then announce it here.
45
+ - Fetches the file name from Drive to build the announcement.
46
+
47
+ ## See Also
48
+
49
+ - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth
50
+ - [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands
@@ -0,0 +1,47 @@
1
+ ---
2
+ name: gws-workflow-meeting-prep
3
+ version: 1.0.0
4
+ description: "Google Workflow: Prepare for your next meeting: agenda, attendees, and linked docs."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws workflow +meeting-prep --help"
11
+ ---
12
+
13
+ # workflow +meeting-prep
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ Prepare for your next meeting: agenda, attendees, and linked docs
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ gws workflow +meeting-prep
23
+ ```
24
+
25
+ ## Flags
26
+
27
+ | Flag | Required | Default | Description |
28
+ |------|----------|---------|-------------|
29
+ | `--calendar` | — | primary | Calendar ID (default: primary) |
30
+ | `--format` | — | — | Output format: json (default), table, yaml, csv |
31
+
32
+ ## Examples
33
+
34
+ ```bash
35
+ gws workflow +meeting-prep
36
+ gws workflow +meeting-prep --calendar Work
37
+ ```
38
+
39
+ ## Tips
40
+
41
+ - Read-only — never modifies data.
42
+ - Shows the next upcoming event with attendees and description.
43
+
44
+ ## See Also
45
+
46
+ - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth
47
+ - [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands
@@ -0,0 +1,46 @@
1
+ ---
2
+ name: gws-workflow-standup-report
3
+ version: 1.0.0
4
+ description: "Google Workflow: Today's meetings + open tasks as a standup summary."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws workflow +standup-report --help"
11
+ ---
12
+
13
+ # workflow +standup-report
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ Today's meetings + open tasks as a standup summary
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ gws workflow +standup-report
23
+ ```
24
+
25
+ ## Flags
26
+
27
+ | Flag | Required | Default | Description |
28
+ |------|----------|---------|-------------|
29
+ | `--format` | — | — | Output format: json (default), table, yaml, csv |
30
+
31
+ ## Examples
32
+
33
+ ```bash
34
+ gws workflow +standup-report
35
+ gws workflow +standup-report --format table
36
+ ```
37
+
38
+ ## Tips
39
+
40
+ - Read-only — never modifies data.
41
+ - Combines calendar agenda (today) with tasks list.
42
+
43
+ ## See Also
44
+
45
+ - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth
46
+ - [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands
@@ -0,0 +1,46 @@
1
+ ---
2
+ name: gws-workflow-weekly-digest
3
+ version: 1.0.0
4
+ description: "Google Workflow: Weekly summary: this week's meetings + unread email count."
5
+ metadata:
6
+ openclaw:
7
+ category: "productivity"
8
+ requires:
9
+ bins: ["gws"]
10
+ cliHelp: "gws workflow +weekly-digest --help"
11
+ ---
12
+
13
+ # workflow +weekly-digest
14
+
15
+ > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.
16
+
17
+ Weekly summary: this week's meetings + unread email count
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ gws workflow +weekly-digest
23
+ ```
24
+
25
+ ## Flags
26
+
27
+ | Flag | Required | Default | Description |
28
+ |------|----------|---------|-------------|
29
+ | `--format` | — | — | Output format: json (default), table, yaml, csv |
30
+
31
+ ## Examples
32
+
33
+ ```bash
34
+ gws workflow +weekly-digest
35
+ gws workflow +weekly-digest --format table
36
+ ```
37
+
38
+ ## Tips
39
+
40
+ - Read-only — never modifies data.
41
+ - Combines calendar agenda (week) with gmail triage summary.
42
+
43
+ ## See Also
44
+
45
+ - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth
46
+ - [gws-workflow](../gws-workflow/SKILL.md) — All cross-service productivity workflows commands
@@ -0,0 +1,33 @@
1
+ ---
2
+ name: persona-content-creator
3
+ version: 1.0.0
4
+ description: "Create, organize, and distribute content across Workspace."
5
+ metadata:
6
+ openclaw:
7
+ category: "persona"
8
+ requires:
9
+ bins: ["gws"]
10
+ skills: ["gws-docs", "gws-drive", "gws-gmail", "gws-chat", "gws-slides"]
11
+ ---
12
+
13
+ # Content Creator
14
+
15
+ > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-docs`, `gws-drive`, `gws-gmail`, `gws-chat`, `gws-slides`
16
+
17
+ Create, organize, and distribute content across Workspace.
18
+
19
+ ## Relevant Workflows
20
+ - `gws workflow +file-announce`
21
+
22
+ ## Instructions
23
+ - Draft content in Google Docs with `gws docs +write`.
24
+ - Organize content assets in Drive folders — use `gws drive files list` to browse.
25
+ - Share finished content by announcing in Chat with `gws workflow +file-announce`.
26
+ - Send content review requests via email with `gws gmail +send`.
27
+ - Upload media assets to Drive with `gws drive +upload`.
28
+
29
+ ## Tips
30
+ - Use `gws docs +write` for quick content updates — it handles the Docs API formatting.
31
+ - Keep a 'Content Calendar' in a shared Sheet for tracking publication schedules.
32
+ - Use `--format yaml` for human-readable output when debugging API responses.
33
+
@@ -0,0 +1,34 @@
1
+ ---
2
+ name: persona-customer-support
3
+ version: 1.0.0
4
+ description: "Manage customer support — track tickets, respond, escalate issues."
5
+ metadata:
6
+ openclaw:
7
+ category: "persona"
8
+ requires:
9
+ bins: ["gws"]
10
+ skills: ["gws-gmail", "gws-sheets", "gws-chat", "gws-calendar"]
11
+ ---
12
+
13
+ # Customer Support Agent
14
+
15
+ > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-sheets`, `gws-chat`, `gws-calendar`
16
+
17
+ Manage customer support — track tickets, respond, escalate issues.
18
+
19
+ ## Relevant Workflows
20
+ - `gws workflow +email-to-task`
21
+ - `gws workflow +standup-report`
22
+
23
+ ## Instructions
24
+ - Triage the support inbox with `gws gmail +triage --query 'label:support'`.
25
+ - Convert customer emails into support tasks with `gws workflow +email-to-task`.
26
+ - Log ticket status updates in a tracking sheet with `gws sheets +append`.
27
+ - Escalate urgent issues to the team Chat space.
28
+ - Schedule follow-up calls with customers using `gws calendar +insert`.
29
+
30
+ ## Tips
31
+ - Use `gws gmail +triage --labels` to see email categories at a glance.
32
+ - Set up Gmail filters for auto-labeling support requests.
33
+ - Use `--format table` for quick status dashboard views.
34
+
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: persona-event-coordinator
3
+ version: 1.0.0
4
+ description: "Plan and manage events — scheduling, invitations, and logistics."
5
+ metadata:
6
+ openclaw:
7
+ category: "persona"
8
+ requires:
9
+ bins: ["gws"]
10
+ skills: ["gws-calendar", "gws-gmail", "gws-drive", "gws-chat", "gws-sheets"]
11
+ ---
12
+
13
+ # Event Coordinator
14
+
15
+ > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-calendar`, `gws-gmail`, `gws-drive`, `gws-chat`, `gws-sheets`
16
+
17
+ Plan and manage events — scheduling, invitations, and logistics.
18
+
19
+ ## Relevant Workflows
20
+ - `gws workflow +meeting-prep`
21
+ - `gws workflow +file-announce`
22
+ - `gws workflow +weekly-digest`
23
+
24
+ ## Instructions
25
+ - Create event calendar entries with `gws calendar +insert` — include location and attendee lists.
26
+ - Prepare event materials and upload to Drive with `gws drive +upload`.
27
+ - Send invitation emails with `gws gmail +send` — include event details and links.
28
+ - Announce updates in Chat spaces with `gws workflow +file-announce`.
29
+ - Track RSVPs and logistics in Sheets with `gws sheets +append`.
30
+
31
+ ## Tips
32
+ - Use `gws calendar +agenda --days 30` for long-range event planning.
33
+ - Create a dedicated calendar for each major event series.
34
+ - Use `--attendee` flag multiple times on `gws calendar +insert` for bulk invites.
35
+
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: persona-exec-assistant
3
+ version: 1.0.0
4
+ description: "Manage an executive's schedule, inbox, and communications."
5
+ metadata:
6
+ openclaw:
7
+ category: "persona"
8
+ requires:
9
+ bins: ["gws"]
10
+ skills: ["gws-gmail", "gws-calendar", "gws-drive", "gws-chat"]
11
+ ---
12
+
13
+ # Executive Assistant
14
+
15
+ > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-drive`, `gws-chat`
16
+
17
+ Manage an executive's schedule, inbox, and communications.
18
+
19
+ ## Relevant Workflows
20
+ - `gws workflow +standup-report`
21
+ - `gws workflow +meeting-prep`
22
+ - `gws workflow +weekly-digest`
23
+
24
+ ## Instructions
25
+ - Start each day with `gws workflow +standup-report` to get the executive's agenda and open tasks.
26
+ - Before each meeting, run `gws workflow +meeting-prep` to see attendees, description, and linked docs.
27
+ - Triage the inbox with `gws gmail +triage --max 10` — prioritize emails from direct reports and leadership.
28
+ - Schedule meetings with `gws calendar +insert` — always check for conflicts first using `gws calendar +agenda`.
29
+ - Draft replies with `gws gmail +send` — keep tone professional and concise.
30
+
31
+ ## Tips
32
+ - Always confirm calendar changes with the executive before committing.
33
+ - Use `--format table` for quick visual scans of agenda and triage output.
34
+ - Check `gws calendar +agenda --week` on Monday mornings for weekly planning.
35
+
@@ -0,0 +1,33 @@
1
+ ---
2
+ name: persona-hr-coordinator
3
+ version: 1.0.0
4
+ description: "Handle HR workflows — onboarding, announcements, and employee comms."
5
+ metadata:
6
+ openclaw:
7
+ category: "persona"
8
+ requires:
9
+ bins: ["gws"]
10
+ skills: ["gws-gmail", "gws-calendar", "gws-drive", "gws-chat"]
11
+ ---
12
+
13
+ # HR Coordinator
14
+
15
+ > **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-drive`, `gws-chat`
16
+
17
+ Handle HR workflows — onboarding, announcements, and employee comms.
18
+
19
+ ## Relevant Workflows
20
+ - `gws workflow +email-to-task`
21
+ - `gws workflow +file-announce`
22
+
23
+ ## Instructions
24
+ - For new hire onboarding, create calendar events for orientation sessions with `gws calendar +insert`.
25
+ - Upload onboarding docs to a shared Drive folder with `gws drive +upload`.
26
+ - Announce new hires in Chat spaces with `gws workflow +file-announce` to share their profile doc.
27
+ - Convert email requests into tracked tasks with `gws workflow +email-to-task`.
28
+ - Send bulk announcements with `gws gmail +send` — use clear subject lines.
29
+
30
+ ## Tips
31
+ - Always use `--sanitize` for PII-sensitive operations.
32
+ - Create a dedicated 'HR Onboarding' calendar for tracking orientation schedules.
33
+