English | 한국어 | 中文 | 日本語 | Español | Deutsch | Français
Official plugins for system-agents-template.
Each plugin lives in its own subdirectory and is distributed independently. Users pick only the plugins they need.
You don't clone this repo directly — the template's install.sh reads the plugin index here and copies the selected plugins into your project:
Rolling (always latest main):
curl -sSL https://raw.githubusercontent.com/southglory/system-agents-template/main/install.sh -o install.sh
bash install.shPinned to a stable template Release:
curl -sSL https://github.com/southglory/system-agents-template/releases/latest/download/install.sh -o install.sh
bash install.shAnswer "discord-huddle" (or any other listed plugin) when the installer asks which plugins to pull.
| Folder | Summary | Status |
|---|---|---|
discord-huddle/ |
Team chat + tracked meeting summaries via Discord | ✅ Released (discord-huddle-v0.1.0) |
unity-gamedev/ |
Unity CLI build → GitHub Release publishing | ✅ Released (unity-gamedev-v0.1.0) |
Open a plugin folder to see its own README for detailed setup.
Plugins are installed by file copy (cp -r), not by a package manager (pip/npm). The plugin files merge directly into your project tree, so managed installation belongs to the template's install.sh:
# 1. Clone this repo (installer does this automatically)
git clone https://github.com/southglory/system-agents-plugins.git
# 2. Copy the desired plugin into your project (installer does this)
cp -r discord-huddle/bot/* /path/to/your-project/bot/
cp -r discord-huddle/skills/* /path/to/your-project/skills/
# 3. Register skills with Claude Code (installer does this)
cp -r discord-huddle/skills/* ~/.claude/skills/
# 4. Install Python deps
cd /path/to/your-project
pip install -r discord-huddle/requirements.txtThe manual cp -r flow exists as a fallback for advanced users; the installer is recommended.
Each plugin is released independently. Tag format: <plugin-name>-vX.Y.Z.
discord-huddle-v0.1.0— first public releaseunity-gamedev-v0.1.0— planned
There is no repo-wide single version. Template tags (v2.x.x) and plugin tags never collide.
Plugins are designed to work on their own, but some pair well. See CONTRIBUTING.md for the combo-matrix convention each plugin README is expected to document. Reusable cross-plugin combos live in recipes/.
- Claude Code (slash skill system)
- system-agents-template v2.x or later (chatrooms, board.yaml, turn-bot)
- Python ≥ 3.10
- Windows / macOS / Linux
Plugins may add further requirements (for example discord-huddle needs a Discord Bot Token).
MIT — same as system-agents-template.
- Bug reports and feedback: GitHub Issues
- New plugins: follow the structure conventions in
CONTRIBUTING.md