Files
hermes-ice/opencode-obsidian-integration.md
Hermes Agent e4d91aadf9 Initial commit: homelab infrastructure wiki
- Full Obsidian vault content
- Host configs (ice, grizzley, ubuntu, proxmox, truenas, panda, hyte)
- Media stack documentation
- Traefik HA setup
- Automation scripts
- Bachelor party planning
2026-05-24 16:08:40 -07:00

1.5 KiB

project
project
name status category source created updated description tags
OpenCode + Obsidian Integration active documentation live-verification 2026-01-06 2026-04-19 How OpenCode interacts with the Obsidian vault for task management
documentation
opencode
obsidian
integration

OpenCode + Obsidian Integration

Architecture

OpenCode Agent → Obsidian Vault (local filesystem)

The Obsidian vault lives at /home/bear/homelabagentroot/obsidian-vault/ and is tracked in git alongside the infrastructure configs.

Task Management

Tasks use Dataview queries embedded in project.md files:

## Tasks
\```dataview
TASK
FROM "homelab/tasks"
WHERE !completed
SORT file.name ASC
\```

Task File Structure

Tasks use the template in Templates/task-template.md with YAML frontmatter:

---
task:
  project: "Project Name"
  status: pending|in_progress|completed|blocked
  priority: high|medium|low
  created: 2026-04-19
---

Dashboard

The project dashboard (Dashboard/project-status.md) aggregates all projects via Dataview.

Templates

Template Purpose
Templates/project-template.md New project scaffolding
Templates/task-template.md Task files
Templates/service-template.md Service documentation
Templates/script-template.md Script documentation