Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub theglitchking/mind-glaiveHow this skill is triggered — by the user, by Claude, or both
Slash command
/mind-glaive:mind-glaive-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Automates the complete mind-glaive initialization for a project.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
Automates the complete mind-glaive initialization for a project.
/mind-glaive/setup [template]setup mind-glaiveWhen invoked, this skill:
Detects mind-glaive location
~/.claude/plugins/cache/mind-glaive-marketplace/mind-glaive/1.0.0/${CLAUDE_PLUGIN_ROOT} environment variableRuns install.sh
${PLUGIN_DIR}/install.sh --scope project --template [template]
.claude/ structurehooks.json to .claude/hooks.json.claude/scripts/Enables the plugin
/plugin enable mind-glaive
Shows welcome
/welcome
template (optional, default: minimal)
minimal - Small projects, learningfull-stack - Web applicationsdata-science - ML/research projectsSuccess message showing:
If install.sh fails:
./install.sh --scope project --template minimalUser: /mind-glaive/setup full-stack
Skill executes:
1. Find mind-glaive plugin directory
2. Run: /path/to/mind-glaive/install.sh --scope project --template full-stack
3. Enable plugin
4. Show welcome message
Output:
✅ mind-glaive initialized for RE-InvestorHub
Template: full-stack
Location: /mnt/e/docker-containers/RE-InvestorHub/.claude/
Hooks: Active (SessionStart, SessionEnd, PreCompact)
Status: Ready to use!
Run: /welcome for quick start guide
This skill should:
# 1. Get plugin root from environment
plugin_root = os.environ.get('CLAUDE_PLUGIN_ROOT')
if not plugin_root:
# Try to find it in standard location
plugin_root = f"{os.path.expanduser('~')}/.claude/plugins/cache/mind-glaive-marketplace/mind-glaive/1.0.0"
# 2. Get template from user input (default: minimal)
template = user_input.get('template', 'minimal')
# 3. Run installer
result = subprocess.run(
[f"{plugin_root}/install.sh", "--scope", "project", "--template", template],
cwd=os.getcwd(),
capture_output=True,
text=True
)
if result.returncode != 0:
return error(f"Installation failed: {result.stderr}")
# 4. Enable plugin (via Claude Code API or Bash)
enable_result = subprocess.run(
["/plugin", "enable", "mind-glaive"],
capture_output=True,
text=True
)
# 5. Show welcome
show_welcome()
return success(f"✅ mind-glaive setup complete!")