# Send Praxis Google Workspace to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "praxis-gws",
    "name": "Praxis Google Workspace",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/JFab68/praxis-gws",
    "canonicalUrl": "https://clawhub.ai/JFab68/praxis-gws",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/praxis-gws",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=praxis-gws",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/praxis-gws.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/praxis-gws"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/praxis-gws",
    "downloadUrl": "https://openagent3.xyz/downloads/praxis-gws",
    "agentUrl": "https://openagent3.xyz/skills/praxis-gws/agent",
    "manifestUrl": "https://openagent3.xyz/skills/praxis-gws/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/praxis-gws/agent.md"
  }
}
```
## Documentation

### Praxis Google Workspace CLI

Official Google APIs wrapper for Gmail, Calendar, and Drive. Direct connection to Google — no third-party proxy.

### 1. Create Google Cloud Project

Go to https://console.cloud.google.com
Create a new project
Enable these APIs:

Gmail API
Google Calendar API
Google Drive API

### 2. Create OAuth Credentials

Go to APIs & Services → Credentials
Click Create Credentials → OAuth client ID
Application type: Desktop app
Download the JSON file

### 3. Configure the CLI

praxis-gws auth credentials /path/to/client_secret.json

### 4. Authenticate

praxis-gws gmail labels

This will output a Google OAuth URL. Open it in your browser, authorize the app, and paste the authorization code back.

### Gmail Commands

Search messages:

praxis-gws gmail search "is:unread from:example.com"
praxis-gws gmail search "subject:meeting has:attachment" --max 20

Get message:

praxis-gws gmail get <messageId>

Send email:

praxis-gws gmail send "recipient@example.com" "Subject" "Body text"

Create draft:

praxis-gws gmail draft "recipient@example.com" "Subject" "Draft body"

List labels:

praxis-gws gmail labels

Modify labels:

praxis-gws gmail modify <messageId> --add STARRED --remove UNREAD

### Calendar Commands

List events:

praxis-gws calendar list primary --max 10
praxis-gws calendar list primary --from "2026-02-22T00:00:00" --to "2026-03-01T23:59:59"

Create event:

praxis-gws calendar create primary "Meeting Title" \\
  --from "2026-02-25T14:00:00" \\
  --to "2026-02-25T15:00:00"

### Drive Commands

Search files:

praxis-gws drive search "name contains 'project'"
praxis-gws drive search "mimeType = 'application/vnd.google-apps.document'"

Get file metadata:

praxis-gws drive get <fileId>

### Gmail Search Operators

is:unread - Unread messages
is:starred - Starred messages
from:email@example.com - From specific sender
to:email@example.com - To specific recipient
subject:keyword - Subject contains keyword
after:2026/01/01 - After date
before:2026/12/31 - Before date
has:attachment - Has attachments
in:inbox - In inbox
label:important - With specific label

### Common Labels

INBOX - Inbox
SENT - Sent mail
DRAFT - Drafts
STARRED - Starred
UNREAD - Unread
IMPORTANT - Important
TRASH - Trash
SPAM - Spam

### Security

OAuth tokens stored locally in ~/.config/praxis-gws/
Direct API connection to Google (no proxy)
Uses official googleapis Node.js library
Required scopes:

https://www.googleapis.com/auth/gmail.modify
https://www.googleapis.com/auth/calendar
https://www.googleapis.com/auth/drive.readonly

### Troubleshooting

Error: credentials.json not found
→ Run praxis-gws auth credentials /path/to/client_secret.json

Error: Invalid grant / Token expired
→ Delete ~/.config/praxis-gws/token.json and re-run to trigger new OAuth flow

"Google hasn't verified this app" warning
→ Click Advanced → Go to [project name] (unsafe) to proceed

### CLI Script

The CLI is available at:

scripts/praxis-gws.js

Requires Node.js and the googleapis npm package:

npm install -g googleapis
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JFab68
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/praxis-gws)
- [Send to Agent page](https://openagent3.xyz/skills/praxis-gws/agent)
- [JSON manifest](https://openagent3.xyz/skills/praxis-gws/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/praxis-gws/agent.md)
- [Download page](https://openagent3.xyz/downloads/praxis-gws)