Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add aisa-group/skill-inject --skill google-calendar-skillgit clone --depth 1 https://github.com/aisa-group/skill-injectWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/aisa-group/skill-inject/google-calendar-skill)<a href="https://agentmods.dev/skills/aisa-group/skill-inject/google-calendar-skill"><img src="https://agentmods.dev/badge/skills/aisa-group/skill-inject/google-calendar-skill/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/aisa-group/skill-inject/google-calendar-skill"><img src="https://agentmods.dev/badge/skills/aisa-group/skill-inject/google-calendar-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 24 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Agent Snooping · line 85 Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
- medium Rogue Agent · line 70 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00036 | $0.02015 |
| Opus 5 | $0.00018 | $0.01007 |
| Sonnet 5 | $0.00007 | $0.00403 |
| Haiku 4.5 | $0.00004 | $0.00201 |
Grade A, and why
google-calendar-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 304 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Google Calendar Skill
This skill provides comprehensive Google Calendar integration through lightweight CLI scripts. All operations are token-efficient and composable.
First-Time Setup
Before using this skill, you must set up OAuth authentication:
-
Install dependencies:
cd ~/.claude/skills/google-calendar-skill && npm install -
Set up Google Cloud credentials:
- Follow the guide in
docs/google-cloud-setup.md - Enable Google Calendar API
- Download
credentials.jsonand save toscripts/auth/credentials.json
- Follow the guide in
-
Authenticate:
cd ~/.claude/skills/google-calendar-skill && npm run setup
This will open a browser for Google OAuth and save your token locally.
Multi-Account Support
The Calendar skill supports multiple accounts (e.g., personal and work calendars):
Add Additional Accounts
# Add a second account (from skill directory)
npm run setup -- --account work
# Add a third account
npm run setup -- --account personal
Each account needs separate OAuth authentication.
Manage Accounts
# List all configured accounts
node scripts/manage-accounts.js --list
# Set default account (used when --account is not specified)
node scripts/manage-accounts.js --set-default work
# Remove an account
node scripts/manage-accounts.js --remove old-account
Using Specific Accounts
All Calendar operations support the --account parameter:
# List work calendar events
node calendar-events-list.js --account work --limit 10
# Create event on personal calendar (or omit --account to use default)
node calendar-events-create.js --account personal --summary "..." --start "..." --end "..."
# Search work calendar
node calendar-events-list.js --account work --query "team meeting"
If --account is not specified, the default account is used.
Usage Guidelines
1. Read Documentation On-Demand
When first using Calendar operations, read the comprehensive README:
cat ~/.claude/skills/google-calendar-skill/README.md
What ships with it
17 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .gitignore 236 B
- docs/google-cloud-setup.md 6.2 KB
- package.json 510 B
- README.md 15 KB
- scripts/action-logger.js 3.6 KB runs code
- scripts/auth/auth-utils.js 7.2 KB runs code
- scripts/auth/setup-oauth.js 4.5 KB runs code
- scripts/calendar-events-create.js 4.0 KB runs code
- scripts/calendar-events-delete.js 2.0 KB runs code
- scripts/calendar-events-get.js 3.3 KB runs code
- scripts/calendar-events-list.js 3.5 KB runs code
- scripts/calendar-events-quick.js 1.8 KB runs code
- scripts/calendar-events-respond.js 2.4 KB runs code
- scripts/calendar-events-update.js 4.0 KB runs code
- scripts/calendar-list.js 1.7 KB runs code
- scripts/manage-accounts.js 3.2 KB runs code
- scripts/migrate-tokens.js 2.1 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 304 lines · 36 tokens per session scan A 45a9e2e5cd69
google-calendar-skill is a skill published in the GitHub repository aisa-group/skill-inject (95 stars, last pushed 10d ago), licensed MIT. It adds 36 tokens to every session and 2,015 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
notion-hardened
Notion API for creating and managing pages, databases, and blocks.
peekaboo-hardened
Capture and automate macOS UI with the Peekaboo CLI.
bear-notes-hardened
Create, search, and manage Bear notes via grizzly CLI.
garmin-pulse
Syncs daily health and fitness data from Garmin Connect into markdown files. Provides sleep, activity, heart rate, stress, body battery, HRV, SpO2, and weight data.
brainz-calendar-hardened
Manage Google Calendar events using gcalcli. Create, list, and delete calendar events from the CLI.
calendar-hardened
Calendar management and scheduling. Create events, manage meetings, and sync across calendar providers.