npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@alcyone-labs/agent-skills

v1.0.0

Published

Interactive installer for Agent Skills - Install AI agent skills from Alcyone Labs

Readme

@alcyone-labs/agent-skills

Interactive installer for Agent Skills from Alcyone Labs. Install AI agent skills for various platforms including OpenCode, Gemini CLI, Claude, FactoryAI Droid, Agents, and Antigravity.

Installation

No installation required! Use directly with npx:

npx @alcyone-labs/agent-skills

Usage

The installer runs in interactive mode by default, guiding you through all configuration options. Use flags to pre-configure values and skip specific prompts.

Interactive Mode (Default)

Run without arguments for full interactive mode:

npx @alcyone-labs/agent-skills

This will guide you through:

  1. Selecting installation scope (global or local)
  2. Choosing target agents/platforms
  3. Selecting skills to install
  4. Optional command installation
  5. Optional .gitignore updates

Pre-Configured Interactive Mode

Set some values via flags, get prompted for the rest:

# Pre-set global scope, get prompted for agents and skills
npx @alcyone-labs/agent-skills --global

# Pre-set agents, get prompted for scope and skills
npx @alcyone-labs/agent-skills --opencode --gemini

# Pre-set scope and agents, get prompted for skills
npx @alcyone-labs/agent-skills --global --gemini --droid

Non-Interactive Mode

Provide all required flags for fully automated installation:

# Install all skills globally for multiple agents (no prompts)
npx @alcyone-labs/agent-skills --global --all --gemini --droid --agents

# Install locally for specific agents with commands
npx @alcyone-labs/agent-skills --local --all --opencode --commands

# Complete automation example
npx @alcyone-labs/agent-skills --global --all --opencode --gemini --claude --droid --agents --antigravity --no-commands --no-gitignore

CLI Options

Scope Flags

  • --global, -g - Install globally (user space ~/)
  • --local, -l - Install locally (project ./)

Agent Flags

  • --opencode - Install for OpenCode
  • --gemini - Install for Gemini CLI
  • --claude - Install for Claude
  • --droid - Install for FactoryAI Droid
  • --agents - Install for Agents (default)
  • --antigravity - Install for Antigravity

Skill Selection

  • --all, -a - Install all available skills

Command Installation

  • --commands - Install commands for supported agents
  • --no-commands - Skip installing commands

Gitignore

  • --gitignore - Add agent folders to .gitignore
  • --no-gitignore - Skip adding to .gitignore

Examples

Quick Start - Install Everything Globally

npx @alcyone-labs/agent-skills --global --all --opencode --gemini --claude --droid --agents --antigravity

Development Setup - Local Install

# Install all skills locally for your project
npx @alcyone-labs/agent-skills --local --all --agents

# With gitignore update (recommended for local installs)
npx @alcyone-labs/agent-skills --local --all --agents --gitignore

Selective Installation

# Install only specific skills to specific agents
npx @alcyone-labs/agent-skills --global --opencode --gemini --no-commands

CI/CD Automation

# Non-interactive installation for CI/CD pipelines
npx @alcyone-labs/agent-skills --global --all --agents --no-commands --no-gitignore

Partial Configuration

# Set scope, choose agents and skills interactively
npx @alcyone-labs/agent-skills --global

# Set agents, choose scope and skills interactively
npx @alcyone-labs/agent-skills --opencode --gemini

How It Works

  1. Local Mode: If running from a cloned repository, uses local skills
  2. Remote Mode: Otherwise, fetches skills directly from GitHub
  3. Always Interactive: Prompts run by default with promptWhen: "always"
  4. Flag Pre-configuration: Use flags to skip prompts and pre-set values
  5. Smart Skipping: Prompts automatically skip when values provided via flags

Supported Platforms

| Platform | Global Path | Local Path | |----------|-------------|------------| | OpenCode | ~/.config/opencode/ | ./.opencode/ | | Gemini CLI | ~/.gemini/ | ./.gemini/ | | Claude | ~/.claude/ | ./.claude/ | | FactoryAI Droid | ~/.factory/ | ./.factory/ | | Agents | ~/.config/agents/ | ./.agents/ | | Antigravity | ~/.antigravity/ | ./.antigravity/ |

Requirements

  • Node.js 18+ or Bun
  • Git (for fetching from GitHub)

License

MIT License - See repository for details.

Contributing

Contributions welcome! Visit https://github.com/Alcyone-Labs/agent-skills