Skip to content
This repository was archived by the owner on Feb 8, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .claude-plugin/marketplace.json

This file was deleted.

12 changes: 12 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"mcpServers": {
"agent-skills-spec": {
"type": "http",
"url": "https://agentskills.io/mcp"
},
"bun-docs" : {
"type": "http",
"url": "https://bun.com/docs/mcp"
}
}
}
15 changes: 15 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
ISC License

Copyright (c) 2026 Plaited Labs

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
48 changes: 24 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
# Plaited Marketplace
# Plaited Skills Installer

Aggregator for Plaited's Claude Code plugins.
[![CI](https://github.com/plaited/skills-installer/actions/workflows/ci.yml/badge.svg)](https://github.com/plaited/skills-installer/actions/workflows/ci.yml)
[![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)

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

## Installation

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

```bash
claude plugins add github:plaited/marketplace
```

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

For agents supporting the AgentSkills spec (Gemini CLI, GitHub Copilot, Cursor, OpenCode, Amp, Goose, Factory):

```bash
# Install a specific plugin
curl -fsSL https://raw.githubusercontent.com/plaited/marketplace/main/install.sh | bash -s -- --agent <agent-name> --plugin development-skills
# 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:**

```bash
git clone https://github.com/plaited/marketplace.git
cd marketplace
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 --plugin acp-harness # Specific plugin
./install.sh --list # List available plugins
./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
```
Expand All @@ -36,23 +34,25 @@ cd marketplace

| Agent | Skills | Commands |
|-------|--------|----------|
| gemini | `.gemini/skills/` | - |
| 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 Plugins
## Available Projects

| Plugin | Description |
|--------|-------------|
| **development-skills** | Development skills for Claude Code - TypeScript LSP, code documentation, and validation tools |
| **acp-harness** | ACP client and evaluation harness for agent testing |
| **plaited** | Plaited framework development tools - behavioral programming, UI patterns, and web components |
| Project | Source |
|---------|--------|
| **development-skills** | [plaited/development-skills](https://github.com/plaited/development-skills) |
| **acp-harness** | [plaited/acp-harness](https://github.com/plaited/acp-harness) |
| **plaited** | [plaited/plaited](https://github.com/plaited/plaited) |

## Plugin Details
## Project Details

### development-skills

Expand Down
Loading