Install
$ agentstack add skill-maxandersen-skills-jgccli ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Google Calendar CLI (Java)
Command-line interface for Google Calendar operations. Java port of gccli.
Source: https://github.com/maxandersen/jgccli
Installation
Option 1: Run directly with JBang (no install)
jbang jgccli@maxandersen/skills --help
Option 2: Install as command
jbang app install jgccli@maxandersen/skills
jgccli --help
Setup
Google Cloud Console (one-time)
- Create a new project (or select existing)
- Enable the Google Calendar API
- Set app name in OAuth branding
- Add test users (all Gmail addresses you want to use)
- Create OAuth client:
- Click "Create Client"
- Application type: "Desktop app"
- Download the JSON file
Configure jgccli
First check if already configured:
jgccli accounts list
If no accounts, guide the user through setup:
- Ask if they have a Google Cloud project with Calendar API enabled
- If not, walk them through the Google Cloud Console steps above
- Have them download the OAuth credentials JSON
- Run:
jgccli accounts credentials ~/path/to/credentials.json - Run:
jgccli accounts add(use--manualfor browserless OAuth)
Shared Credentials
Credentials in ~/.jgcli/ are shared across jgccli, jgmcli, and jgdcli. Set up once, use with all three.
For separate credentials, use named credentials:
jgccli accounts credentials ~/work-creds.json --name work
jgccli accounts add work@company.com --credentials work
Usage
Run jgccli --help for full command reference.
Common operations:
jgccli calendars- List all calendarsjgccli events [--from ] [--to ]- List eventsjgccli event- Get event detailsjgccli create --summary --start --end- Create eventjgccli freebusy --from --to- Check availability
Use primary as calendarId for the main calendar.
Attendees
# Required and optional attendees
jgccli create primary --summary "Meeting" --start --end \
--attendees required@x.com,also@x.com \
--optional-attendees maybe@x.com,fyi@x.com
Date/Time Format
- Timed events:
YYYY-MM-DDTHH:MM:SSZ(UTC) orYYYY-MM-DDTHH:MM:SS(local) - All-day events:
YYYY-MM-DDwith--all-dayflag
Data Storage
~/.jgcli/credentials.json- OAuth client credentials (shared with jgmcli, jgdcli)~/.jgcli/accounts-calendar.json- Account tokens
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: maxandersen
- Source: maxandersen/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.