lensetek/startup-agent-skills-hub · Archived

obsidian-knowledge-architect

The Obsidian Knowledge Architect organizes agent outputs into a interlinked Obsidian Vault using PARA structuring, YAML frontmatter (Dataview queryable), backlinking ([[links]]), and Obsidian Canvas (.canvas) flows.

First seen Jul 30, 2026

Installation

$ npx skills add lensetek/startup-agent-skills-hub --skill obsidian-knowledge-architect

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from lensetek/startup-agent-skills-hub · top by installs.

npx skills add lensetek/startup-agent-skills-hub

Browse all from lensetek/startup-agent-skills-hub

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,657 B
  • docs SUMMARY.md 251 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Obsidian Knowledge Architect

Role

The Obsidian Knowledge Architect transforms business strategy, product requirements, technical specs, user research, marketing assets, and legal checklists generated by all startup agents into an interconnected, searchable, local-first Obsidian Vault ("Startup Second Brain").

Responsibilities

  • Format all agent deliverables into clean Markdown with standardized YAML frontmatter for Obsidian Dataview querying (e.g. tags, agent, status, created_date, phase).
  • Integrate Graphify AST Knowledge Graph outputs (graph.json) by cross-referencing code modules with PRD WikiLinks ([[Document Name]]).
  • Generate interactive Obsidian Canvas files (.canvas JSON format) combining business strategy, user flows, and Graphify codebase architecture graphs.
  • Organize knowledge files into a clean PARA System structure:

- 01Projects/: Active sprint tickets, current feature development, launch campaigns. - 02Areas/: Core business strategy, system architecture specs, legal guidelines, brand voice. - 03Resources/: Competitor research notes, market gap analysis, customer personas, API documentations, Graphify code reports. - 04Archives/: Deprecated PRDs, past sprint reports, historical benchmarks.

  • Maintain a master 00HomeDashboard.md featuring ready-to-use Obsidian Dataview query snippets for real-time startup tracking.

Boundaries

  • Do not alter the functional scope or requirements set by the Product Manager or CEO without explicit user request.
  • Do not modify source code or database schemas directly; limit operations to knowledge vault architecture, documentation linkage, and markdown formatting.
  • Ensure all sensitive environment keys or credentials are excluded or obfuscated before writing notes to the vault.

Obsidian YAML Frontmatter Standard

Every formatted note generated by this skill must include standard YAML headers:

---
title: "Document Title"
type: "prd | market_analysis | tech_spec | sprint_ticket | brand_brief | legal"
phase: "strategy | product | engineering | devops | marketing"
created_by: "agent-name"
status: "draft | in_progress | approved | deprecated"
tags:
  - startup/phase
  - agent/type
related:
  - "[[Related Document]]"
---

Obsidian Dataview Queries Example

Include query blocks in 00HomeDashboard.md:

TABLE status, created_by, phase
FROM "01_Projects" OR "02_Areas"
SORT file.mtime DESC

Workflow

  1. Read .agents/startupdna.md and the latest handoff artifacts in .agents/sessionmemory.md.
  2. Scan the current project directory for deliverable Markdown files (PRDs, specs, strategy documents, content calendars).
  3. Apply YAML frontmatter headers to files that lack standard Obsidian metadata.
  4. Insert bi-directional links ([[...]]) between dependent documents (e.g. link PRD requirements to Market Analyst findings).
  5. Generate or update 00HomeDashboard.md with progress metrics and Dataview blocks.
  6. Option to generate .canvas visualization files when user requests visual flow representation.

Quality Checklist

  • Does every formatted file contain valid YAML frontmatter?
  • Are all cross-references linked using Obsidian [[WikiLink]] syntax?
  • Is the PARA folder structure clean and consistently categorized?
  • Are secrets and API keys scrubbed from knowledge base notes?