mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
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>
104 lines
No EOL
2.8 KiB
JSON
104 lines
No EOL
2.8 KiB
JSON
{
|
|
"choices": [
|
|
{
|
|
"name": "Create Formal Proof",
|
|
"type": "Template",
|
|
"command": "createNewNote",
|
|
"template": "08-TOOLS/01-Templates/Formal Proof.md",
|
|
"folder": "01-LAYERS/01-Formal-Proofs"
|
|
},
|
|
{
|
|
"name": "Create Attack Plan",
|
|
"type": "Template",
|
|
"command": "createNewNote",
|
|
"template": "08-TOOLS/01-Templates/Attack Plan.md",
|
|
"folder": "07-RESEARCH/01-Attack-Plans"
|
|
},
|
|
{
|
|
"name": "Create Milestone",
|
|
"type": "Template",
|
|
"command": "createNewNote",
|
|
"template": "08-TOOLS/01-Templates/Milestone.md",
|
|
"folder": "07-RESEARCH/00-Milestones"
|
|
},
|
|
{
|
|
"name": "Create Receipt",
|
|
"type": "Template",
|
|
"command": "createNewNote",
|
|
"template": "08-TOOLS/01-Templates/Receipt.md",
|
|
"folder": "01-LAYERS/03-Receipts"
|
|
},
|
|
{
|
|
"name": "Create Conjecture",
|
|
"type": "Multi",
|
|
"command": "createMultiLine",
|
|
"items": [
|
|
{
|
|
"name": "Conjecture Name",
|
|
"type": "Input"
|
|
},
|
|
{
|
|
"name": "Layer",
|
|
"type": "Choice",
|
|
"choices": ["L0", "L1", "L2", "L3", "L4", "L5", "L6"]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "Capture Research Note",
|
|
"type": "Capture",
|
|
"command": "captureToActiveFile",
|
|
"format": "\n\n## {{date:YYYY-MM-DD HH:mm}}\n{{value}}\n\nTags: #research-note #{{value:layer}}"
|
|
},
|
|
{
|
|
"name": "Generate Lean Stub",
|
|
"type": "Macro",
|
|
"command": "insertText",
|
|
"text": "theorem {{value:theorem_name}} [hypotheses] : conclusion :=\n sorry"
|
|
},
|
|
{
|
|
"name": "Generate Receipt Stub",
|
|
"type": "Macro",
|
|
"command": "insertText",
|
|
"text": "def {{value:receipt_name}}Receipt (state : State) : String :=\n \"{{value:receipt_name}}:\" ++ toString state.val ++ \",\""
|
|
},
|
|
{
|
|
"name": "Add Progress Update",
|
|
"type": "Capture",
|
|
"command": "captureToActiveFile",
|
|
"format": "\n- **{{date:YYYY-MM-DD}}:** {{value:progress}} ({{value:status}})"
|
|
},
|
|
{
|
|
"name": "Create Daily Standup",
|
|
"type": "Template",
|
|
"command": "createNewNote",
|
|
"template": "08-TOOLS/01-Templates/Daily Standup.md",
|
|
"folder": "07-RESEARCH/04-Daily-Notes",
|
|
"fileNameFormat": "{{date:YYYY-MM-DD}}-Standup"
|
|
}
|
|
],
|
|
"macros": [
|
|
{
|
|
"name": "Insert Current Timestamp",
|
|
"type": "Macro",
|
|
"command": "insertText",
|
|
"text": "{{date:YYYY-MM-DDTHH:mm:ssZ}}"
|
|
},
|
|
{
|
|
"name": "Insert Lean Code Block",
|
|
"type": "Macro",
|
|
"command": "insertText",
|
|
"text": "```lean\n{{value:lean_code}}\n```"
|
|
},
|
|
{
|
|
"name": "Insert Receipt Block",
|
|
"type": "Macro",
|
|
"command": "insertText",
|
|
"text": "```receipt\n{{value:receipt_content}}\n```"
|
|
}
|
|
],
|
|
"settings": {
|
|
"showInMenu": true,
|
|
"hotkey": "Ctrl+Shift+P"
|
|
}
|
|
} |