Prompt Engineering & Technical Writing
Create effective AI prompts and technical content. Covers prompt structure, anti-patterns, cross-platform compatibility, and WordPress publishing.
Prompt Structure
Core Prompts (< 2000 tokens)
Self-contained, portable across all platforms:
# [Prompt Name]
> **Category**: [category]
> **Platforms**: All
[Prompt content — complete instructions in a single block]
## Usage
[How to use]
## Variables
- [VARIABLE]: [description]
Extended Prompts
Unlimited length, may reference skills or tools:
# [Prompt Name]
> **Category**: [category]
> **Platforms**: Claude Code | Cursor
<prompt>
[Full prompt content with tool references]
</prompt>
## Usage
[Platform-specific instructions]
## Customization
[What can be modified]
Writing Rules
Anti-Patterns (Never Use)
Banned words: delve, tapestry, myriad, leverage, utilize, seamless, robust, paradigm, synergy, cutting-edge, game-changer
Banned transitions: furthermore, moreover, additionally, subsequently, consequently
Banned openings: "In today's...", "Have you ever...", "Let's dive into..."
Good Practices
- Use active voice and present tense
- Use second person ("you")
- Use contractions (it's, don't, won't)
- Vary sentence and paragraph lengths
- Be direct — state things without hedging
- No unnecessary qualifiers (very, quite, rather)
Technical Blog Posts
When drafting from a codebase:
- Research: Read recent commits, review changed files, note design decisions
- Plan: Opening hook, overview, problem/value, technical details, challenges, future
- Write: 500-1200 words, code snippets 5-15 lines, save to
.blog/YYYY-MM-DD-slug.md
- Publish (optional): Create WordPress draft via REST API
Prompt Quality Dimensions
Score each 1-5:
| Dimension |
What to Check |
| Structure |
Title, metadata, proper tags, usage section |
| Clarity |
Unambiguous instructions, documented variables |
| Effectiveness |
Enough context, specific constraints, defined output |
| Compatibility |
Works without tools, under 2000 tokens (core), no hard-coded paths |
| Style |
No AI indicator words, active voice, current WP version |
Cross-Platform Tips
- ChatGPT/Gemini: No tool access — prompts must be self-contained
- Claude Code: Can reference files, use skills, run commands
- Cursor: Can read project files, uses rules files
- Core prompts must work on the lowest common denominator
Token Optimization
For core prompts under 2000 tokens:
- Use concise instructions, not verbose explanations
- Prefer lists over paragraphs
- Include only essential code examples
- Reference skills instead of duplicating knowledge
- Remove redundant phrasing
References
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: prompt-engineering-technical-writing3description: Craft effective AI prompts and technical blog posts. Covers prompt structure, cross-platform compatibility, token optimization, anti-patterns, and WordPress publishing workflows. Use when this capability is needed.4---56# Prompt Engineering & Technical Writing78Create effective AI prompts and technical content. Covers prompt structure, anti-patterns, cross-platform compatibility, and WordPress publishing.910## Prompt Structure1112### Core Prompts (< 2000 tokens)1314Self-contained, portable across all platforms:1516```markdown17# [Prompt Name]1819> **Category**: [category]20> **Platforms**: All2122[Prompt content — complete instructions in a single block]2324## Usage25[How to use]2627## Variables28- [VARIABLE]: [description]29```3031### Extended Prompts3233Unlimited length, may reference skills or tools:3435```markdown36# [Prompt Name]3738> **Category**: [category]39> **Platforms**: Claude Code | Cursor4041<prompt>42[Full prompt content with tool references]43</prompt>4445## Usage46[Platform-specific instructions]4748## Customization49[What can be modified]50```5152## Writing Rules5354### Anti-Patterns (Never Use)5556**Banned words**: delve, tapestry, myriad, leverage, utilize, seamless, robust, paradigm, synergy, cutting-edge, game-changer5758**Banned transitions**: furthermore, moreover, additionally, subsequently, consequently5960**Banned openings**: "In today's...", "Have you ever...", "Let's dive into..."6162### Good Practices6364- Use active voice and present tense65- Use second person ("you")66- Use contractions (it's, don't, won't)67- Vary sentence and paragraph lengths68- Be direct — state things without hedging69- No unnecessary qualifiers (very, quite, rather)7071### Technical Blog Posts7273When drafting from a codebase:74751. **Research**: Read recent commits, review changed files, note design decisions762. **Plan**: Opening hook, overview, problem/value, technical details, challenges, future773. **Write**: 500-1200 words, code snippets 5-15 lines, save to `.blog/YYYY-MM-DD-slug.md`784. **Publish** (optional): Create WordPress draft via REST API7980## Prompt Quality Dimensions8182Score each 1-5:8384| Dimension | What to Check |85|---|---|86| Structure | Title, metadata, proper tags, usage section |87| Clarity | Unambiguous instructions, documented variables |88| Effectiveness | Enough context, specific constraints, defined output |89| Compatibility | Works without tools, under 2000 tokens (core), no hard-coded paths |90| Style | No AI indicator words, active voice, current WP version |9192## Cross-Platform Tips9394- **ChatGPT/Gemini**: No tool access — prompts must be self-contained95- **Claude Code**: Can reference files, use skills, run commands96- **Cursor**: Can read project files, uses rules files97- Core prompts must work on the lowest common denominator9899## Token Optimization100101For core prompts under 2000 tokens:102103- Use concise instructions, not verbose explanations104- Prefer lists over paragraphs105- Include only essential code examples106- Reference skills instead of duplicating knowledge107- Remove redundant phrasing108109## References110111- [WordPress Documentation Style Guide](https://make.wordpress.org/docs/style-guide/)112- [richtabor/skills](https://github.com/richtabor/skills)113- [Anthropic Prompt Engineering Guide](https://docs.anthropic.com/en/docs/build-with-claude/prompt-engineering)114115---116> Converted and distributed by [TomeVault](https://tomevault.io/claim/courtneyr-dev) — claim your Tome and manage your conversions.117<!-- tomevault:4.0:skill_md:2026-04-11 -->