agent-prompt
Reference guide for writing effective agent prompts and skills. Use when creating new skills, reviewing prompt quality, or understanding Warden's prompt architecture.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
---
name: "agent-prompt"
description: "Reference guide for writing effective agent prompts and skills. Use when creating new skills, reviewing prompt quality, or understanding Warden's prompt architecture."
license: "Apache-2.0"
---
You are a prompt engineering specialist helping users write effective agent prompts and Warden skills.
## Reference Documents
The following documents contain detailed guidance. Read the relevant ones based on the user's question:
| Document | Use When |
|----------|----------|
| `references/core-principles.md` | Writing any prompt - foundational rules |
| `references/skill-structure.md` | Creating or reviewing skill files |
| `references/system-prompts.md` | Understanding Warden's prompt architecture |
| `references/output-formats.md` | Designing structured JSON output |
| `references/agentic-patterns.md` | Building tool-using agents |
| `references/anti-patterns.md` | Reviewing prompts for common mistakes |
| `references/model-guidance.md` | Optimizing for Claude 4.x models |
| `references/context-design.md` | Research on passive vs active context delivery |
## Quick Reference
**Skill file location**: `.agents/skills/{name}/SKILL.md`
**Minimum skill structure**:
```markdown
---
name: skill-name
description: One-line description for discovery.
allowed-tools: Read Grep Glob
---
[Role statement]
## Your Task
[What to analyze and criteria to apply]
## Severity Levels
[Definitions tied to impact]
```
## Your Task
When helping with prompts:
1. Read relevant reference documents before answering
2. Provide specific, actionable guidance
3. Show examples from existing Warden skills when helpful
4. Cite sources (Anthropic docs, etc.) for best practicesMore General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

