prompt-engineer

Creates, improves, and analyzes prompts for Claude Desktop, Claude Code, N8N, Notion, and OpenClaw.

1|Updated Apr 19, 2026
One-click install
npx skills add https://github.com/fercosnt/fernando-claude-marketplace --skill prompt-engineer-fercosnt
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: prompt-engineer
Source: https://github.com/fercosnt/fernando-claude-marketplace/tree/main/prompt-suite/skills/prompt-engineer
Command: npx skills add https://github.com/fercosnt/fernando-claude-marketplace --skill prompt-engineer-fercosnt

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Writing effective prompts for LLMs is hard: vague instructions produce inconsistent outputs, techniques like Chain of Thought and Few-Shot are often misapplied, and prompts built for one platform fail on another. This Skill applies official Anthropic prompt engineering techniques to create, improve, or diagnose prompts tailored to each target platform. ## Core Features & Use Cases - Three operating modes: CRIAR (adaptive interview plus construction), MELHORAR (diagnosis plus rewrite with before/after scores), and ANALISAR (decomposition plus prioritized recommendations). - Platform-aware generation: Detects the target platform (Claude Desktop, Claude Code, N8N, Notion Custom AI, OpenClaw) and loads platform-specific patterns, including a multi-model adaptation table for GPT-4, Gemini, and Llama. - Quality scorecard: Evaluates every prompt against a 4-dimension scorecard with a 7.5/10 delivery threshold, plus a practical validation test suggestion. - Use Case: A user says "my N8N support-ticket classifier prompt gives inconsistent JSON." The Skill detects ANALISAR mode and the N8N platform, diagnoses missing few-shot examples and output spec, and rewrites the prompt with structured JSON output and edge-case rules. ## Quick Start Ask the assistant to create a prompt for your use case, for example: "Create a system prompt for an N8N agent that classifies support tickets into categories and priority."

Frequently Asked Questions about prompt-engineer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a system prompt for an N8N AI agent?

Provide your goal and expected output format, and the Skill runs a short adaptive interview before building the prompt. For N8N it loads agent-specific patterns, keeps the prompt concise, and enforces structured output such as strict JSON for downstream nodes.

How to improve a prompt that gives inconsistent results?

Use the MELHORAR mode: paste your existing prompt and the Skill diagnoses it across clarity, structure, techniques, anti-patterns, and platform fit. It then returns an annotated before/after rewrite with a score comparison showing what changed and why.

What prompt engineering techniques does Anthropic recommend?

The Skill applies official Anthropic techniques: clarity and specificity, XML tag structuring, Chain of Thought, Few-Shot examples, Role Prompting, prefilling, prompt chaining, long-context optimization, and hallucination prevention. The references file details all 13 techniques with examples.

Can I use the same prompt for Claude, GPT-4, and Gemini?

Not directly. The Skill includes a multi-model adaptation table: GPT-4 lacks native XML support and prefilling, Gemini has partial XML support, and Llama needs more explicit Chain of Thought. It adapts techniques per target model when asked.

Why does my prompt produce hallucinated or made-up facts?

Hallucinations usually come from missing grounding instructions. The Skill adds anti-hallucination patterns such as permission to say "I don't know", citation requirements, and explicit flagging of assumptions, which sharply reduce invented answers.

When should I use prompt chaining instead of a single prompt?

Use chaining when a task has three or more distinct steps, conditional branches, or when one step's output feeds the next. The Skill detects when complexity exceeds a single prompt and recommends splitting into a chained sequence with XML handoffs.