From skillkit-essentials
Selects optimal LLM prompting techniques (Zero-Shot, Few-Shot, CoT, ReAct, ToT, Self-Consistency) and formats (XML, JSON, YAML, Natural Language) based on task complexity, target LLM, and needs.
npx claudepluginhub rfxlamia/skillkit --plugin skillkit-essentialsThis skill uses the workspace's default tool permissions.
This skill helps create highly effective prompts by selecting the optimal technique and format based on task characteristics. Analyzes complexity, target LLM, accuracy needs, and context to recommend the best approach from 10+ proven methods and 4 structured formats.
references/advanced-combinations.mdreferences/chain-of-thought.mdreferences/decision_matrix.mdreferences/few-shot.mdreferences/json-format.mdreferences/natural-language.mdreferences/pitfalls.mdreferences/prompt-chaining.mdreferences/react.mdreferences/self-consistency.mdreferences/tree-of-thoughts.mdreferences/xml-format.mdreferences/yaml-format.mdreferences/zero-shot.mdSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
This skill helps create highly effective prompts by selecting the optimal technique and format based on task characteristics. Analyzes complexity, target LLM, accuracy needs, and context to recommend the best approach from 10+ proven methods and 4 structured formats.
Answer these questions to find the right approach:
For detailed decision matrix: references/decision_matrix.md
| Need | Method | Best Format | Reference |
|---|---|---|---|
| Simple task | Zero-Shot | Natural Language | zero-shot.md |
| Style consistency | Few-Shot | Same as examples | few-shot.md |
| Multi-step reasoning | CoT | Natural/XML | chain-of-thought.md |
| Tool interaction | ReAct | JSON | react.md |
| Complex planning | ToT | YAML/XML | tree-of-thoughts.md |
| High confidence | Self-Consistency | Any | self-consistency.md |
| Target | Complexity | Use Case | Format | Reference |
|---|---|---|---|---|
| Claude | High | Human | XML | xml-format.md |
| Claude | Medium | API | JSON | json-format.md |
| GPT | Any | API | JSON | json-format.md |
| Any | Low | Human | Natural | natural-language.md |
| Any | Config | Human-editable | YAML | yaml-format.md |
| Multi-LLM | Any | Portable | JSON | json-format.md |
Task: [X]
Requirements: [Y]
Output: [Z]
Task: [X]
Examples:
- Input: A → Output: B
- Input: C → Output: D
Your turn: Input: E → Output: ?
Problem: [X]
Let's think step by step:
1. [Step 1]
2. [Step 2]
3. [Step 3]
Answer: [Y]
Thought: [Reasoning]
Action: [Tool/action]
Observation: [Result]
[Repeat]
For complete templates and examples, see individual method references.
Bad: "Make this better" Good: "Improve by: 1) Add error handling, 2) Optimize to O(n log n), 3) Add docs"
Bad: JSON for Claude complex hierarchy Good: XML for Claude, JSON for GPT/APIs
Bad: "Extract features in structured format" Good: Show 2-3 concrete input→output examples
Bad: Tree of Thoughts for "Convert 25°C to F" Good: Simple zero-shot instruction
For complete pitfalls guide: references/pitfalls.md
Ask LLM to help design the prompt:
I need a prompt for [task].
Task characteristics: [complexity, LLM, output use, accuracy needs]
Recommend: 1) Technique, 2) Format, 3) Draft template, 4) Why
Break complex tasks into sequential prompts. See: references/prompt-chaining.md
✓ More Efficient ✗ Less Efficient
- Zero-shot for simple - 10+ examples
- Concise instructions - Verbose repetition
- JSON for API parsing - XML for API parsing
- Direct examples - Over-explained examples
Typical token counts:
When creating a prompt:
templates/ - Ready-to-use templates for common scenarios (coming soon)Navigate to specific references above for detailed implementation guides, templates, and examples.