Complete guide for the forgmind-skills GitHub repo — what it is, how to install skills via the Manage Plugins dialog or install scripts, how to add a new skill with the correct plugin structure, and the difference between user-level and project-level skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/forgmind-skills-guide:forgmind-skills-guideThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Repo:** https://github.com/madesh6554/forgmind-skills
Repo: https://github.com/madesh6554/forgmind-skills
This is the central skill library for the Forgmind team. It stores Claude Code slash commands (skills) that any team member can install on any machine or project — without recreating them from scratch each time.
/manage-pluginsmadesh6554/forgmind-skillsWindows:
irm https://raw.githubusercontent.com/madesh6554/forgmind-skills/main/install.ps1 | iex
Linux / Mac:
curl -fsSL https://raw.githubusercontent.com/madesh6554/forgmind-skills/main/install.sh | bash
This copies all user-level skills to ~/.claude/commands/ — available in every project on your machine.
forgmind-skills/
├── .claude-plugin/
│ └── marketplace.json ← lists all skills for Manage Plugins dialog
├── skills/ ← user-level skills (generic, any project)
│ ├── mockup/
│ │ ├── SKILL.md ← skill instructions Claude reads
│ │ └── plugin.json ← plugin metadata (name, version, description)
│ ├── preview/
│ │ ├── SKILL.md
│ │ └── plugin.json
│ ├── use-project-skills/
│ │ ├── SKILL.md
│ │ └── plugin.json
│ └── forgmind-skills-guide/
│ ├── SKILL.md ← this file
│ └── plugin.json
├── projects/ ← project-level skills (tied to one repo)
│ └── sp-sales-log/
│ ├── deploy-frontend.md
│ ├── flutter-run.md
│ ├── migrate-db.md
│ └── n8n-push.md
├── SKILL_TEMPLATE.md ← copy this to create a new skill
├── install.ps1 ← Windows installer
├── install.sh ← Linux/Mac installer
├── install-project.ps1 ← Windows project-skill installer
└── install-project.sh ← Linux/Mac project-skill installer
Every new skill needs 3 things: a folder, a SKILL.md, and a plugin.json. Then one entry added to marketplace.json.
skills/your-skill-name/
├── SKILL.md
└── plugin.json
SKILL.md---
name: your-skill-name
description: One clear sentence — what this skill does and when to use it.
---
# Skill Title
Your skill instructions here...
plugin.json{
"name": "your-skill-name",
"version": "1.0.0",
"description": "Same one-line description as in SKILL.md frontmatter.",
"author": { "name": "YourName" },
"license": "MIT",
"repository": "https://github.com/madesh6554/forgmind-skills",
"keywords": ["your-skill", "claude-skill"]
}
.claude-plugin/marketplace.jsonOpen .claude-plugin/marketplace.json and add a new object inside the "plugins" array:
{
"name": "your-skill-name",
"description": "Same one-line description.",
"author": { "name": "YourName" },
"category": "productivity",
"source": {
"source": "git-subdir",
"url": "https://github.com/madesh6554/forgmind-skills.git",
"path": "skills/your-skill-name",
"ref": "main"
},
"homepage": "https://github.com/madesh6554/forgmind-skills"
}
Valid categories: design, productivity, development, testing, security
Push your branch and open a PR to main. Once merged, the skill appears in the Manage Plugins dialog for everyone.
User-level (skills/) | Project-level (projects/) | |
|---|---|---|
| Installs to | ~/.claude/commands/ | ./.claude/commands/ |
| Works in | Every project on your machine | That one project only |
| Shared via | Manage Plugins / install script | install-project.ps1 <name> or /use-project-skills |
| Best for | Generic tools (mockup, preview) | Project-specific workflows (deploy, migrate) |
| Format | SKILL.md + plugin.json | Plain .md file |
Run inside your project folder:
/use-project-skills sp-sales-log
Or via script:
# Windows — run from inside your project folder
.\install-project.ps1 sp-sales-log
# Linux/Mac — run from inside your project folder
bash install-project.sh sp-sales-log
| Skill | What it does |
|---|---|
/mockup | Auto-generate HTML visual mockup from conversation context |
/preview | Generate HTML preview using project's real theme colors |
/use-project-skills | Install a project's skills into the current project |
/forgmind-skills-guide | This guide |
/use-project-skills <name>)| Project | Skills |
|---|---|
sp-sales-log | /deploy-frontend /flutter-run /migrate-db /n8n-push |
SKILL.md and plugin.json.claude-plugin/marketplace.jsonskills/ · Project-specific → projects/<project-name>/Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub madesh6554/forgmind-skills --plugin forgmind-skills-guide