How Folders Work
Use slash notation in prompt names
Folders are virtual—they don’t exist as separate entities. Instead, create folders by including forward slashes (Hierarchical folder path:Nested folders:The ABV platform automatically treats everything before the final segment as folder path.
/) in prompt names. Each slash-separated segment becomes a folder level.Flat prompt name:UI automatically creates folder hierarchy
When you create a prompt with slashes in its name, the ABV UI automatically renders the folder structure in the Prompt Management interface.Example hierarchy:Folders appear as collapsible sections, allowing you to expand and navigate the hierarchy visually.
Navigate through folders in UI
In the ABV dashboard Prompt Management section:
- Click folder names to expand/collapse them
- View all prompts within a folder
- Filter by folder to narrow search results
- Create new prompts within folders by entering the folder path in the name field
Reference prompts with folder paths in code
When fetching prompts via SDK or API, include the full folder path in the prompt name.Folders are purely organizational—they don’t change how you reference prompts, they’re just part of the name.
Organization Patterns
Team-Based Organization
Team-Based Organization
Separate prompts by team ownership to clarify responsibility and prevent conflicts.Folder Structure:Benefits:
- Clear ownership: Each team manages their own prompts
- No naming conflicts:
marketing/email-campaignvs.sales/email-campaign - Access control: Assign team-specific permissions (if RBAC allows)
Environment-Based Organization
Environment-Based Organization
Separate prompts by deployment environment to prevent production prompts from mixing with experiments.Folder Structure:Benefits:
- Environment isolation: Production prompts clearly separated
- Safe experimentation: Test prompts isolated from production
- Historical record: Archive deprecated prompts instead of deleting
production, staging). Folders provide organizational structure; labels provide deployment control.Feature-Based Organization
Feature-Based Organization
Group prompts by product feature or user-facing functionality.Folder Structure:Benefits:
- Feature clarity: All prompts for a feature in one place
- Easier refactoring: Update all onboarding prompts together
- Discoverability: New team members quickly find relevant prompts
Multi-Product Organization
Multi-Product Organization
Separate prompts by product line when managing multiple products in one ABV account.Folder Structure:Benefits:
- Product isolation: Each product’s prompts clearly separated
- Shared components: Common prompts in
shared/folder - Independent evolution: Update product-a prompts without affecting product-b
Nested Folder Hierarchies
Nested Folder Hierarchies
Combine organizational strategies with nested folders for complex prompt libraries.Folder Structure:Best Practice: Limit folder depth to 2-3 levels. Deeper hierarchies become difficult to navigate and reference.
Implementation Examples
Create Prompts in Folders via UI
Create Prompts in Folders via UI
- Navigate to Prompt Management in ABV dashboard
- Click Create Prompt
- In the Name field, enter the full folder path with slashes:
- Configure the prompt (type, content, labels, etc.)
- Click Save
- Creates the folder structure (
customer-support/→billing/) - Displays the prompt under the nested folders
- Allows you to expand/collapse folders for navigation
- Expand
customer-support/folder - Expand
billing/subfolder - See
refund-policyprompt listed
Create Prompts in Folders via Python SDK
Create Prompts in Folders via Python SDK
Install ABV SDK:Create prompts with folder paths:Fetch prompts from folders:
Create Prompts in Folders via JavaScript/TypeScript SDK
Create Prompts in Folders via JavaScript/TypeScript SDK
Install ABV SDK:Create prompts with folder paths:Fetch prompts from folders:
Organize Existing Prompts into Folders
Organize Existing Prompts into Folders
If you have existing prompts without folder structure, reorganize them by creating new prompts with folder paths.Migration approach:Important: Update all code references to use the new folder paths before removing old prompts.
Next Steps
Get Started with Prompt Management
Complete quickstart guide for creating, versioning, and deploying prompts
Prompt Composability
Build modular prompts by referencing reusable components
Version Control
Deploy and rollback prompts safely using labels and versions
Prompt Data Model
Deep dive into prompt structure, fields, and versioning