Skip to content
This repository was archived by the owner on Feb 8, 2026. It is now read-only.

Latest commit

 

History

History
95 lines (68 loc) · 3.44 KB

File metadata and controls

95 lines (68 loc) · 3.44 KB

Plaited Skills Installer

CI License: ISC

Install Plaited skills for AI coding agents supporting the agent-skills-spec.

Installation

For agents supporting the agent-skills-spec (Gemini CLI, GitHub Copilot, Cursor, OpenCode, Amp, Goose, Factory, Codex, Windsurf):

# Install all projects
curl -fsSL https://raw.githubusercontent.com/plaited/skills-installer/main/install.sh | bash -s -- --agent <agent-name>

# Install a specific project
curl -fsSL https://raw.githubusercontent.com/plaited/skills-installer/main/install.sh | bash -s -- --agent <agent-name> --project development-skills

Or clone and run locally:

git clone https://github.com/plaited/skills-installer.git
cd skills-installer
./install.sh                              # Interactive mode
./install.sh --agent gemini               # Install all for Gemini CLI
./install.sh --agent cursor --project acp-harness  # Specific project
./install.sh --list                       # List available projects
./install.sh --update                     # Update existing
./install.sh --uninstall                  # Remove all

Supported agents:

Agent Skills Commands
gemini .gemini/skills/ .gemini/commands/ (→TOML)
copilot .github/skills/ -
cursor .cursor/skills/ .cursor/commands/
opencode .opencode/skill/ .opencode/command/
amp .amp/skills/ .amp/commands/
goose .goose/skills/ -
factory .factory/skills/ .factory/commands/
codex .codex/skills/ ~/.codex/prompts/ (→prompt)
windsurf .windsurf/skills/ .windsurf/workflows/

Available Projects

Project Source
development-skills plaited/development-skills
acp-harness plaited/acp-harness
plaited plaited/plaited

Project Details

development-skills

Development tools including:

  • typescript-lsp - LSP-based code exploration for TypeScript/JavaScript
    • /lsp-hover - Get type information at a position
    • /lsp-find - Search for symbols across workspace
    • /lsp-refs - Find all references to a symbol
    • /lsp-analyze - Batch analysis of a file
  • code-documentation - Code documentation generation
  • validate-skill - Skill validation tools

Source: plaited/development-skills

acp-harness

Unified toolkit for ACP client usage and agent evaluation:

  • Connect to ACP-compatible agents programmatically
  • Capture full trajectories (tools, thoughts, plans)
  • Run evaluations and generate training data

Source: plaited/acp-harness

plaited

Development tools for the Plaited behavioral programming framework:

  • loom - Templating and component library
  • plaited-behavioral-core - Behavioral programming patterns
  • plaited-standards - Code conventions and standards
  • plaited-ui-patterns - UI templates and styling
  • plaited-web-patterns - Web component patterns

Source: plaited/plaited

License

ISC