New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@agent-skills-sh/cli

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@agent-skills-sh/cli

CLI for managing AI agent skills

latest
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

@agent-skills-sh/cli

Interactive CLI to manage AI agent skills in your project.

Installation

# With npx (recommended)
npx @agent-skills-sh/cli init

# Global
npm install -g @agent-skills-sh/cli
skills init

Commands

skills init

Initialize skills in your project with an interactive wizard.

skills init                          # Interactive wizard
skills init --editor claude          # Specify editor
skills init --preset nextjs          # Use preset
skills init --yes                    # Non-interactive, use defaults

Options:

  • -e, --editor <editor> - Editor: claude, cursor, copilot, antigravity
  • -p, --preset <preset> - Preset: nextjs, react, node, full
  • -y, --yes - Skip prompts, use default configuration

skills list

List available and installed skills.

skills list           # Show full catalog
skills list --local   # Show only installed skills

skills add <skill>

Add a skill to your project.

skills add forms      # Install forms skill
skills add zod-4      # Install Zod 4 skill

skills remove <skill>

Remove a skill from your project.

skills remove forms   # Remove forms skill

Configuration

After skills init, a .skillsrc.json file is created:

{
  "version": "1.0.0",
  "editor": "claude",
  "skills": {
    "directory": ".claude/skills",
    "active": ["react-19", "nextjs", "typescript"]
  },
  "agents": {
    "directory": ".claude/agents",
    "active": ["planner", "reviewer"]
  },
  "source": {
    "repo": "gpolanco/agent-skills-sh",
    "branch": "main"
  }
}

Supported Editors

EditorSkills PathAgents Path
Claude Code.claude/skills/.claude/agents/
Cursor.cursor/skills/.cursor/agents/
GitHub Copilot.github/skills/.github/agents/
Antigravity.gemini/skills/.gemini/agents/

Presets

PresetSkills
nextjsreact-19, nextjs, typescript, tailwind-4, zod-4, structuring-projects
reactreact-19, typescript, tailwind-4, zod-4, structuring-projects
nodetypescript, zod-4, structuring-projects
fullAll available skills

Development

cd cli
pnpm install
pnpm run build
./dist/index.js --help

Keywords

ai

FAQs

Package last updated on 04 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts