-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.yaml
More file actions
42 lines (39 loc) · 1.97 KB
/
Copy pathplugins.yaml
File metadata and controls
42 lines (39 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Plugin index consumed by the template's install.sh.
#
# Each entry:
# name Unique identifier, also the folder name in this repo.
# summary One-line description shown in the installer's plugin picker.
# path Subdirectory (relative to repo root) to copy into the user's project.
# min_python Minimum Python version the plugin's code supports.
# needs_token Human hint; the installer surfaces this so users know they must
# fill a secret after install. Skip if the plugin works without secrets.
# extras Optional feature names the plugin advertises. Purely informative
# in the installer; each extra's setup is the plugin's own concern.
# status "stable" | "preview" | "planned". Installer can skip planned ones.
plugins:
- name: discord-huddle
summary: Team chat + tracked meeting summaries via Discord (pull/push/listen/summarize)
path: discord-huddle/
min_python: "3.10"
needs_token: Discord Bot Token (Developer Portal → Bot → Reset Token)
extras:
- vc-snapshot # headless Chromium page snapshots (optional)
status: stable
- name: unity-gamedev
summary: One-command Unity release pipeline — build via unity-cli, zip, publish as a GitHub Release
path: unity-gamedev/
min_python: "3.10"
needs_token: None (reuses your existing `gh auth` login)
extras:
- multi-scene-build # --scene can be repeated
- skip-build # reuse pre-built Builds/<name>.<ext>
status: stable
- name: autonomous-loop
summary: Autonomous loop over TODO.md — self-answers as the user's persona, defers approval-gated risky actions
path: autonomous-loop/
min_python: "3.10"
needs_token: None (persona is built locally from your Claude Code history)
extras:
- multi-account # auto-detects cc-switch dirs (~/.claude, ~/.claude-*)
- persona-backup # local-only backup of the hand-tuned PERSONA.md
status: preview