Skip to content

Latest commit

 

History

History
102 lines (71 loc) · 2.02 KB

File metadata and controls

102 lines (71 loc) · 2.02 KB

Installation Guide

Prerequisites

  • Claude Code CLI installed
  • Git

Installing Plugins

Method 1: Via Plugin Marketplace (Recommended)

# Add the plugin as a marketplace source
/plugin marketplace add https://github.com/majiayu000/claude-arsenal/plugins/<plugin-name>

# Install the plugin
/plugin install <plugin-name>

Method 2: Local Installation

# Clone the repository
git clone https://github.com/majiayu000/claude-arsenal.git

# Add local plugin as marketplace
/plugin marketplace add /path/to/claude-arsenal/plugins/<plugin-name>

# Install
/plugin install <plugin-name>

Installing Individual Components

Skills

# Create skill directory (each skill needs its own subdirectory)
mkdir -p ~/.claude/skills/<skill-name>

# Download a skill
curl -o ~/.claude/skills/<skill-name>/SKILL.md \
  https://raw.githubusercontent.com/majiayu000/claude-arsenal/main/skills/<skill-name>.SKILL.md

Commands

# Create commands directory if not exists
mkdir -p ~/.claude/commands

# Download a command
curl -o ~/.claude/commands/<command-name>.md \
  https://raw.githubusercontent.com/majiayu000/claude-arsenal/main/commands/<command-name>.md

Agents

# Create agents directory if not exists
mkdir -p ~/.claude/agents

# Download an agent
curl -o ~/.claude/agents/<agent-name>.md \
  https://raw.githubusercontent.com/majiayu000/claude-arsenal/main/agents/<agent-name>.md

CLAUDE.md Templates

# Download to your project root
curl -o ./CLAUDE.md \
  https://raw.githubusercontent.com/majiayu000/claude-arsenal/main/claude-md/<template-name>.md

Verification

After installation, verify components are loaded:

# Check installed plugins
/plugin list

# Check available commands
/help

# Ask Claude about available skills
"What skills do you have available?"

Uninstallation

# Uninstall a plugin
/plugin uninstall <plugin-name>

# Remove a skill
rm -rf ~/.claude/skills/<skill-name>

# Remove a command
rm ~/.claude/commands/<command-name>.md