Managing Collections
Create and curate acronym collections for learning and onboarding
Managing Collections
Collections are curated lists of acronyms organized around themes, teams, or onboarding flows. This guide covers creating, editing, and managing collections.
What Are Collections?
Collections group related acronyms into logical sequences:
- Onboarding Collections: New hire orientation (company overview, department-specific terms)
- Project Collections: Terms specific to a project or initiative
- Team Collections: Acronyms used by specific departments
- Role Collections: Terminology for specific job functions
- Custom Collections: Any curated subset for reference
Collections differ from categories:
| Feature | Categories | Collections |
|---|---|---|
| Purpose | Organize by domain/function | Curate for learning/reference |
| Structure | Flat list | Ordered sequence |
| Use Case | Taxonomy | Onboarding, training, walkthroughs |
| Multiple Assignments | Each definition in multiple categories | Definitions in multiple collections |
| Reordering | N/A | API-based reordering |
Accessing Collections
- From the main navigation, click Admin → Collections
- Or navigate directly to
/admin/collections
Creating Collections
Create a new collection:
Create a Collection
- Click Create Collection button (top-right)
- Enter Collection Name:
- Examples: "New Hire Onboarding", "Engineering 101", "Sales Terminology"
- Max 100 characters
- Enter Description:
- Explain the purpose and audience
- Example: "Essential acronyms for new engineering hires in their first week"
- (Optional) Mark as Onboarding Collection: Check this box to show to all new users
- Click Create
After creation, you'll be taken to the collection editor to add items.
Collection Metadata
Each collection maintains:
- ID: Unique system identifier
- Name: Collection title
- Description: Purpose and scope
- Created By: User who created it
- Created At: Creation timestamp
- Updated At: Last modification timestamp
- Onboarding Flag: Whether shown to new users
- Item Count: Number of acronyms included
Adding Items to Collections
Add acronyms to a collection:
Add an Acronym
- Open a collection in edit view
- Click Add Item or + Add Acronym
- Search for acronym by term or definition
- Click to select
- Item is added to the end of the list
Bulk Add Items
Add multiple acronyms at once:
- In the collection, click Bulk Add
- Paste acronym terms (one per line) or upload CSV
- System matches against existing acronyms
- Review matches (some may not be found)
- Click Add Selected
Add by Category
Quickly add all acronyms from a category:
- Click Add by Category
- Select category from dropdown
- Review list of acronyms to be added
- Click Add All Acronyms
All acronyms in the category are added to the collection in alphabetical order.
Removing Items from Collections
Remove an acronym from a collection:
- In the collection editor, find the item
- Click the X or Remove button
- Item is removed (acronym is not deleted, just unlinked)
Bulk Remove
Remove multiple items:
- Select items using checkboxes
- Click Bulk Actions → Remove Selected
- Confirm
Reordering Items
Collections maintain a specific order for progressive learning:
Reorder via API
The collection item reorder endpoint allows programmatic ordering:
PUT /api/v1/collections/{id}/items/reorderPayload:
{
"itemIds": ["acr1", "acr2", "acr3"]
}Items will be reordered to match the provided sequence.
Reorder via UI
When collection management UI is available:
- In the collection editor, items can be reordered via drag-and-drop or position inputs
- Order saves automatically via the reorder API
Collection Settings
Configure collection behavior and visibility:
Edit Collection Settings
- Click Settings in collection view
- Update:
- Name: Collection title
- Description: Purpose and scope
- Onboarding Collection: Show to all new users (yes/no)
- Visibility:
- Public: Visible to all workspace members
- Private: Only accessible via direct link
- Click Save Settings
Onboarding Flag
When a collection is marked as an Onboarding Collection:
- Shown to new users during onboarding flow
- Appears in onboarding checklist: "Learn [Collection Name]"
- Suggested in the command palette
- Included in new user email
Viewing Collections (Team Member Perspective)
Team members can browse and interact with collections:
Browse Collections
- Click Collections in main navigation
- See all public collections
- Filter by:
- Onboarding: Only onboarding collections
- Recently Viewed: Recently accessed collections
View a Collection
- Click a collection to open
- See all items in order
- Click each acronym to view full definition
- Navigation arrows: Previous/Next acronym
Deleting Collections
Remove a collection from your workspace:
Delete a Collection
- Click Actions → Delete
- Review impact: No acronyms are deleted, only the collection link
- Confirm deletion
The collection is removed, but all acronyms remain in your workspace.
Bulk Delete Collections
Remove multiple collections:
- Select collections using checkboxes
- Click Bulk Actions → Delete
- Confirm
Collection Workflows
Onboarding Workflow
For new user onboarding:
- Create Onboarding Collection: Company overview + department-specific terms
- Mark as Onboarding: Check "Show to new users"
- Send Welcome Email: Links to collection
- Follow-up: Send reminder after week 1 if incomplete
Project Launch
For a new project:
- Create Collection: Project name and scope
- Add Acronyms: Team-specific terminology
- Share Link: Send to project team members
- Mark Private: Only visible to invited team members
Department Induction
For onboarding to a new department:
- Create Collection: Department name
- Structure in Sequence: Use items in logical order
- Add Descriptions: Each acronym's role in department
- Link to Team Page: Department wiki/handbook
- Maintain: Quarterly updates as terminology evolves
Permissions
Required permissions for collection management:
| Action | Permission | Role |
|---|---|---|
| View Public | collection:view | Member+ |
| Create | collection:create | Admin+ |
| Edit | collection:edit | Author/Admin+ |
| Delete | collection:delete | Admin+ |
| Add Items | collection:edit | Admin+ |
| Reorder | collection:edit | Admin+ |
Collections are owned by their creator by default; admins can manage all collections.
API Usage
Manage collections via API:
List Collections
GET /api/v1/collectionsReturns all public collections.
Get Collection Details
GET /api/v1/collections/{id}Includes all items in order.
Create Collection
POST /api/v1/collectionsPayload:
{
"name": "New Hire Onboarding",
"description": "Essential terms for week 1",
"onboarding": true,
"items": ["TERM1", "TERM2", "TERM3"]
}Update Collection
PUT /api/v1/collections/{id}Delete Collection
DELETE /api/v1/collections/{id}Reorder Items
PUT /api/v1/collections/{id}/items/reorderPayload:
{
"itemIds": ["acr1", "acr2", "acr3"]
}Best Practices
Collection Design
- Clear purpose: Each collection should have one main goal
- Logical flow: Order items from foundational to advanced
- Right size: 5-20 items typically optimal (not too short or overwhelming)
- Evergreen content: Avoid collections dependent on specific dates
Onboarding Collections
- First week essential: Focus on critical knowledge
- Department + Company: Combine broad and specific
- Progressive: Start with foundational terms
- Feedback loop: Ask new hires which collections were most helpful
Team Collections
- Department-specific: Create one per major team
- Role variations: Separate collections for different roles
- Keep current: Review and update quarterly
- Accessible: Make public unless confidential
Naming Conventions
- Descriptive: "New Hire Onboarding", not "Onboarding"
- Date-agnostic: "Q1 Planning Initiative", not "Q1 2026 Planning"
- Audience-aware: "Engineering Fundamentals" (not "Technical Stuff")
- Consistent: Use consistent terminology across collections
Next Steps: Learn about Bulk Import to add many acronyms at once, or explore Webhooks to automate collection-related workflows.