wadewarren/gws-claude-plugin

recipe-create-expense-tracker

Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries.

First seen Mar 20, 2026

Installation

$ npx skills add wadewarren/gws-claude-plugin --skill recipe-create-expense-tracker

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from wadewarren/gws-claude-plugin · top by installs.

npx skills add wadewarren/gws-claude-plugin

Browse all from wadewarren/gws-claude-plugin

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 38
License LICENSE
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Declared agents clawdbot
More metadata
openclaw
{"category":"recipe","domain":"productivity","requires":{"bins":["gws"],"skills":["gws-sheets","gws-drive"]}}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,164 B
  • docs SUMMARY.md 127 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 19 installs

SKILL.md

Create a Google Sheets Expense Tracker

PREREQUISITE: Load the following skills to execute this recipe: gws-sheets, gws-drive

Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries.

Steps

  1. Create spreadsheet: gws drive files create --json '{"name": "Expense Tracker 2025", "mimeType": "application/vnd.google-apps.spreadsheet"}'
  2. Add headers: gws sheets +append --spreadsheet SHEET_ID --range 'Sheet1' --json-values '[["Date", "Category", "Description", "Amount"]]'
  3. Add first entry: gws sheets +append --spreadsheet SHEET_ID --range 'Sheet1' --json-values '[["2025-01-15", "Travel", "Flight to NYC", "450.00"]]'
  4. Share with manager: gws drive permissions create --params '{"fileId": "SHEET_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "[email protected]"}'