/ 디렉터리 / 플레이그라운드 / prompt-master
● 커뮤니티 nidhinjs ⚡ 바로 사용

prompt-master

제작: nidhinjs · nidhinjs/prompt-master

A meta-skill that turns vague requests into tight, effective prompts for Claude, ChatGPT, Midjourney, Cursor, and 30+ other AI tools.

Prompt Master runs a 6-step pipeline on your ask: detect target tool, extract intent across 9 dimensions, clarify if needed, pick from 12 prompt templates, audit for waste, and deliver a clean copy-ready prompt. It preserves prior decisions in a Memory Block so your follow-ups don't contradict the setup.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

prompt-master-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "prompt-master-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nidhinjs/prompt-master",
        "~/.claude/skills/prompt-master"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "prompt-master-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nidhinjs/prompt-master",
        "~/.claude/skills/prompt-master"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "prompt-master-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nidhinjs/prompt-master",
        "~/.claude/skills/prompt-master"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "prompt-master-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nidhinjs/prompt-master",
        "~/.claude/skills/prompt-master"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "prompt-master-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/nidhinjs/prompt-master",
        "~/.claude/skills/prompt-master"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "prompt-master-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/nidhinjs/prompt-master",
          "~/.claude/skills/prompt-master"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add prompt-master-skill -- git clone https://github.com/nidhinjs/prompt-master ~/.claude/skills/prompt-master

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: prompt-master

Craft a Midjourney prompt that actually matches your mental image

👤 Designers and marketers working with image models ⏱ ~5 min beginner

언제 쓸까: Your first 3 Midjourney generations came back wrong and you're burning fast-hours.

흐름
  1. Describe what you want in plain language
    Use prompt-master. I want a hero image for a fintech landing page — serious, warm, not boring.✓ 복사됨
    → Claude asks 1-2 clarifying questions about aspect ratio and style anchors
  2. Get the optimized prompt
    Yes — 16:9, inspired by Monocle magazine.✓ 복사됨
    → A Midjourney-ready prompt with weights, --ar, --style, --s params

결과: A reusable prompt you can vary slightly for a full campaign.

함정
  • Skill over-clarifies for a simple request — Say 'skip clarification, one-shot it'

Write a tight Cursor system prompt for a recurring refactor

👤 Developers who use Cursor for codebase-wide changes ⏱ ~10 min intermediate

언제 쓸까: You're about to run the same refactor across 20 files and want a prompt that actually constrains the model.

흐름
  1. State the refactor
    prompt-master — write a Cursor prompt: convert all React class components in src/legacy to functional components with hooks, preserve prop types, no behavioral changes.✓ 복사됨
    → Structured prompt with explicit constraints, negative examples, output format
  2. Test on one file first
    Apply the prompt to src/legacy/UserList.tsx and show the diff. Does it hold?✓ 복사됨
    → Clean diff that matches the stated constraints

결과: A prompt you can paste into Cursor and trust across the full directory.

함정
  • Prompt too generic, model freelances — Ask prompt-master to add at least one concrete before/after example

조합

다른 MCP와 조합해 10배 효율

Use prompt-master to structure the intent, then the Nano Banana skill to pick a tested image prompt pattern

Use prompt-master to nail down what I want, then hand off to nano-banana-pro-prompts for the final image prompt.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
Tool detection user request First stage of the pipeline 0
Intent extraction request + context After tool detection 0
Clarification missing-critical-info flags Only when success criteria unclear 0
Framework selection task type Before composition 0
Efficiency audit draft prompt Final polish step 0

비용 및 제한

운영 비용

API 쿼터
None
호출당 토큰
1-3k per prompt optimization — small
금액
Free — skill is local prompts
The whole point of the skill is reducing wasted tokens downstream; the upfront cost is tiny.

보안

권한, 시크릿, 파급범위

자격 증명 저장: No credentials — skill is pure prompts
데이터 외부 송신: None

문제 해결

자주 발생하는 오류와 해결

Skill over-asks clarifying questions

Add 'make reasonable assumptions, don't ask more than 1 question' to your request.

Output prompt is too long

Explicitly request 'efficient mode' — the audit step will strip harder.

Memory Block loses context between sessions

Memory is per-working-directory; run follow-ups from the same folder.

대안

prompt-master 다른 것과 비교

대안언제 쓰나단점/장점
Manual prompting with a template libraryYou already know the patterns and just need a referenceFaster for experts; prompt-master wins for non-obvious cases

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기