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.
- package/index.js +393 -0
- package/package.json +31 -0
- package/templates/CLAUDE.md +108 -0
- package/templates/app/.env.local.example +14 -0
- package/templates/app/ecosystem.config.js +29 -0
- package/templates/app/next-env.d.ts +6 -0
- package/templates/app/next.config.ts +16 -0
- package/templates/app/package-lock.json +4581 -0
- package/templates/app/package.json +38 -0
- package/templates/app/postcss.config.js +5 -0
- package/templates/app/src/app/agents/[slug]/chat/loading.tsx +26 -0
- package/templates/app/src/app/agents/[slug]/chat/page.tsx +579 -0
- package/templates/app/src/app/agents/[slug]/loading.tsx +19 -0
- package/templates/app/src/app/agents/page.tsx +8 -0
- package/templates/app/src/app/api/agents/[slug]/capabilities/route.ts +11 -0
- package/templates/app/src/app/api/agents/[slug]/route.ts +57 -0
- package/templates/app/src/app/api/agents/route.ts +28 -0
- package/templates/app/src/app/api/ai/generate-agent/route.ts +87 -0
- package/templates/app/src/app/api/ai/improve-claude-md/route.ts +78 -0
- package/templates/app/src/app/api/ai/suggestions/route.ts +64 -0
- package/templates/app/src/app/api/ai/title/route.ts +88 -0
- package/templates/app/src/app/api/auth/role/route.ts +17 -0
- package/templates/app/src/app/api/commands/[slug]/route.ts +61 -0
- package/templates/app/src/app/api/commands/route.ts +6 -0
- package/templates/app/src/app/api/governance/costs/route.ts +117 -0
- package/templates/app/src/app/api/governance/sessions/route.ts +335 -0
- package/templates/app/src/app/api/notifications/route.ts +62 -0
- package/templates/app/src/app/api/preferences/route.ts +44 -0
- package/templates/app/src/app/api/runs/[id]/approve/route.ts +38 -0
- package/templates/app/src/app/api/runs/[id]/events/route.ts +28 -0
- package/templates/app/src/app/api/runs/[id]/metadata/route.ts +30 -0
- package/templates/app/src/app/api/runs/[id]/route.ts +21 -0
- package/templates/app/src/app/api/runs/[id]/start/route.ts +61 -0
- package/templates/app/src/app/api/runs/[id]/stop/route.ts +16 -0
- package/templates/app/src/app/api/runs/[id]/stream/route.ts +201 -0
- package/templates/app/src/app/api/runs/route.ts +95 -0
- package/templates/app/src/app/api/schedules/[id]/route.ts +81 -0
- package/templates/app/src/app/api/schedules/route.ts +75 -0
- package/templates/app/src/app/api/settings/access-logs/route.ts +33 -0
- package/templates/app/src/app/api/settings/claude-md/route.ts +44 -0
- package/templates/app/src/app/api/settings/env-keys/route.ts +271 -0
- package/templates/app/src/app/api/settings/users/route.ts +108 -0
- package/templates/app/src/app/api/skills/[slug]/route.ts +43 -0
- package/templates/app/src/app/api/skills/route.ts +6 -0
- package/templates/app/src/app/api/tools/route.ts +65 -0
- package/templates/app/src/app/api/uploads/cleanup/route.ts +29 -0
- package/templates/app/src/app/api/uploads/route.ts +77 -0
- package/templates/app/src/app/auth/callback/route.ts +19 -0
- package/templates/app/src/app/globals.css +115 -0
- package/templates/app/src/app/layout.tsx +24 -0
- package/templates/app/src/app/loading.tsx +16 -0
- package/templates/app/src/app/login/page.tsx +64 -0
- package/templates/app/src/app/not-authorized/page.tsx +33 -0
- package/templates/app/src/app/runs/page.tsx +55 -0
- package/templates/app/src/app/schedules/page.tsx +110 -0
- package/templates/app/src/app/settings/page.tsx +1294 -0
- package/templates/app/src/app/skills/page.tsx +7 -0
- package/templates/app/src/components/agent-card.tsx +58 -0
- package/templates/app/src/components/agent-grid.tsx +90 -0
- package/templates/app/src/components/auth/auth-context.tsx +79 -0
- package/templates/app/src/components/chat-thread.tsx +50 -0
- package/templates/app/src/components/chat-view.tsx +670 -0
- package/templates/app/src/components/commands-browser.tsx +349 -0
- package/templates/app/src/components/create-agent-modal.tsx +388 -0
- package/templates/app/src/components/governance-dashboard.tsx +397 -0
- package/templates/app/src/components/icons.tsx +401 -0
- package/templates/app/src/components/layout/agent-sidebar.tsx +504 -0
- package/templates/app/src/components/layout/app-shell.tsx +29 -0
- package/templates/app/src/components/layout/nav.tsx +87 -0
- package/templates/app/src/components/layout/overview-inner.tsx +14 -0
- package/templates/app/src/components/layout/profile-menu.tsx +95 -0
- package/templates/app/src/components/layout/sidebar.tsx +30 -0
- package/templates/app/src/components/markdown.tsx +57 -0
- package/templates/app/src/components/message-bar.tsx +161 -0
- package/templates/app/src/components/notifications/notification-bell.tsx +104 -0
- package/templates/app/src/components/notifications/notification-panel.tsx +116 -0
- package/templates/app/src/components/overview/overview-content.tsx +287 -0
- package/templates/app/src/components/overview/overview-context.tsx +88 -0
- package/templates/app/src/components/preferences-modal.tsx +112 -0
- package/templates/app/src/components/run-form.tsx +73 -0
- package/templates/app/src/components/run-history-table.tsx +226 -0
- package/templates/app/src/components/run-output.tsx +187 -0
- package/templates/app/src/components/schedule-form.tsx +148 -0
- package/templates/app/src/components/skills-browser.tsx +338 -0
- package/templates/app/src/components/tool-tooltip.tsx +82 -0
- package/templates/app/src/hooks/use-sse.ts +115 -0
- package/templates/app/src/instrumentation.ts +9 -0
- package/templates/app/src/lib/agent-cache.ts +19 -0
- package/templates/app/src/lib/agent-runner.ts +411 -0
- package/templates/app/src/lib/agents.ts +168 -0
- package/templates/app/src/lib/ai.ts +40 -0
- package/templates/app/src/lib/approval-store.ts +70 -0
- package/templates/app/src/lib/auth-guard.ts +116 -0
- package/templates/app/src/lib/capabilities.ts +191 -0
- package/templates/app/src/lib/line-diff.ts +96 -0
- package/templates/app/src/lib/queue.ts +22 -0
- package/templates/app/src/lib/redis.ts +12 -0
- package/templates/app/src/lib/role-permissions.ts +166 -0
- package/templates/app/src/lib/run-agent.ts +442 -0
- package/templates/app/src/lib/supabase-browser.ts +8 -0
- package/templates/app/src/lib/supabase-middleware.ts +63 -0
- package/templates/app/src/lib/supabase-server.ts +28 -0
- package/templates/app/src/lib/supabase.ts +6 -0
- package/templates/app/src/lib/tool-descriptions.ts +29 -0
- package/templates/app/src/lib/types.ts +73 -0
- package/templates/app/src/lib/typewriter-animation.ts +159 -0
- package/templates/app/src/middleware.ts +13 -0
- package/templates/app/tsconfig.json +21 -0
- package/templates/app/uploads/.gitkeep +0 -0
- package/templates/app/worker/index.ts +342 -0
- package/templates/claude/agents/ai-trends-scout.md +66 -0
- package/templates/claude/commands/add-to-todos.md +56 -0
- package/templates/claude/commands/check-todos.md +56 -0
- package/templates/claude/hooks/auto-approve-safe.sh +34 -0
- package/templates/claude/hooks/auto-format.sh +25 -0
- package/templates/claude/hooks/block-destructive.sh +32 -0
- package/templates/claude/hooks/compaction-preserver.sh +16 -0
- package/templates/claude/hooks/notify.sh +26 -0
- package/templates/claude/settings.local.json +66 -0
- package/templates/claude/skills/frontend-design/SKILL.md +127 -0
- package/templates/claude/skills/frontend-design/reference/color-and-contrast.md +132 -0
- package/templates/claude/skills/frontend-design/reference/interaction-design.md +123 -0
- package/templates/claude/skills/frontend-design/reference/motion-design.md +99 -0
- package/templates/claude/skills/frontend-design/reference/responsive-design.md +114 -0
- package/templates/claude/skills/frontend-design/reference/spatial-design.md +100 -0
- package/templates/claude/skills/frontend-design/reference/typography.md +131 -0
- package/templates/claude/skills/frontend-design/reference/ux-writing.md +107 -0
- package/templates/claude/skills/gws-admin-reports/SKILL.md +57 -0
- package/templates/claude/skills/gws-calendar/SKILL.md +108 -0
- package/templates/claude/skills/gws-calendar-agenda/SKILL.md +52 -0
- package/templates/claude/skills/gws-calendar-insert/SKILL.md +55 -0
- package/templates/claude/skills/gws-chat/SKILL.md +73 -0
- package/templates/claude/skills/gws-chat-send/SKILL.md +49 -0
- package/templates/claude/skills/gws-classroom/SKILL.md +75 -0
- package/templates/claude/skills/gws-docs/SKILL.md +48 -0
- package/templates/claude/skills/gws-docs-write/SKILL.md +49 -0
- package/templates/claude/skills/gws-drive/SKILL.md +137 -0
- package/templates/claude/skills/gws-drive-upload/SKILL.md +52 -0
- package/templates/claude/skills/gws-events/SKILL.md +67 -0
- package/templates/claude/skills/gws-events-renew/SKILL.md +48 -0
- package/templates/claude/skills/gws-events-subscribe/SKILL.md +59 -0
- package/templates/claude/skills/gws-forms/SKILL.md +45 -0
- package/templates/claude/skills/gws-gmail/SKILL.md +59 -0
- package/templates/claude/skills/gws-gmail-forward/SKILL.md +53 -0
- package/templates/claude/skills/gws-gmail-reply/SKILL.md +56 -0
- package/templates/claude/skills/gws-gmail-reply-all/SKILL.md +60 -0
- package/templates/claude/skills/gws-gmail-send/SKILL.md +55 -0
- package/templates/claude/skills/gws-gmail-triage/SKILL.md +50 -0
- package/templates/claude/skills/gws-gmail-watch/SKILL.md +58 -0
- package/templates/claude/skills/gws-keep/SKILL.md +48 -0
- package/templates/claude/skills/gws-meet/SKILL.md +51 -0
- package/templates/claude/skills/gws-modelarmor/SKILL.md +42 -0
- package/templates/claude/skills/gws-modelarmor-create-template/SKILL.md +53 -0
- package/templates/claude/skills/gws-modelarmor-sanitize-prompt/SKILL.md +48 -0
- package/templates/claude/skills/gws-modelarmor-sanitize-response/SKILL.md +48 -0
- package/templates/claude/skills/gws-people/SKILL.md +67 -0
- package/templates/claude/skills/gws-shared/SKILL.md +66 -0
- package/templates/claude/skills/gws-sheets/SKILL.md +53 -0
- package/templates/claude/skills/gws-sheets-append/SKILL.md +51 -0
- package/templates/claude/skills/gws-sheets-read/SKILL.md +47 -0
- package/templates/claude/skills/gws-slides/SKILL.md +43 -0
- package/templates/claude/skills/gws-tasks/SKILL.md +56 -0
- package/templates/claude/skills/gws-workflow/SKILL.md +44 -0
- package/templates/claude/skills/gws-workflow-email-to-task/SKILL.md +47 -0
- package/templates/claude/skills/gws-workflow-file-announce/SKILL.md +50 -0
- package/templates/claude/skills/gws-workflow-meeting-prep/SKILL.md +47 -0
- package/templates/claude/skills/gws-workflow-standup-report/SKILL.md +46 -0
- package/templates/claude/skills/gws-workflow-weekly-digest/SKILL.md +46 -0
- package/templates/claude/skills/persona-content-creator/SKILL.md +33 -0
- package/templates/claude/skills/persona-customer-support/SKILL.md +34 -0
- package/templates/claude/skills/persona-event-coordinator/SKILL.md +35 -0
- package/templates/claude/skills/persona-exec-assistant/SKILL.md +35 -0
- package/templates/claude/skills/persona-hr-coordinator/SKILL.md +33 -0
- package/templates/claude/skills/persona-it-admin/SKILL.md +30 -0
- package/templates/claude/skills/persona-project-manager/SKILL.md +35 -0
- package/templates/claude/skills/persona-researcher/SKILL.md +33 -0
- package/templates/claude/skills/persona-sales-ops/SKILL.md +35 -0
- package/templates/claude/skills/persona-team-lead/SKILL.md +36 -0
- package/templates/claude/skills/recipe-backup-sheet-as-csv/SKILL.md +25 -0
- package/templates/claude/skills/recipe-batch-invite-to-event/SKILL.md +25 -0
- package/templates/claude/skills/recipe-block-focus-time/SKILL.md +24 -0
- package/templates/claude/skills/recipe-bulk-download-folder/SKILL.md +25 -0
- package/templates/claude/skills/recipe-collect-form-responses/SKILL.md +25 -0
- package/templates/claude/skills/recipe-compare-sheet-tabs/SKILL.md +25 -0
- package/templates/claude/skills/recipe-copy-sheet-for-new-month/SKILL.md +25 -0
- package/templates/claude/skills/recipe-create-classroom-course/SKILL.md +25 -0
- package/templates/claude/skills/recipe-create-doc-from-template/SKILL.md +29 -0
- package/templates/claude/skills/recipe-create-events-from-sheet/SKILL.md +24 -0
- package/templates/claude/skills/recipe-create-expense-tracker/SKILL.md +26 -0
- package/templates/claude/skills/recipe-create-feedback-form/SKILL.md +25 -0
- package/templates/claude/skills/recipe-create-gmail-filter/SKILL.md +26 -0
- package/templates/claude/skills/recipe-create-meet-space/SKILL.md +25 -0
- package/templates/claude/skills/recipe-create-presentation/SKILL.md +25 -0
- package/templates/claude/skills/recipe-create-shared-drive/SKILL.md +25 -0
- package/templates/claude/skills/recipe-create-task-list/SKILL.md +26 -0
- package/templates/claude/skills/recipe-create-vacation-responder/SKILL.md +25 -0
- package/templates/claude/skills/recipe-draft-email-from-doc/SKILL.md +25 -0
- package/templates/claude/skills/recipe-email-drive-link/SKILL.md +25 -0
- package/templates/claude/skills/recipe-find-free-time/SKILL.md +25 -0
- package/templates/claude/skills/recipe-find-large-files/SKILL.md +24 -0
- package/templates/claude/skills/recipe-forward-labeled-emails/SKILL.md +27 -0
- package/templates/claude/skills/recipe-generate-report-from-sheet/SKILL.md +34 -0
- package/templates/claude/skills/recipe-label-and-archive-emails/SKILL.md +25 -0
- package/templates/claude/skills/recipe-log-deal-update/SKILL.md +25 -0
- package/templates/claude/skills/recipe-organize-drive-folder/SKILL.md +26 -0
- package/templates/claude/skills/recipe-plan-weekly-schedule/SKILL.md +26 -0
- package/templates/claude/skills/recipe-post-mortem-setup/SKILL.md +25 -0
- package/templates/claude/skills/recipe-reschedule-meeting/SKILL.md +25 -0
- package/templates/claude/skills/recipe-review-meet-participants/SKILL.md +25 -0
- package/templates/claude/skills/recipe-review-overdue-tasks/SKILL.md +25 -0
- package/templates/claude/skills/recipe-save-email-attachments/SKILL.md +26 -0
- package/templates/claude/skills/recipe-save-email-to-doc/SKILL.md +29 -0
- package/templates/claude/skills/recipe-schedule-recurring-event/SKILL.md +24 -0
- package/templates/claude/skills/recipe-send-team-announcement/SKILL.md +24 -0
- package/templates/claude/skills/recipe-share-doc-and-notify/SKILL.md +25 -0
- package/templates/claude/skills/recipe-share-event-materials/SKILL.md +25 -0
- package/templates/claude/skills/recipe-share-folder-with-team/SKILL.md +26 -0
- package/templates/claude/skills/recipe-sync-contacts-to-sheet/SKILL.md +25 -0
- package/templates/claude/skills/recipe-watch-drive-changes/SKILL.md +25 -0
- 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
|
+
|