一键导入
gmail
Gmail via gws.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Gmail via gws.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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.
基于 SOC 职业分类
| 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