agentio-gscript

Manage Google Apps Script projects through the agentio CLI.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-gscript-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-gscript
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-gscript
Command: npx skills add https://github.com/plosson/agentio --skill agentio-gscript-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Google Apps Script projects normally requires the browser-based editor or a separate clasp setup, which breaks automation workflows. This Skill lets you create, inspect, pull, push, and delete Apps Script projects directly from the agentio CLI, making script management scriptable and CI-friendly. ## Core Features & Use Cases - Project Lifecycle Management: Create standalone or container-bound script projects, list them, read metadata, and delete them via simple commands. - Local File Sync: Pull all script files (.gs, .html, appsscript.json) into a local directory with a .clasp.json marker, then push changes back with automatic type inference. - Single-File Operations: Read or replace individual script files inline, from a local path, or via stdin. - Use Case: Bind a new script to a Google Sheet, pull its files locally, edit Code.gs in your editor, and push the update — all without opening the Apps Script editor. ## Quick Start Use the agentio gscript skill to create a standalone Apps Script project titled "Helper Library" and then list all my script projects.

Frequently Asked Questions about agentio-gscript

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

FAQPage Schema
How do I create a Google Apps Script project from the command line?▼

Run agentio gscript create with a --title flag to create a standalone project, or add --parent with a Drive file ID to bind it to a Sheet, Doc, Form, or Slides container. The --profile flag selects which authenticated account to use.

How to sync Apps Script files between local directory and Google?▼

Use agentio gscript pull with the script ID to download all files including a .clasp.json marker, edit locally, then run agentio gscript push to upload changes. Push skips hidden files and fails if appsscript.json is missing.

Can I bind an Apps Script project to a Google Sheet via CLI?▼

Yes, pass the Sheet's Drive file ID with the --parent flag when running agentio gscript create. The same --parent flag on gscript list filters projects bound to that container.

Does agentio gscript support updating a single script file?▼

Yes, agentio gscript put replaces or adds one file using --source for inline content, --from for a local path, or stdin. File type is inferred from the extension: .gs becomes SERVER_JS, .html becomes HTML.

Why does agentio gscript push fail on my directory?▼

Push fails when appsscript.json is missing from the directory, since the manifest is required by the Apps Script API. It also relies on .clasp.json for the scriptId unless you override it with the --id flag.