
Common Tools
- 19 repo stars
- Updated April 8, 2026
- s950329/ai-marketplace-skeleton
Common workflow tools for all roles.
About
common-tools is a Claude Code skill in the Automation & Workflows category. Common workflow tools for all roles.
- common-tools
- Automation & Workflows
- AI-coding skill
Common Tools by the numbers
- Data as of Aug 1, 2026 (Skillselion catalog sync)
/plugin marketplace add s950329/ai-marketplace-skeleton/plugin install common-tools@ai-plugin-skeletonAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 19 |
|---|---|
| Last updated | April 8, 2026 |
| Repository | s950329/ai-marketplace-skeleton ↗ |
What it does
Common workflow tools for all roles.
README.md
ai-plugin-skeleton — Plugin Marketplace
This repo can be used to scaffold an AI skill plugin marketplace. Follow these steps to get started:
- Press the "Use this template" button at the top of this repo to create a new repo with the contents of this skeleton.
- Tell your AI agent to customize the skeleton by pasting:
Customize this plugin skeleton for my project by following the guide in: @docs/get-started-for-agent.md - Or follow the Get Started guide manually to replace all placeholders throughout the files.
- Have fun creating your plugins.
Quick Install
./scripts/install.sh
The script auto-detects available CLI tools (claude / copilot) and guides you through selecting which plugins to install.
Plugin Installation Guide
The examples below use
your-org/your-repoas a placeholder — replace it with your actual repo path.
GitHub Copilot CLI
copilot plugin marketplace add your-org/your-repo
copilot plugin install common-tools@your-repo
Claude Code
claude plugin marketplace add your-org/your-repo
claude plugin install common-tools@your-repo
VS Code Installation
If you use Claude Code or Copilot inside VS Code, follow these steps:
Step 1: Enable Plugin Support & Add the Marketplace
Open Settings (Cmd + ,) and search for plugin:
- Check Chat > Plugins: Enabled to enable agent plugin support.
- Under Chat > Plugins: Marketplaces, click
Add Itemand enter your repo path (e.g.your-org/your-repo).
Step 2: Install a Plugin
Go to the Extensions sidebar, search for @agentPlugins, and click Install on any plugin you want.
After installing, type / in VS Code Chat to see the list of available skills.
Claude.ai Web Installation (No CLI Required)
If you don't use the CLI or VS Code, you can install skills directly into Claude.ai from a GitHub Release:
- Go to the Releases page and download the zip file you need.
- Unzip it — inside you'll find one or more
.skillfiles (each file is a standalone skill). - Go to Claude.ai, open the left menu, and navigate to Customize → Skills → Create skill → Upload a skill.
- Upload the
.skillfile you want. - Type
/in a conversation to confirm the skill appears in the available command list.
Each
.skillfile can be installed independently — you don't need to upload all of them.
Available Commands After Install
common-tools (General)
| Command | Description |
|---|---|
/common-tools:skill-creator |
Create, evaluate, and package skills |
/common-tools:create-plugin |
Scaffold a new plugin and register it in the marketplace |
Creating a New Plugin
For Agents
Copy and paste this prompt to your LLM agent (Claude Code, AmpCode, Cursor, etc.):
Create a new plugin in this repository by following the instructions in:
@plugins/common-tools/skills/create-plugin/SKILL.md
The agent will ask you a few questions and then scaffold everything automatically.
Or if the common-tools plugin is already installed, just type /common-tools:create-plugin in Claude Code or Copilot CLI.
For Humans
bash scripts/create-plugin.sh
The script walks you through the same questions interactively and produces the same result.
Updating Plugins
Plugins are checked for updates automatically when the CLI starts. To update manually:
GitHub Copilot CLI
copilot plugin update common-tools@your-repo
Claude Code
claude plugin update common-tools@your-repo
For directory structure details, see AGENTS.md.
Want to contribute? Read CONTRIBUTING.md.
AI coding agents maintaining this repo should refer to AGENTS.md.
Template developers: Get Started · Plugin Design Guide · Troubleshooting · References