ask

Skill from yeasy/ask

ASK: Agent Skills Kit

ASK Logo

One command. Every agent.

Install once β€” works with Claude, Cursor, Codex, Copilot, Windsurf, Gemini, OpenClaw, and 12 more.

ReleaseLicenseStarsGo Report CardGo Version

English | δΈ­ζ–‡


πŸ’‘ 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

FeatureDescription
πŸ€– 19 Agents, One CLIInstall once, auto-sync to Claude, Cursor, Codex, Copilot, Windsurf, Gemini CLI, OpenClaw, and 12 more. No vendor lock-in.
πŸ“¦ Version Lockingask.lock pins exact commits for reproducible builds. ask lock-install for CI/CD like npm ci.
πŸ›‘οΈ Security Scanner26+ built-in rules check for secrets, dangerous commands, and malware. SARIF output for GitHub Code Scanning.
πŸ” Curated RegistrySearch across the official registry, GitHub repos, and community sources.
⚑ Blazing FastWritten in Go. Parallel downloads, sparse checkouts, and zero runtime dependencies.
πŸ”Œ Offline & EnterpriseFull offline mode, private repo support, source whitelists, and HTML audit reports.
🌎 Global & LocalProject-specific skills (.agent/skills) or user-wide tools (~/.ask/skills).
πŸ–₯️ Desktop & WebBeautiful UI via ask serve web server or native desktop app via Wails.

πŸ–₯️ Web UI & Desktop App

ASK Skills Manager

ASK provides a beautiful web interface for skill discovery and management β€” available as a web server (ask serve) or a native desktop app.

FeatureDescription
πŸ“Š Visual DashboardOverview of installed skills, repos, and system stats
πŸ” Skill BrowserSearch, filter, and install skills with rich metadata
πŸ“¦ Repository ManagerAdd and sync skill sources from GitHub
πŸ›‘οΈ Security AuditView generated safety reports

Quick Start

BASH
# 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):

BASH
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-desktop for 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:

BASH
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:

BASH
ask init

This creates an ask.yaml configuration file.

3. Use

BASH
# 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

CommandDescription
ask skill search <keyword>Search across all sources
ask skill install <name>Install skill(s)
ask skill listList installed skills
ask skill uninstall <name>Remove a skill
ask skill updateUpdate skills to latest version
ask skill outdatedCheck 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

CommandDescription
ask repo listShow configured repositories
ask repo add <url>Add a custom skill source (run ask repo sync after to download)
ask repo syncDownload/update repos to local cache (~/.ask/repos)

System Commands

CommandDescription
ask doctorDiagnose and report on ASK health (config, skills, cache, system)
ask serveStart web UI for visual skill management

🌐 Skill Sources

ASK comes pre-configured with trusted sources:

SourceDescription
AnthropicOfficial anthropics/skills
CommunityTop-rated community skills (GitHub agent-skill and agent-skills topics)
ComposioComposioHQ/awesome-claude-skills collection
OpenAIOfficial openai/skills
Vercelvercel-labs/agent-skills AI SDK skills
OpenClawopenclaw/openclaw Built-in skills from OpenClaw

Optional Repositories

For specific needs, you can add these additional sources:

RepositoryCommand to AddDescription
Scientificask repo add K-Dense-AI/claude-scientific-skillsData science & research skills
MATLABask repo add matlab/skillsOfficial MATLAB integration
Superpowersask repo add obra/superpowersFull dev workflow with sub-agents
Planningask repo add OthmanAdi/planning-with-filesFile-based persistent planning
UI/UX Proask repo add nextlevelbuilder/ui-ux-pro-max-skill57 UI styles, 95 color schemes
NotebookLMask repo add PleasePrompto/notebooklm-skillAuto-upload to NotebookLM
AI DrawIOask repo add GBSOSS/ai-drawioFlowchart & diagram generation
PPT Skillsask repo add op7418/NanoBanana-PPT-SkillsDynamic PPT generation
Antigravityask repo add sickn33/antigravity-awesome-skillsCollection 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:

BASH
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
# 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 skills
  • ask skill uninstall <TAB> - Complete from installed skills
  • ask repo sync <TAB> - Complete from configured repositories
  • ask install --agent <TAB> - Complete agent names (claude, cursor, codex, etc.)

πŸ“Š Security Audit Reports

See detailed security audit reports generated for top skill repositories:

πŸ†š Comparison

ASKClaude NativeCursor Rules
Multi-agent supportβœ… 19 agentsClaude onlyCursor 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.