Your First Kiln
This guide walks you through creating a new kiln from scratch. By the end, you’ll have a working knowledge base ready for notes.
What is a Kiln?
Section titled “What is a Kiln?”A kiln is simply a directory containing markdown files. Crucible processes these files into a searchable knowledge graph. Think of it like an Obsidian vault or a folder of notes.
Creating Your Kiln
Section titled “Creating Your Kiln”1. Choose a Location
Section titled “1. Choose a Location”Pick where your notes will live:
# Personal notesmkdir -p ~/Documents/my-kiln
# Project documentationmkdir -p ~/projects/my-project/docs
# Shared team knowledgemkdir -p /shared/team-knowledge2. Initialize the Directory
Section titled “2. Initialize the Directory”Create a basic structure:
cd ~/Documents/my-kiln
# Create some starter foldersmkdir -p Notes Projects Reference3. Create Your First Note
Section titled “3. Create Your First Note”Create Notes/Welcome.md:
---description: My first notetags: - meta---
# Welcome to My Kiln
This is my knowledge base. Here I'll store notes, ideas, and references.
## Getting Started
- [[Notes/Ideas]] - Capture thoughts- [[Projects/Current]] - Active work- [[Reference/Index]] - Reference materials4. Configure Crucible
Section titled “4. Configure Crucible”Set your kiln path:
# Option 1: Environment variableexport CRUCIBLE_KILN_PATH=~/Documents/my-kiln
# Option 2: Config filemkdir -p ~/.config/cruciblecat > ~/.config/crucible/config.toml << 'EOF'kiln_path = "/home/user/Documents/my-kiln"
[embedding]provider = "fastembed"
[cli]show_progress = trueEOF5. Process Your Notes
Section titled “5. Process Your Notes”cru processYou should see:
Processing 1 files through pipeline...Pipeline processing complete! Processed: 1 files6. Verify Setup
Section titled “6. Verify Setup”cru statsYou should see your kiln statistics.
Building Your Structure
Section titled “Building Your Structure”Start Simple
Section titled “Start Simple”Don’t over-organize from the start:
my-kiln/ Notes/ # Day-to-day notes Projects/ # Active work Reference/ # Stable reference materialLet Structure Emerge
Section titled “Let Structure Emerge”As you add notes, patterns will emerge. Then you can:
- Add more folders as needed
- Create index notes (MOCs)
- Adopt an organizational system like PARA
Link Liberally
Section titled “Link Liberally”The power of a kiln is in connections:
This idea relates to [[Other Note]].
See also:- [[Related Concept]]- [[Another Idea#specific-section]]Adding Metadata
Section titled “Adding Metadata”Frontmatter
Section titled “Frontmatter”Every note benefits from frontmatter:
---description: Main project documentationtags: - project - activecreated: 2024-01-15---Use tags for cross-cutting organization:
#status/active #priority/high #project/alphaProcessing Workflow
Section titled “Processing Workflow”Initial Processing
Section titled “Initial Processing”First run processes everything:
cru processIncremental Updates
Section titled “Incremental Updates”Subsequent runs only process changes:
cru processWatch Mode
Section titled “Watch Mode”Auto-process on file changes:
cru process --watchUsing Your Kiln
Section titled “Using Your Kiln”Search
Section titled “Search”Find content semantically:
cru chat "Find notes about project planning"Explore with AI:
cru chatCheck kiln health:
cru statsNext Steps
Section titled “Next Steps”Now that you have a working kiln:
- Add more notes - Start capturing ideas
- Create connections - Link related notes with wikilinks
- Choose a structure - See Index
- Learn commands - Read Basic Commands
- Configure agents - Explore agents
Common Questions
Section titled “Common Questions”Can I use existing notes?
Section titled “Can I use existing notes?”Yes! Point Crucible at any folder with markdown files.
Do I need frontmatter?
Section titled “Do I need frontmatter?”It’s recommended but not required. Frontmatter enables property search and better metadata.
How do I backup?
Section titled “How do I backup?”Your kiln is just files. Use any backup method:
- Git for version control
- Cloud sync (Dropbox, iCloud)
- Regular file backups
Can I use Obsidian too?
Section titled “Can I use Obsidian too?”Yes! Crucible is compatible with Obsidian vaults. Just point to the same directory.
See Also
Section titled “See Also”- Getting Started - Installation and setup
- Basic Commands - Essential CLI commands
- Index - Structuring your kiln
:h frontmatter- Metadata format