-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Problem
The allium plugin ships with a sophisticated 9-member design review panel (TEAM.md) and two prompt templates that invoke it (REVIEW.md for fixes, PROPOSE.md for features). However, neither REVIEW.md nor PROPOSE.md is registered as a skill in the marketplace manifest.
The installation page documents three slash commands: /allium, /allium:elicit, and /allium:distill. These map to the three entries in marketplace.json:
"skills": [
"./plugins/allium",
"./plugins/allium/skills/distill",
"./plugins/allium/skills/elicit"
]There is no way for a user to trigger the design review panel via a skill invocation. The TEAM.md debate protocol, REVIEW.md, and PROPOSE.md are unreachable reference files from the user's perspective.
Expected behaviour
Two additional skills registered in the manifest:
| Skill | File | Trigger |
|---|---|---|
allium:review |
REVIEW.md |
/allium:review — convene the 9-member panel on a proposed fix |
allium:propose |
PROPOSE.md |
/allium:propose — convene the 9-member panel on a proposed feature |
Each would need SKILL.md-style frontmatter (name, description, keywords) and an entry in marketplace.json's skills array.
Current workaround
None via skill invocation. A user would have to manually read REVIEW.md/PROPOSE.md and paste the prompt, which defeats the purpose of the plugin system.
Context
Discovered while using allium v1 (commit 29dbf9ddd532) installed via the JUXT plugin marketplace in Claude Code.