Skills Created: - outline: Full MCP integration with Outline wiki (search, read, create, export, AI queries) - Enhanced basecamp: Added project mapping configuration to PARA structure - Enhanced daily-routines: Integrated work context (Basecamp, Outline) into daily/weekly workflows - Enhanced meeting-notes: Added Teams transcript processing workflow guide PARA Work Structure Created: - 01-projects/work/: 10 project folders with MOCs (placeholders for user customization) - 02-areas/work/: 5 area files (current-job, professional-dev, team-management, company-knowledge, technical-excellence) - 03-resources/work/wiki-mirror/: Ready for Outline exports - 04-archive/work/: Ready for completed work Documentation Added: - skills/outline/SKILL.md: Comprehensive wiki workflows and tool references - skills/outline/references/outline-workflows.md: Detailed usage examples - skills/outline/references/export-patterns.md: Obsidian integration patterns - skills/meeting-notes/references/teams-transcript-workflow.md: Manual DOCX → meeting note workflow - skills/chiron-core/references/work-para-structure.md: Work-specific PARA organization Key Integrations: - Basecamp ↔ Obsidian: Project mapping and task sync - Outline ↔ Obsidian: Wiki search, export decisions, knowledge discovery - Teams → Obsidian: Transcript processing with AI analysis - All integrated into daily/weekly routines Note: n8n workflows skipped per user request. Ready for n8n automation later.
48 lines
1.2 KiB
Markdown
48 lines
1.2 KiB
Markdown
---
|
|
name: chiron-search
|
|
description: "Search knowledge base - find notes, tasks, or information in ~/CODEX vault"
|
|
---
|
|
|
|
# Search Knowledge Base
|
|
|
|
Find information across the Obsidian vault.
|
|
|
|
## Steps
|
|
|
|
1. **Parse search intent**:
|
|
- Task search → Search for `- [ ]` patterns
|
|
- Tag search → Search for `#tag` patterns
|
|
- Recent → Search in `~/CODEX/daily/` for recent files
|
|
- Full-text → General term search
|
|
2. **Execute search** using `rg`:
|
|
```bash
|
|
# Tasks
|
|
rg "- \\[ \\]" ~/CODEX --type md
|
|
|
|
# Tags
|
|
rg "#work" ~/CODEX --type md
|
|
|
|
# Recent
|
|
rg "term" ~/CODEX/daily --type md
|
|
|
|
# Full text
|
|
rg "search term" ~/CODEX --type md -C 3
|
|
```
|
|
3. **Group results** by location (Projects/Areas/Resources/Daily)
|
|
4. **Present** with context and file paths
|
|
5. **Offer follow-up actions** (read note, edit, create task, etc.)
|
|
|
|
## Expected Output
|
|
|
|
Search results grouped by:
|
|
- Location (Projects, Areas, Resources, Daily, Tasks)
|
|
- File paths for easy access
|
|
- Context (matching lines with surrounding content)
|
|
- Follow-up action suggestions
|
|
|
|
## Related Skills
|
|
|
|
- `obsidian-management` - Vault search operations
|
|
- `task-management` - Task-specific search
|
|
- `chiron-core` - PARA navigation for locating content
|