ASK: Agent Skills Kit

One command. Every agent.
Install once β works with Claude, Cursor, Codex, Copilot, Windsurf, Gemini, OpenClaw, and 12 more.
π‘ Why ASK β’ π Quick Start β’ β¨ Features β’ π Commands β’ π Documentation
π‘ Why ASK
You find a great skill on Claude, but you also use Cursor. You set up rules in Cursor, but your teammate uses Copilot. You want to audit third-party skills, but there's no standard tool.
ASK solves this. One install, every agent stays in sync β with version locking, security scanning, and offline support built in.
$ ask install browser-use
β Installed browser-use
Synced to: Claude (.claude/skills/)
Cursor (.cursor/skills/)
Codex (.codex/skills/)
β¨ Key Features
| Feature | Description |
|---|---|
| π€ 19 Agents, One CLI | Install once, auto-sync to Claude, Cursor, Codex, Copilot, Windsurf, Gemini CLI, OpenClaw, and 12 more. No vendor lock-in. |
| π¦ Version Locking | ask.lock pins exact commits for reproducible builds. ask lock-install for CI/CD like npm ci. |
| π‘οΈ Security Scanner | 26+ built-in rules check for secrets, dangerous commands, and malware. SARIF output for GitHub Code Scanning. |
| π Curated Registry | Search across the official registry, GitHub repos, and community sources. |
| β‘ Blazing Fast | Written in Go. Parallel downloads, sparse checkouts, and zero runtime dependencies. |
| π Offline & Enterprise | Full offline mode, private repo support, source whitelists, and HTML audit reports. |
| π Global & Local | Project-specific skills (.agent/skills) or user-wide tools (~/.ask/skills). |
| π₯οΈ Desktop & Web | Beautiful UI via ask serve web server or native desktop app via Wails. |
π₯οΈ Web UI & Desktop App

ASK provides a beautiful web interface for skill discovery and management β available as a web server (ask serve) or a native desktop app.
| Feature | Description |
|---|---|
| π Visual Dashboard | Overview of installed skills, repos, and system stats |
| π Skill Browser | Search, filter, and install skills with rich metadata |
| π¦ Repository Manager | Add and sync skill sources from GitHub |
| π‘οΈ Security Audit | View generated safety reports |
Quick Start
# Web Server
ask serve
# Desktop App (requires Wails CLI)
wails build && ./build/bin/ask-desktop
π Explore the Web UI Documentation β
1. Install
Homebrew (macOS/Linux):
brew tap yeasy/tap
brew install yeasy/tap/ask # CLI version
brew install --cask yeasy/tap/ask-desktop # Desktop App (macOS only)
[!NOTE] macOS Users: When opening
ask-desktopfor the first time, if you see an "unidentified developer" warning, please go to System Settings > Privacy & Security, and click "Open Anyway" in the Security section.
Go Install:
go install github.com/yeasy/ask@latest
Binary / Manual Install (Windows / Linux / Desktop): Download the latest pre-compiled binary or Desktop App for your system from Releases.
2. Initialize
Enter your project directory and run:
ask init
This creates an ask.yaml configuration file.
3. Use
# Search for skills
ask search mcp
# Install a skill (by name or repo, `ask add` is an alias for `ask install`)
ask install anthropics/mcp-builder
ask install superpowers
# Install a skill from a root-level repository
ask install op7418/Youtube-clipper-skill
# Install specific version
ask install mcp-builder@v1.0.0
# Install for specific agent
ask install mcp-builder --agent claude
ask install mcp-builder --agent claude cursor
# Security Check
ask check .
ask check anthropics/mcp-builder -o report.html
# Restore skills from ask.lock or ask.yaml (if no arguments provided)
ask install
# Start Web UI
ask serve
# Install skills from a specific repository
ask skill install --repo anthropics pdf
# Install all skills from a specific repository
ask skill install --repo anthropics
π Commands
Skill Management
| Command | Description |
|---|---|
ask skill search <keyword> | Search across all sources |
ask skill install <name> | Install skill(s) |
ask skill list | List installed skills |
ask skill uninstall <name> | Remove a skill |
ask skill update | Update skills to latest version |
ask skill outdated | Check for newer versions |
ask skill check <path> | Security scan + SKILL.md format validation |
ask skill prompt [paths] | Generate XML for agent system prompts |
Repository Management
| Command | Description |
|---|---|
ask repo list | Show configured repositories |
ask repo add <url> | Add a custom skill source (run ask repo sync after to download) |
ask repo sync | Download/update repos to local cache (~/.ask/repos) |
System Commands
| Command | Description |
|---|---|
ask doctor | Diagnose and report on ASK health (config, skills, cache, system) |
ask serve | Start web UI for visual skill management |
π Skill Sources
ASK comes pre-configured with trusted sources:
| Source | Description |
|---|---|
| Anthropic | Official anthropics/skills |
| Community | Top-rated community skills (GitHub agent-skill and agent-skills topics) |
| Composio | ComposioHQ/awesome-claude-skills collection |
| OpenAI | Official openai/skills |
| Vercel | vercel-labs/agent-skills AI SDK skills |
| OpenClaw | openclaw/openclaw Built-in skills from OpenClaw |
Optional Repositories
For specific needs, you can add these additional sources:
| Repository | Command to Add | Description |
|---|---|---|
| Scientific | ask repo add K-Dense-AI/claude-scientific-skills | Data science & research skills |
| MATLAB | ask repo add matlab/skills | Official MATLAB integration |
| Superpowers | ask repo add obra/superpowers | Full dev workflow with sub-agents |
| Planning | ask repo add OthmanAdi/planning-with-files | File-based persistent planning |
| UI/UX Pro | ask repo add nextlevelbuilder/ui-ux-pro-max-skill | 57 UI styles, 95 color schemes |
| NotebookLM | ask repo add PleasePrompto/notebooklm-skill | Auto-upload to NotebookLM |
| AI DrawIO | ask repo add GBSOSS/ai-drawio | Flowchart & diagram generation |
| PPT Skills | ask repo add op7418/NanoBanana-PPT-Skills | Dynamic PPT generation |
| Antigravity | ask repo add sickn33/antigravity-awesome-skills | Collection of 600+ skills for Claude Code & Cursor |
ποΈ Architecture & Layout
For detailed architecture diagrams and installation layout, see Architecture Guide.
π Debugging
To see detailed operational logs (scanning, updating, searching), set ASK_LOG=debug:
export ASK_LOG=debug
ask skill install browser-use
β¨οΈ Shell Completion
ASK supports intelligent tab completion for skill names, repository names, and agent flags.
Setup (one-time):
# Bash
ask completion bash > $(brew --prefix)/etc/bash_completion.d/ask
# Zsh
ask completion zsh > "${fpath[1]}/_ask"
# Fish
ask completion fish > ~/.config/fish/completions/ask.fish
Features:
ask skill install <TAB>- Complete from cached skillsask skill uninstall <TAB>- Complete from installed skillsask repo sync <TAB>- Complete from configured repositoriesask install --agent <TAB>- Complete agent names (claude, cursor, codex, etc.)
π Security Audit Reports
See detailed security audit reports generated for top skill repositories:
- π‘οΈ Anthropic Security Audit Report
- π‘οΈ OpenAI Security Audit Report
- π‘οΈ Composio Security Audit Report
- π‘οΈ Vercel Security Audit Report
- π‘οΈ Superpowers Security Audit Report
π Comparison
| ASK | Claude Native | Cursor Rules | |
|---|---|---|---|
| Multi-agent support | β 19 agents | Claude only | Cursor only |
| Version locking | β
ask.lock | β | β |
| Security scanning | β 26+ rules | β | β |
| Offline mode | β | β | β |
| Team sharing | β lock file | β | β |
| Private repos / Enterprise | β | β | β |
| CLI interface | β | β | β |
| Curated registry | β | β | β |
π€ Contributing
Contributions are welcome! See CONTRIBUTING.md for details.
π License
MIT License. See LICENSE for details.