Agent Plugins Marketplace
All plugins

prompt-engineering

v0.1.2

Prompt & context engineering team — agents (prompt-architect, prompt-implementation-engineer, prompt-reliability-engineer) that own the layer between the model and the app: prompt & context strategy (task decomposition, pattern selection across few-shot / CoT / decomposition / role, system-vs-user structure), the output-format contract (JSON mode, tool/function-calling schemas, few-shot curation, token budgeting), and prompt reliability (eval sets & regression, prompt versioning/CI, prompt-injection & jailbreak defense at the prompt layer). Provider-neutral. skills, a knowledge bank with Mermaid decision trees + a dated 2026 reference, best-practices, templates. Seams: which model → ai-coding-model-guidance / claude-api; retrieval → ai-rag-engineering; eval at scale → llm-evaluation-engineering; adversarial testing → ai-red-teaming; the app → claude-app-engineering / backend-engineering. Requires ravenclaude-core@>=0.7.0.

Claude Code4 Skills

By Matt CorbettLicense: MIT7 GitHub starsUpdated last week

Directory evidence

Runtimes
Claude Code
Parsed components
4 skill or MCP entries
Source updated
Sep 15, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install prompt-engineering for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install prompt-engineering@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/mcorbett51090/RavenClaude

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/prompt-engineering/.

Plugin files

plugins/prompt-engineering/
├── .claude-plugin/plugin.json
├── skills/context-window-engineering/SKILL.md
├── skills/prompt-eval-and-regression/SKILL.md
├── skills/prompt-pattern-selection/SKILL.md
└── skills/structured-output-design/SKILL.md

Included Skills4

context-window-engineeringskills/context-window-engineering/SKILL.md

Decide what actually goes in the context window — static instructions vs just-in-time retrieval vs conversation history vs tools — with a per-section token budget and lost-in-the-middle-aware ordering. Reach for this when the window is bloating, quality is dropping as context grows, cost/latency is climbing, or you're unsure what to keep vs compress. Pairs with prompt-pattern-selection.

prompt-eval-and-regressionskills/prompt-eval-and-regression/SKILL.md

Build the eval/regression set that gates prompt changes — labeled input/expected pairs over the hard cases, a scoring method (exact / schema-valid / rubric / LLM-judge with its caveat), a pass threshold, a CI gate with the model pinned, and injection cases. Reach for this before shipping a prompt, when a tweak silently broke other cases, or to defend against prompt injection. Pairs with structured-output-design.

prompt-pattern-selectionskills/prompt-pattern-selection/SKILL.md

Choose the prompting pattern — zero-shot, few-shot, chain-of-thought, decomposition/chaining, role framing, or self-consistency — by tracing the task against reliability need and token/latency cost. Reach for this when a prompt is inconsistent, when you're about to add examples 'just in case', or when one prompt is quietly doing several jobs. Pairs with structured-output-design.

structured-output-designskills/structured-output-design/SKILL.md

Make an LLM return reliably machine-parseable output — choose the enforcement mechanism (native JSON/schema mode, tool/function calling, constrained grammar, or prose+parser), define the schema, and build the parse/validate/repair path. Reach for this when output format drifts, when downstream code parses model output, or when 'return JSON' in prose keeps failing. Pairs with prompt-pattern-selection.

Plugin manifests1

plugins/prompt-engineering/.claude-plugin/plugin.json
{
  "name": "prompt-engineering",
  "version": "0.1.2",
  "description": "Prompt & context engineering team — agents (prompt-architect, prompt-implementation-engineer, prompt-reliability-engineer) that own the layer between the model and the app: prompt & context strategy (task decomposition, pattern selection across few-shot / CoT / decomposition / role, system-vs-user structure), the output-format contract (JSON mode, tool/function-calling schemas, few-shot curation, token budgeting), and prompt reliability (eval sets & regression, prompt versioning/CI, prompt-injection & jailbreak defense at the prompt layer). Provider-neutral. skills, a knowledge bank with Mermaid decision trees + a dated 2026 reference, best-practices, templates. Seams: which model → ai-coding-model-guidance / claude-api; retrieval → ai-rag-engineering; eval at scale → llm-evaluation-engineering; adversarial testing → ai-red-teaming; the app → claude-app-engineering / backend-engineering. Requires ravenclaude-core@>=0.7.0.",
  "author": {
    "name": "Matt Corbett"
  },
  "homepage": "https://github.com/mcorbett51090/RavenClaude",
  "license": "MIT",
  "keywords": [
    "prompt-engineering",
    "context-engineering",
    "llm",
    "few-shot",
    "chain-of-thought",
    "structured-output",
    "json-mode",
    "tool-use",
    "function-calling",
    "prompt-injection",
    "jailbreak-defense",
    "prompt-eval",
    "prompt-versioning",
    "guardrails",
    "token-budget"
  ],
  "requires": {
    "plugins": [
      "ravenclaude-core@>=0.7.0"
    ]
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[prompt-engineering on Agent Plugins Marketplace](https://pluginsmp.com/plugins/prompt-engineering)