A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Advanced skills for Claude Code: multi-agent orchestration, task coordination, and external service integrations
Advanced skills for Claude Code that enable multi-agent coordination, external service integrations, and intelligent workflow orchestration.
Built with Claude using obra's superpowers framework.
This repository contains skills that extend Claude Code's capabilities through:
Supporting Repositories:
gws-* skillsSee docs/public-skill-inventory.md for the
full public skill inventory, including keynote-slides, msgvault,
roborev-*, white-paper, local-only skill coverage, and external dependency
links.
brew install tmux)This repository is the canonical source for the shared skill definitions that codex_session_start links into ~/.codex/skills.
planforgeStandalone speedrift-native planning and decomposition
speedrift repo, use planforge first, then hand off to speedrift for execution and drift controlskills/planforge/scripts/planforge_v2.pyspeedriftWorkgraph-first drift-control autopilot for agentic software delivery
speedrift baseline + optional specdrift, datadrift, depsdrift, uxdrift, therapydrift, yagnidrift, redriftdriftdriver install, contracts, per-task drift checks)planforge, then drives execution and drift controlrifts (alias)Backward-compatible alias that routes to the speedrift workflow.
orchestrating-tmux-claudesMulti-AI coordination in tmux panes (repo)
gemini-cli-extension-portingGemini CLI extension workflows for beads and Superpowers
GEMINI.md context and artifact guidancegoogle-docs-automationGoogle Workspace automation (Docs, Sheets, Slides)
gws-account profile wrapper around Google Workspace CLIkeynote-slidesBuild Keynote-style single-file HTML slide decks
white-paperCreate print-ready white papers in single HTML files
perplexity-researchPerplexity API for web research
obsidian-vault-intelligenceLegacy Obsidian MCP usage patterns (repo)
reminders-managementApple Reminders MCP integration (repo)
linearLinear issue tracking integration
githubGitHub repository and issue management
workspace-cleanupIntelligent workspace cleanup with multi-signal detection
This repo also publishes local skills that may be installed by Codex/OpenAI agents:
outreach-engine - Draft-only outbound outreach preparationprospecting-partner - Evidence-backed target and relationship researchgolden-voice-packets - Canonical human and agent voice packet routingpaia-program-management - Model-mediated operational program management
across Workboard, PAIA Program, Linear, GitHub, Google, and Foliopaia-workboard - PAIA/Workgraph task-board operationsrecover-after-reboot - tmux and repo recovery after OS restartsroborev-review, roborev-review-branch, roborev-design-review,
roborev-design-review-branch, and roborev-refine - review daemon workflowswebwright - Playwright-based browser automation for real web workflowsSee docs/public-skill-inventory.md for the complete 72-skill index.
scripts/tmux/)scripts/install/)docs/)Reference materials for development workflows and patterns.
Clone this repository once, then expose its skills/* directories to each
agent runtime you use.
git clone https://github.com/dbmcco/claude-agent-toolkit ~/claude-agent-toolkit
cd ~/claude-agent-toolkit
# Verify installation
find skills -maxdepth 2 -name SKILL.md | wc -l
Claude Code can read a skill bundle from ~/.claude/skills:
mkdir -p ~/.claude/skills
ln -sfn "$PWD" ~/.claude/skills/claude-agent-toolkit
Restart Claude Code, then ask it to list available skills.
Codex expects skill directories directly under ~/.codex/skills. Symlink each
published skill:
mkdir -p ~/.codex/skills
for skill in "$PWD"/skills/*; do
[ -f "$skill/SKILL.md" ] || continue
ln -sfn "$skill" ~/.codex/skills/"$(basename "$skill")"
done
Restart Codex so it reloads the skill index.
Local OpenAI-style agents in this workspace use ~/.agents/skills:
mkdir -p ~/.agents/skills
for skill in "$PWD"/skills/*; do
[ -f "$skill/SKILL.md" ] || continue
ln -sfn "$skill" ~/.agents/skills/"$(basename "$skill")"
done
Restart the agent process after updating symlinks.
For repository-local OpenCode usage, expose skills under .opencode/skills in
the target project:
mkdir -p .opencode/skills
for skill in ~/claude-agent-toolkit/skills/*; do
[ -f "$skill/SKILL.md" ] || continue
ln -sfn "$skill" .opencode/skills/"$(basename "$skill")"
done
If your OpenCode install uses a global config directory, use the same symlink loop with that directory instead.
cd ~/claude-agent-toolkit
git pull --rebase
Symlink installs pick up skill file changes immediately; restart the agent if it caches its skill list.
Each skill that requires external services needs specific environment variables configured.
Required for skills/google-docs-automation/
Use the local GWS profile wrapper:
<workspace-root>/gws-profiles/bin/gws-account list
<workspace-root>/gws-profiles/bin/gws-account primary calendar calendarList list --params '{"maxResults":1}'
Choose the profile first: primary for Example Company, client-a for a client workspace, and personal for a personal account. If a profile auth check reports auth_method: none, stop
and reauthorize that profile instead of falling back to another account.
Profiles and OAuth setup live in <workspace-root>/gws-profiles.
Do not build custom OAuth flows or use service-account code for normal agent work.
Use msgvault for email search/read and a draft-only workflow for outbound email.
Important: Add credentials files to .gitignore:
*.json
.env
Required for skills/perplexity-research/
# In your project .env or ~/.bashrc
export PERPLEXITY_API_KEY="your_api_key_here"
Required for skills/obsidian-vault-intelligence/
Folio is the default personal knowledge system for current agents. Configure Obsidian MCP only for explicit legacy vault work, migration, or debugging.
Install and configure the dbmcco/obsidian-mcp server:
# Clone and build
git clone https://github.com/dbmcco/obsidian-mcp.git
cd obsidian-mcp
npm install
npm run build
Configuration File Locations:
~/.config/claude-code/config.json~/Library/Application Support/Claude/claude_desktop_config.jsonAdd to your configuration file (merge with existing mcps section if present):
{
"mcps": {
"obsidian": {
"command": "node",
"args": ["/path/to/obsidian-mcp/dist/index.js"],
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
}
}
}
}
See the obsidian-mcp repository for complete documentation of all 18 available tools.
Required for skills/reminders-management/
Install and configure the dbmcco/apple-reminders-mcp server:
# Clone and build
git clone https://github.com/dbmcco/apple-reminders-mcp.git
cd apple-reminders-mcp
npm install
npm run build
Configuration File Locations:
~/.config/claude-code/config.json~/Library/Application Support/Claude/claude_desktop_config.jsonAdd to your configuration file (merge with existing mcps section if present):
{
"mcps": {
"reminders": {
"command": "node",
"args": ["/path/to/apple-reminders-mcp/dist/index.js"]
}
}
}
See the apple-reminders-mcp repository for complete documentation of all 6 available tools.
Required for skills/linear/
Get Linear API Key
lin_api_)Get Team Information
Configure Environment
# In your project .env or ~/.bashrc
export LINEAR_API_KEY="lin_api_xxx"
export LINEAR_TEAM_ID="xxx-xxx-xxx"
export LINEAR_TEAM_KEY="YOUR_TEAM"
export LINEAR_ORG_URL="your-org"
Usage:
# Create issue
skills/linear/scripts/linear-create-issue.sh --title "Bug fix" --description "Details"
# List issues
skills/linear/scripts/linear-list-issues.sh --state "In Progress"
# Update issue
skills/linear/scripts/linear-update-issue.sh --issue-id "ID" --state-id "state-done"
See skills/linear/SKILL.md for complete documentation.
Required for skills/github/
Create GitHub Personal Access Token
repo, workflow, admin:org (as needed)Configure Environment
# In your project .env or ~/.bashrc
export GITHUB_TOKEN="<github-token>"
Usage:
# Create issue
skills/github/scripts/gh-create-issue.sh --owner org --repo repo --title "Bug"
# List issues
skills/github/scripts/gh-list-issues.sh --owner org --repo repo --state open
# Create PR
skills/github/scripts/gh-create-pr.sh --owner org --repo repo --title "Feature" --head branch
See skills/github/SKILL.md for complete documentation.
Required for skills/orchestrating-tmux-claudes/
Scripts Included in This Repository
The tmux orchestration scripts are included in this repository under scripts/tmux/:
launch-claude-team.sh - Launch 5-pane tmux sessiondelegate.sh - Send tasks to specific panescheck-pane.sh - Monitor specific pane outputcheck-all-panes.sh - Monitor all panesrecover-pane.sh - Kill and recover stuck agentsInstallation:
brew install tmux
# From the claude-agent-toolkit directory
./scripts/install/install-tmux-orchestration-local.sh
This installs the scripts and makes them available globally.
Role-Based Skills Pattern:
The orchestration skill enforces a coordinator-only role. When launching tmux sessions:
See the skill's SKILL.md for role configuration details.
Full Implementation Available:
For the complete implementation with working scripts, see: dbmcco/claude-tmux-orchestration
This repository provides:
Quick start:
git clone https://github.com/dbmcco/claude-tmux-orchestration.git
cd claude-tmux-orchestration
./setup.sh
# Clone the repository
git clone https://github.com/dbmcco/claude-agent-toolkit
cd claude-agent-toolkit
# Edit any skill
vi skills/orchestrating-tmux-claudes/SKILL.md
# Symlink to your Claude Code config for testing
ln -s $(pwd) ~/.claude/skills/advanced
Follow the Skill Development Guide for patterns and best practices
claude-agent-toolkit/
├── skills/
│ ├── orchestrating-tmux-claudes/
│ │ ├── SKILL.md
│ │ └── reference.md
│ ├── google-docs-automation/
│ │ └── SKILL.md
│ ├── keynote-slides/
│ │ ├── SKILL.md
│ │ ├── assets/
│ │ ├── references/
│ │ ├── scripts/
│ │ └── skills/
│ ├── white-paper/
│ │ ├── SKILL.md
│ │ ├── assets/
│ │ ├── references/
│ │ └── scripts/
│ ├── perplexity-research/
│ │ └── SKILL.md
│ ├── obsidian-vault-intelligence/
│ │ └── SKILL.md
│ ├── reminders-management/
│ │ └── SKILL.md
│ ├── linear/
│ │ ├── SKILL.md
│ │ └── scripts/ (5 bash scripts)
│ └── github/
│ ├── SKILL.md
│ └── scripts/ (5 bash scripts)
├── scripts/
│ ├── tmux/
│ └── install/
├── docs/
├── LICENSE
├── .gitignore
└── README.md
Contributions welcome! Please:
See docs/skill-development-guide.md for detailed guidance.
MIT License - See LICENSE for details
npx CLI installing 100+ agents, commands, hooks, and integrations in one command
干净、强大、属于你的 AI Agent 平台 --AI agents, without the clutter.
Native macOS app to monitor Claude AI usage limits and watch your coding sessions live
Pocket Flow: Codebase to Tutorial