Instruction sets
Instruction sets let you create curated collections of documents that AI assistants can access in full. Unlike semantic search which returns relevant chunks, instruction sets load complete documents as context.
When to use instruction sets
| Scenario | Use instruction sets |
|---|---|
| Brand voice guidelines | Perfect |
| Sales playbooks | Perfect |
| Company procedures | Perfect |
| Employee onboarding | Perfect |
| Large Q&A database (100+ docs) | Use Search links instead |
How it works
Your documents -> Instruction set (curated order) -> Public link -> AI reads full content
- Create an instruction set from your workspace documents
- Arrange the order with drag & drop
- Share the link with your team
- AI loads complete content - no chunking, no search
Key difference: instruction sets vs search links
| Feature | Instruction sets | Search links |
|---|---|---|
| Content loading | Full documents | Relevant chunks |
| Document limit | 20 documents, 100 KB | Unlimited |
| Best for | Instructions, procedures, guidelines | Q&A over large knowledge bases |
| How AI uses it | Reads everything upfront | Searches on demand |
Use both together! Instruction sets for core instructions, search links for reference material.
Creating an instruction set
- Go to your workspace
- Click the Instruction Sets tab
- Click Create instruction set
- Add a name and description
- Select documents to include
- Arrange the order with drag & drop
- Click Create
Choosing documents
When selecting documents, consider:
- Order matters - AI reads documents in the order you set
- Size limit - Total content must be under 100 KB (~128k tokens)
- Quality over quantity - 5 focused documents work better than 20 scattered ones
Document types
Documents can be marked as:
- Knowledge - Regular documents, also searchable via RAG
- Instruction - Documents only available in instruction sets, not searchable
Use the Instruction type for prompts and guidelines you don't want appearing in search results.
Using instruction sets
Option 1: Copy and paste
- Open your instruction set link
- Click Copy full context
- Paste into ChatGPT, Claude, or any AI
Option 2: Give the link to AI
AI assistants with browsing capability can read the link directly:
Read the instructions at: https://api.synjar.com/s/abc123
Then help me write a marketing email.
Option 3: API integration
For developers, fetch the content programmatically:
const response = await fetch(
'https://api.synjar.com/s/abc123/content'
);
const { content, documents } = await response.json();
// content: Full text of all documents
// documents: Array with individual document data
Public link security
| What link holders CAN do | What they CANNOT do |
|---|---|
| Read all documents in the set | Edit or delete documents |
| Copy the content | Access other workspaces |
| Share the link with others | See documents not in the set |
Best practices
- Review before publishing - Everything in the set becomes accessible
- Use separate sets for different audiences - Internal vs external
- Revoke by deleting - Delete the set when access should end
Size monitoring
The interface shows a progress bar for your instruction set size:
| Status | Size | Meaning |
|---|---|---|
| Green | 0-60% | Plenty of room |
| Yellow | 60-80% | Consider reviewing |
| Orange | 80-95% | Near limit |
| Red | >95% | Can't add more |
100 KB is approximately 128,000 tokens. This leaves room for user questions when using with most AI models.
Managing instruction sets
Editing
- Click on an instruction set to open it
- Add or remove documents
- Drag and drop to reorder
- Changes are saved automatically
Document order
The order of documents affects how AI processes them. Generally:
- Put most important instructions first
- Group related content together
- End with reference material
Updating content
When you edit a document in your workspace, the change is immediately reflected in all instruction sets that include it. No need to update the set itself.
Keyboard shortcuts
| Shortcut | Action |
|---|---|
| Ctrl+S / Cmd+S | Save changes |
| Esc | Go back to workspace |
| Space | Toggle drag mode for focused item |
| Arrow keys | Reorder when in drag mode |
Use case examples
Brand voice guidelines
Create an instruction set with:
- Tone of voice document
- Vocabulary guidelines
- Example communications
- Do's and don'ts
Share with your marketing team. Everyone's AI writes in your brand voice.
Sales playbook
Create an instruction set with:
- Product overview
- Pricing information
- Objection handling
- Competitive comparisons
New sales reps can ask AI about any sales scenario.
Employee onboarding
Create an instruction set with:
- Company overview
- Team structure
- Common procedures
- FAQ
New employees get instant answers to their questions.
Troubleshooting
"Modified by another user" error
This appears when someone else edited the set while you had it open.
Solution: Refresh the page to see the latest changes, then make your edits again.
"Size limit exceeded" error
The total content exceeds 100 KB.
Solutions:
- Remove some documents
- Use shorter documents
- Split content into multiple instruction sets
"Document limit exceeded" error
You've reached the 20 document limit.
Solution: Remove documents you no longer need, or create a separate instruction set.
Limits
| Limit | Value |
|---|---|
| Maximum size | 100 KB |
| Maximum documents | 20 |
| Sets per workspace | 50 |
FAQ
What happens when I exceed 100 KB?
You won't be able to add more documents. The button will be disabled and show a tooltip explaining the limit. Remove documents or use shorter ones to stay under the limit.
Can I use the same document in multiple sets?
Yes! Documents can belong to multiple instruction sets. Changes to the original document are reflected in all sets that include it.
What's the difference between KNOWLEDGE and INSTRUCTION purpose?
- KNOWLEDGE documents are searchable via RAG (semantic search) AND can be added to instruction sets
- INSTRUCTION documents are only available in instruction sets, not searchable
Use INSTRUCTION for prompts and guidelines you don't want appearing in search results.
How do I reorder documents with keyboard?
- Tab to the document you want to move
- Press Space to enter drag mode
- Use Arrow Up/Down to move the document
- Press Space again to drop
See also
- Search links - For searching large knowledge bases
- Organizing with tags - Tag documents for easy selection
- API reference - Build integrations