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 tubecreate/tubecli --skill calendar_managergit clone --depth 1 https://github.com/tubecreate/tubecliWrote 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/tubecreate/tubecli/calendar_manager)<a href="https://agentmods.dev/skills/tubecreate/tubecli/calendar_manager"><img src="https://agentmods.dev/badge/skills/tubecreate/tubecli/calendar_manager/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/tubecreate/tubecli/calendar_manager"><img src="https://agentmods.dev/badge/skills/tubecreate/tubecli/calendar_manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 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 Tool Misuse · line 51 Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
- medium Rogue Agent · line 10 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.00019 | $0.00651 |
| Opus 5 | $0.00010 | $0.00326 |
| Sonnet 5 | $0.00004 | $0.00130 |
| Haiku 4.5 | $0.00002 | $0.00065 |
Grade A, and why
calendar_manager 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 11d 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 — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Calendar Manager Extension
This core extension manages Google Calendar events. It uses OAuth credentials from Auth Manager to interact with Google Calendar API. AI agents and Telegram chat can use it to schedule daily tasks, livestreams, meetings, etc.
Usage from Other Extensions
from tubecli.extensions.calendar_manager.extension import calendar_manager
# List upcoming events
events = calendar_manager.list_events(cred_id="cred_xxx", time_min="2026-04-01T00:00:00Z")
# Create a new event
result = calendar_manager.create_event(
cred_id="cred_xxx",
summary="Livestream Daily",
start="2026-04-03T20:00:00+07:00",
end="2026-04-03T22:00:00+07:00",
description="Daily livestream session",
recurrence=["RRULE:FREQ=DAILY;COUNT=30"],
)
# Quick add from natural language
result = calendar_manager.quick_add(cred_id="cred_xxx", text="Meeting tomorrow 10am-11am")
# Delete an event
calendar_manager.delete_event(cred_id="cred_xxx", event_id="abc123")
Recurring Events (RRULE)
Use Google Calendar RRULE format:
- Daily:
RRULE:FREQ=DAILY - Weekly:
RRULE:FREQ=WEEKLY;BYDAY=MO,WE,FR - Monthly:
RRULE:FREQ=MONTHLY;BYMONTHDAY=1 - Daily for 30 days:
RRULE:FREQ=DAILY;COUNT=30
API Endpoints
GET /api/v1/calendar/calendars— List calendarsGET /api/v1/calendar/events— List events (query: calendar_id, time_min, time_max, max_results)POST /api/v1/calendar/events— Create event (supports recurrence)PUT /api/v1/calendar/events/{event_id}— Update eventDELETE /api/v1/calendar/events/{event_id}— Delete eventPOST /api/v1/calendar/quick-add— Quick add from text
Telegram Integration
When user chats in Telegram, AI can schedule events by outputting:
{"action": "schedule_event", "summary": "Livestream", "start": "2026-04-03T20:00:00+07:00", "end": "2026-04-03T22:00:00+07:00", "recurrence": "RRULE:FREQ=DAILY"}
The system will automatically use the default_calendar_email from global settings.
CLI Commands
What ships with it
13 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.
- __init__.py 316 B runs code
- commands.py 6.2 KB runs code
- extension.py 25 KB runs code
- locales/en.json 3.4 KB
- locales/es.json 3.8 KB
- locales/ja.json 4.1 KB
- locales/ko.json 3.7 KB
- locales/ru.json 5.2 KB
- locales/tr.json 3.7 KB
- locales/vi.json 3.1 KB
- locales/zh-TW.json 3.4 KB
- locales/zh.json 3.3 KB
- routes.py 7.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.
- 11d ago First seen · 69 lines · 19 tokens per session scan A 9f428c719c21
calendar_manager is a skill published in the GitHub repository tubecreate/tubecli (167 stars, last pushed today), licensed MIT. It adds 19 tokens to every session and 651 once invoked, about $0.0001 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
cloud_api
Manages cloud AI provider API keys for Gemini, OpenAI, Claude, DeepSeek, Grok.
multi_agents
Enables multi-agent collaboration through teams, task delegation, and coordinated workflows.
auth_manager
Manage OAuth credentials & tokens for Google, Facebook, TikTok.
Browser Automation
Core browser automation features including profile management, fingerprint spoofing, and AI interaction.
ollama_manager
Manages local Ollama AI models for agents to use without cloud API keys.
automation-guide
A guide for DeterminFlow Cron automations, which run agents or tasks once or on a repeating schedule.