ワンクリックで
gmail
Gmail via gws.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Gmail via gws.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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 | gmail |
| description | Gmail via gws. |
Use gws for Gmail operations.
When you need the official generated skill docs, create a temp directory under /tmp/, run gws generate-skills there, concatenate the generated Gmail skill docs into one file, then read that file:
tmpdir="$(mktemp -d /tmp/gws-gmail.XXXXXX)"
combined="$tmpdir/gws-gmail.md"
(
cd "$tmpdir"
gws generate-skills
shopt -s nullglob
: > "$combined"
for file in skills/gws-gmail*/SKILL.md; do
printf '\n\n%s\n\n' "--- $file ---" >> "$combined"
cat "$file" >> "$combined"
done
)
You only need to read this:
$tmpdir/gws-gmail.md