Research-Stack/obsidian-vault/.obsidian/plugins/templater-obsidian/settings.json
Brandon Schneider 54004abe71 Setup Obsidian Knowledge Base for Research Stack
Created comprehensive Obsidian vault for managing Research Stack knowledge:

Core Structure:
- 00-MAP/ - Navigation, Dashboard, Core Concepts, Glossary, Getting Started
- 01-LAYERS/ - All 7 USTSM layers (L0-L6) with formal proofs, docs, receipts, hardware
- 07-RESEARCH/ - Milestones, Attack Plans, Conjectures, Experiments
- 08-TOOLS/ - Templates, Workflows, Scripts
- 09-REFERENCES/ - External resources
- 10-ARCHIVE/ - Completed items

Configuration Files:
- .obsidian/app.json - Vault settings
- .obsidian/community-plugins.json - Plugin configuration
- .obsidian/snippets/research-stack.css - Custom theme with layer colors
- .obsidian/plugins/ - Templater, QuickAdd, Dataview settings
- .obsidian/workspaces.json - Pre-configured workspaces

Templates Created:
- Formal Proof - For Lean theorem documentation
- Attack Plan - For research initiatives
- Milestone - For project milestones
- Receipt - For validation receipts
- Daily Standup - For daily progress tracking

Features:
- Dataview dashboard queries for system health
- Layer-specific color coding (L0-L6)
- Receipt styling and validation status
- Graph view customization
- QuickAdd commands for rapid note creation
- Templater automation with research helpers
- Pre-configured workspaces for different activities

Documentation:
- README.md - Complete vault guide
- Getting Started.md - Step-by-step tutorial
- Core Concepts.md - Fundamental principles
- Glossary.md - Research Stack terminology

Burgers 4-Theorem Attack Plan documented:
- Energy Dissipation theorem
- CFL Stability theorem
- Mass Conservation theorem
- Complexity Regularization theorem

Generated with [Devin](https://cli.devin.ai/docs)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-19 14:40:41 +00:00

51 lines
No EOL
1.3 KiB
JSON

{
"command": "tp.inject",
"template_path": "Templates/research-helpers.js",
"file": {
"folder": "08-TOOLS/01-Templates",
"name": "{{value:filename}}",
"format": "{{value:filename}}"
},
"settings": {
"enable_system_commands": true,
"shell_path": "",
"user_scripts_folder": "",
"enable_file_templates": true,
"templates_folder": "08-TOOLS/01-Templates",
"template_hotkeys": [
{
"modifiers": ["Alt", "Shift"],
"key": "F"
}
],
"enable_folder_templates": true,
"folder_templates": [
{
"folder": "01-LAYERS/*/01-Formal-Proofs",
"template": "08-TOOLS/01-Templates/Formal Proof.md"
},
{
"folder": "07-RESEARCH/01-Attack-Plans",
"template": "08-TOOLS/01-Templates/Attack Plan.md"
},
{
"folder": "07-RESEARCH/00-Milestones",
"template": "08-TOOLS/01-Templates/Milestone.md"
},
{
"folder": "01-LAYERS/*/03-Receipts",
"template": "08-TOOLS/01-Templates/Receipt.md"
}
],
"enable_syntax_highlighting": true,
"enabled_templates_hotkeys": [
{
"modifiers": ["Alt", "Shift"],
"key": "F"
}
],
"startup_templates": [
"Templates/research-helpers.js"
]
}
}