Folders & Organization
Claspt gives you multiple ways to organize your pages: folders for structure, pins for quick access, archives for hiding old content, and flexible sorting to surface what matters most.
Default Folders
Section titled “Default Folders”Every new vault is created with two starter folders:
| Folder | Purpose |
|---|---|
general/ | Default home for new pages when no other folder is selected |
credentials/ | Suggested location for pages containing passwords, API keys, and other secrets |
These are regular filesystem directories — you can rename, delete, or reorganize them at any time. If you delete all folders, Claspt recreates general/ so there’s always somewhere to put new pages.
Creating Folders
Section titled “Creating Folders”There are two ways to create a folder:
- Sidebar button — Click the folder icon (
+with folder) in the sidebar header. Type a name and press Enter. - Context menu — Right-click in the sidebar folder tree and select New Folder.
Nested Folders
Section titled “Nested Folders”Create nested folders by using a / separator in the folder name:
work/projects/acmeThis creates the full hierarchy: work/ > projects/ > acme/. The sidebar displays nested folders as a collapsible tree.
Moving Pages
Section titled “Moving Pages”Drag and Drop
Section titled “Drag and Drop”Drag a page from the page list and drop it onto a folder in the sidebar tree. The page’s file moves on disk and its frontmatter updates automatically.
Context Menu
Section titled “Context Menu”Right-click a page in the sidebar and select Move to…, then pick the destination folder from the list.
Bulk Move
Section titled “Bulk Move”Select multiple pages (hold Cmd / Ctrl and click), then right-click and choose Move to…. All selected pages move to the chosen folder.
Renaming Folders
Section titled “Renaming Folders”Right-click a folder in the sidebar and select Rename. Type the new name and press Enter. All pages inside the folder are moved automatically — their frontmatter folder field updates to reflect the new name.
Deleting Folders
Section titled “Deleting Folders”Right-click a folder and select Delete. You’ll be prompted with two options:
| Option | What Happens |
|---|---|
| Move contents to parent | Pages move up one level (or to the vault root). The folder is removed. |
| Delete all pages | The folder and all its pages are permanently deleted. |
Folder Tree in the Sidebar
Section titled “Folder Tree in the Sidebar”The sidebar displays your folders as a collapsible tree:
- Click a folder to filter the page list to only pages in that folder.
- Expand/collapse nested folders by clicking the arrow next to the folder name.
- Page counts appear next to each folder, showing how many pages it contains.
- Click “All Pages” at the top of the folder tree to remove the folder filter and see every page in your vault.
Page Naming Convention
Section titled “Page Naming Convention”On disk, pages follow this naming pattern:
YYYY-MM-DD-HHMMSS-title-slug.mdFor example, a page titled “AWS Credentials” created on January 15, 2025 at 2:30 PM becomes:
2025-01-15-143000-aws-credentials.mdThis ensures pages are unique and sort chronologically in file explorers. The human-readable title is stored in the YAML frontmatter, not the filename.
Pinning Pages
Section titled “Pinning Pages”Pin frequently used pages so they always appear at the top of the page list, regardless of sort order.
- To pin: Right-click a page and select Pin to Top, or click the pin icon in the toolbar when viewing a page.
- To unpin: Right-click a pinned page and select Unpin, or click the pin icon again.
Pinned pages show a pin indicator in the sidebar. Multiple pinned pages sort among themselves by the active sort order.
Archiving Pages
Section titled “Archiving Pages”Archive pages you want to keep but don’t need to see day-to-day. Archived pages are hidden from the sidebar by default.
- To archive: Right-click a page and select Archive, or use the archive button in the toolbar.
- To unarchive: Toggle archive visibility (see below), then right-click the archived page and select Unarchive.
Viewing Archived Pages
Section titled “Viewing Archived Pages”Toggle archived page visibility from the sidebar filter controls. When visible, archived pages appear with a dimmed style so you can distinguish them from active pages.
Sort Options
Section titled “Sort Options”Control how pages are ordered in the sidebar:
| Sort By | Description |
|---|---|
| Title | Alphabetical by page title (A-Z or Z-A) |
| Date Created | By creation timestamp (newest or oldest first) |
| Date Updated | By last modification timestamp (newest or oldest first) |
Click the sort button in the sidebar to cycle through options. Each sort field can be ascending or descending.
Sidebar Density
Section titled “Sidebar Density”Switch between two density modes for the page list:
| Mode | Description |
|---|---|
| Comfortable | More spacing, shows page preview snippet beneath the title |
| Compact | Tighter spacing, title only — fits more pages on screen |
Toggle density from the sidebar controls (the density icon near the sort options).
Page Frontmatter
Section titled “Page Frontmatter”Every page is a standard markdown file with YAML frontmatter. Here’s what a typical page looks like on disk:
---id: a1b2c3d4-e5f6-7890-abcd-ef1234567890title: AWS Credentialsfolder: credentialscreated_at: 2025-01-15T14:30:00Zupdated_at: 2025-01-15T16:45:00Zpinned: truearchived: falsetags: - aws - devops---
Your markdown content here...All organization metadata (folder, pinned, archived, tags) lives in the frontmatter, keeping everything portable and version-controlled.
Best Practices
Section titled “Best Practices”- Use folders for physical grouping — credentials in one place, project notes in another, personal items separate.
- Pin your active pages — Keep the 3-5 pages you use daily pinned to the top.
- Archive instead of deleting — If you might need a page later, archive it rather than deleting.
- Combine with tags — Folders give structure; tags give flexibility. A page in
work/projects/can also be taggedurgentandclient-afor cross-cutting organization. - Keep it shallow — Two levels of nesting (
work/projects/) is usually enough. Deeply nested folders are harder to navigate.