Content Type
Static (Markdown)
Trigger Keywords
promptllmaiinstructioncontextworkstreamanalyzefetchinteraction
Instructions Preview
# LLM Prompting Skill
Guide for crafting effective prompts for various LLM-powered operations in Vertesia, including document analysis, workstreams, and agent interactions.
This is about the prompt *text* passed to an LLM operation. For creating and versioning reusable
Vertesia Prompt templates in Studio — Handlebars/JST, input parameters, `create_prompt` and friends
— see the Studio `prompt_engineering` guide instead.
## Core Principles
### 1. Clarity and Specificity
```
## Bad
"Analyze this document"
## Good
"Extract the following from this SEC 10-K filing:
1. Total revenue for the fiscal year
2. Year-over-year revenue growth percentage
3. Top 3 risk factors by materiality
4. Any changes in executive compensation"
```
### 2. Structure and Format
Always specify the expected output format:
```
## With Format Specification
"Analyze the customer feedback and provide:
**Summary**: 2-3 sentence overview
**Sentiment Breakdown**:
- Positive: X%
- Neutral: X%
- Negative: X%
**Top...