Skip to content

Installation

Supported hosts: Copilot CLI, Claude Code, Cursor.

bash
/plugin marketplace add robinv8/mino-skills
/plugin install mino@mino-skills
/plugin update mino@mino-skills    # later upgrades

Alternative — vercel-labs CLI

If your agent host doesn't yet support /plugin marketplace, use this fallback.

The skills CLI installs skills to 45+ AI tools with one command.

Run inside your project directory:

Claude Code

bash
npx skills add robinv8/mino-skills -a claude-code -y

Codex

bash
npx skills add robinv8/mino-skills -a codex -y

Cursor

bash
npx skills add robinv8/mino-skills -a cursor -y

Other tools

bash
# List all supported agents
npx skills add --help

# Install to multiple agents at once
npx skills add robinv8/mino-skills -a claude-code -a codex -y

Options

FlagMeaning
-g, --globalInstall to user directory (available in all projects). Omit for project-level install
-a, --agentTarget agent(s). Omit to auto-detect
-y, --yesSkip confirmation prompts
--copyCopy files instead of symlinks

Manual Install

bash
cd your-project

# Claude Code
mkdir -p .claude/skills
git clone https://github.com/robinv8/mino-skills.git .claude/skills/mino

# Cursor / Codex / OpenCode (shared `.agents/skills/` path)
mkdir -p .agents/skills
git clone https://github.com/robinv8/mino-skills.git .agents/skills/mino

Any Agent Skills-compatible agent will auto-discover them:

ToolHow to use
Claude Code/mino-task feature.md, /mino-run issue-8
CursorMention -task or -run in chat
GitHub CopilotAgent picks skills automatically based on context
GooseSkills loaded automatically from .agents/skills/
Gemini CLILoaded from local skills directory
OpenCodeAuto-discovered from workspace

Direct Use (Any Agent)

No tool required — just copy the prompt:

bash
cat skills/mino-task/SKILL.md
# Paste into ChatGPT, Claude, Cursor, or any AI chat

Requirements

  • Agent Skills compatible agent (Claude Code, Cursor, Copilot, Goose, Gemini CLI, etc.)
  • gh CLI for GitHub issue creation
  • .mino/briefs/ directory (created automatically on first use, local-only and not committed)

Released under the MIT License.