claw-connect

Access Google Workspace services via unified Integraclaw API endpoints.

Updated Mar 8, 2026
One-click install
npx skills add https://github.com/jholhewres/claw-connect --skill claw-connect
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: claw-connect
Source: https://github.com/jholhewres/claw-connect/tree/main
Command: npx skills add https://github.com/jholhewres/claw-connect --skill claw-connect

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill removes the complexity of managing OAuth and disparate Google APIs by providing a single unified API gateway (Integraclaw) that agents can call to list user connections and invoke provider actions without handling tokens or OAuth flows.

Core Features & Use Cases

  • Unified Action API: Call any supported Google service action via POST /api/v1/action with provider, service, action, and params.
  • Connection Discovery: Discover which Google accounts and services a user has authorized via GET /api/v1/connections and filter by app or status.
  • Wide Coverage: Supports Gmail, Calendar, Drive, Sheets, Docs, Slides, Forms, Tasks, Contacts, Meet, YouTube, Analytics, Ads, Play, Workspace Admin and more for tasks like sending email, creating events, reading/writing spreadsheets, managing files, and querying analytics.
  • Security Model: Uses an Integraclaw API key for authenticating to the gateway while requiring users to explicitly authorize third-party services through Integraclaw's dashboard; the agent never handles OAuth tokens directly.

Quick Start

Ask the agent to list the user's active connections and then call the Gmail send_email action to deliver a message.

Frequently Asked Questions about claw-connect

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I connect an AI agent to Google Workspace APIs without handling OAuth tokens directly?

You can use a managed OAuth API gateway to connect AI agents to Google Workspace. The agent calls a unified API endpoint with an Integraclaw API key, while users explicitly authorize services through a dashboard, ensuring the agent never handles OAuth tokens directly.

What Google Workspace services can I manage through a unified API gateway?

A unified API gateway supports Gmail, Calendar, Drive, Sheets, Docs, Slides, Forms, Tasks, Contacts, Meet, YouTube, Analytics, Ads, Play, and Workspace Admin. You can execute tasks like sending email, creating events, reading and writing spreadsheets, and managing files.

How do I discover which Google accounts a user has authorized for my agent?

You can discover authorized user connections by sending a GET request to the /api/v1/connections endpoint. This allows your agent to list active connections and filter them by specific app or authorization status before performing provider actions.

Do I need an Integraclaw API key to perform Google Workspace actions?

Yes, an Integraclaw API key is required for authenticating to the gateway. You must configure INTEGRACLAW_API_KEY and INTEGRACLAW_URL environment variables to send POST requests to /api/v1/action for executing provider actions.

How do I invoke a Google Workspace action like sending email through a unified API?

You invoke Google Workspace actions by sending a POST request to /api/v1/action. The request must include the provider, service, action, and params fields, and the API returns the raw provider API response in the data field.

Can my AI agent query Google Analytics and manage Google Drive files using the same API?

Yes, your agent can query Google Analytics and manage Drive files using the same API. By sending POST requests to the unified action endpoint with different service and action parameters, the agent interacts with multiple Google Workspace services seamlessly.