mit einem Klick
google-calendar
Google Calendar via gws.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Google Calendar via gws.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Searches the web, fetches documentation, and searches GitHub code. Use when you need current information, documentation, or real-world code examples from the web.
Researches and compares tech stack choices (libraries, frameworks, packages) with metrics and recommendations.
web search API via Kagi CLI. Use when you need current information, documentation, page content, or to research topics on the web.
Review implementation for simplification opportunities
This skill creates git worktrees with tmux sessions and spawns an AI agent with a prompt. Triggers: "create a worktree", "new worktree", "worktree for branch", "spawn worktree", "parallel branch", "work on branch in new session", "worktree-branch script". Creates isolated worktree directories with an AI agent running automatically. Not for regular git branching or checkout operations.
This skill creates git worktrees with tmux sessions and spawns an AI agent with a prompt. Triggers: "create a worktree", "new worktree", "worktree for branch", "spawn worktree", "parallel branch", "work on branch in new session", "worktree-branch script". Creates isolated worktree directories with an AI agent running automatically. Not for regular git branching or checkout operations.
| name | google-calendar |
| description | Google Calendar via gws. |
Use gws for Google Calendar operations.
When you need the official generated skill docs, create a temp directory under /tmp/, run gws generate-skills there, concatenate the generated Calendar skill docs into one file, then read that file:
tmpdir="$(mktemp -d /tmp/gws-calendar.XXXXXX)"
combined="$tmpdir/gws-calendar.md"
(
cd "$tmpdir"
gws generate-skills
shopt -s nullglob
: > "$combined"
for file in skills/gws-calendar*/SKILL.md; do
printf '\n\n%s\n\n' "--- $file ---" >> "$combined"
cat "$file" >> "$combined"
done
)
You only need to read this:
$tmpdir/gws-calendar.md