Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

midjourney-prompt-engineering中途提示工程

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

2,964

周安装

126

GitHub Stars

1

下载量

1,038
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:midjourney-prompt-engineering(中途提示工程)
来源仓库:https://github.com/justinperea/midjourney-cc-skill
仓库路径:skills/midjourney-prompt-engineering
安装命令:
npx skills add https://github.com/justinperea/midjourney-cc-skill --skill midjourney-prompt-engineering
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/justinperea/midjourney-cc-skill --skill midjourney-prompt-engineering

简介

用于提示词与系统指令的结构化整理。

  • 适合规范 Agent 行为边界、统一输出格式或优化可复用性。
  • 通过 GitHub 安装,应保留真实业务约束而非仅依赖示例。
  • 高风险操作需在提示词中明确确认步骤与失败处理。
  • midjourney-prompt-engineering 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Midjourney Prompt Learning System

A skill that knows Midjourney. The foundation is a structured understanding of Midjourney V7 built from the official documentation — every parameter, prompt syntax rule, reference system, and style code mechanic. On top of that, a learning loop: each session extracts patterns from what worked and what didn't, building a knowledge base of craft that improves first-attempt quality over time.

Architecture

You are a multimodal reasoning model. You don't need pipelines — you ARE the visual critic, gap analyzer, and prompt rewriter. You analyze MJ output images directly, score dimensions, identify gaps, and rewrite prompts.

The one thing you can't do natively is remember across sessions. That's what the persistent layer provides — the database, patterns, and evidence tracking.

Knowledge Foundation (ships with the skill)

FileWhat It ContainsSource
knowledge/v7-parameters.mdEvery V7 parameter, prompt structure rules, breaking changes from V6Official docs
knowledge/translation-tables.mdVisual quality → prompt keyword mappings (lighting, mood, material, color, composition)Official docs + tested refinements
knowledge/official-docs.mdDocumentation map linking each MJ feature to its official page URLdocs.midjourney.com
knowledge/failure-modes.mdDiagnostic framework for common MJ failure patternsSession-learned, evidence-backed
knowledge/learned-patterns.mdAuto-generated pattern summaries (grows through use)Extracted from sessions
knowledge/keyword-effectiveness.mdKeyword effectiveness rankings (grows through use)Extracted from sessions

The static files (v7-parameters, translation-tables, official-docs) are the skill's baseline knowledge — what a skilled MJ user would know from reading the documentation carefully. The dynamic files (failure-modes, learned-patterns, keyword-effectiveness) are populated through real sessions and grow over time.

Module Dependencies

ModulePurposeRequired MCP
Core rules (core-*)Reference analysis, prompt construction, scoring, iterationNone
Learning rules (learn-*)Pattern lifecycle, reflection, keyword trackingsqlite-simple
Automation rules (auto-*)Browser automation for midjourney.complaywright

Core only (manual): Load core-* rules. Copy prompts to MJ manually. Core + Learning: Add learn-* rules + sqlite MCP. Patterns persist across sessions. Full system: Add auto-* rules + playwright MCP. Hands-free iteration.

# SQLite (for learning rules)
claude mcp add sqlite-simple -- npx @anthropic-ai/sqlite-simple-mcp mydatabase.db

# Playwright (for automation rules)
claude mcp add playwright -- npx @playwright/mcp@latest --headed

# Initialize the database
sqlite3 mydatabase.db < schema.sql

Rules Quick Reference

RuleWhat It Covers
core-reference-analysis7-element visual framework, vocabulary translation
core-prompt-constructionV7 prompt structure, keyword practices, knowledge application
core-research-phaseCoverage assessment, community research workflow
core-assessment-scoring7-dimension scoring, confidence flags, agent limitations
core-iteration-frameworkGap analysis, action decisions, aspect-first approach
learn-data-modelDatabase schema, session structure, ID generation
learn-pattern-lifecycleConfidence graduation, decay, knowledge generation
learn-reflectionSession lifecycle, automatic reflection, contrastive analysis
auto-core-workflowsPrompt submission, smart polling, batch capture, animation
auto-reference-patternsSelector strategy, error handling, image analysis

Scoring

All iterations scored on 7 dimensions: subject, lighting, color, mood, composition, material, spatial. All 7 always scored (1.0 for "not applicable"). Scores are preliminary until user-validated. See rules/core-assessment-scoring.md.

Commands

CommandPurpose
/new-sessionStart a session with full knowledge application
/log-iterationLog a generation attempt with scoring and gap analysis
/reflectCross-session pattern analysis and knowledge extraction
/research [focus]Research community techniques for a challenge
/show-knowledge [category]Display learned patterns
/apply-knowledge <desc>Pattern-informed prompt for a description
/discover-stylesBrowse and catalog MJ style codes
/validate-pattern [id]Mark pattern as validated or contradicted
/forget-pattern [id]Deactivate a pattern

Key Principle

Every pattern must have logged evidence. The system learns from real iteration data, not assumptions. Confidence levels (low/medium/high) reflect how many times a pattern has been tested and its success rate.

Full Reference

For the complete compiled reference combining all rules, see AGENTS.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.53%
按下载量换算338

Claude

32.03%
按下载量换算332

Cursor

19.91%
按下载量换算207

Gemini CLI

9.19%
按下载量换算95

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills