一键导入
prompt-principles
Load when writing or reviewing prompts, skills, or agents. Gives the core heuristics for writing prompts that steer LLM behavior reliably.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Load when writing or reviewing prompts, skills, or agents. Gives the core heuristics for writing prompts that steer LLM behavior reliably.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Load when writing or reviewing agent .md files. Covers agent artifact shape, frontmatter, and Meridian-specific agent conventions.
Load when writing or reviewing skills. Covers SKILL.md shape, loading mechanics, and how to structure bundled resources.
Load when an agent, skill, or prompt needs strict review. Focuses on failure modes, severity, and clear feedback.
| name | prompt-principles |
| type | principle |
| description | Load when writing or reviewing prompts, skills, or agents. Gives the core heuristics for writing prompts that steer LLM behavior reliably. |
| model-invocable | true |
Use /llm-writing alongside this skill.
An agent sees a frozen prompt and a bounded context window. It will not reliably infer which parts are foundational, optional, or incidental unless the prompt makes that hierarchy clear. Make the task, boundaries, and success criteria explicit. Use structure and placement to keep governing instructions easy to find.
Test each line: does removing it change how the model behaves? If not, delete it. Models already know how to code, review, write tests, and follow instructions. Write only what steers the model away from its default or toward something non-obvious.
Detailed steps produce consistent behavior; use them when predictability matters. But prescription crowds out the model's judgment. When you want the model to think or adapt, state the goal and the reasoning, then let it work. The right amount of prescription depends on what the task needs, not on how thorough the prompt feels.
The body carries what the agent needs every run. Resources carry depth it reaches when the task demands it. If something is situational, it belongs in a resource, not the always-loaded layer.
Name explicit artifacts. Say what the agent should produce. State what success looks like. When independence matters, verify in a separate spawn.
Load-bearing prompts — agent bodies, core skills — state intent: what to delegate, what context to pass, what the result must satisfy. Environment mechanics (CLI flags, tool names, launch commands) belong to the environment: the harness's own system prompt, or the tool's -h/help surface the agent reads at runtime.
The test: would this prompt survive a harness swap unchanged? "Spawn a researcher in the background and collect the result before your verdict" ports; a flag plus a wait command does not. Naming what to compose is intent, not mechanics: @agent references and skill attachments (@coder --skills testing) declare the staffing and survive the test. When mechanics must be written down, contain them in one skill so a new environment swaps that skill, not every agent.
Load resources/prompt-level.md for prompt text, attention, structure, and explanation. Load resources/skill-level.md for skill boundaries, loading, and progressive disclosure. Load resources/agent-level.md for agent role, boundary, description, and cognitive mode. Load resources/system-level.md for handoffs, verification, model staffing, and multi-agent coordination.