skills/core/briefing-vault/SKILL.md
Initialize, manage, and search the per-project .briefing/ vault. Obsidian-compatible persistent knowledge base.
npx skillsauth add sehoon787/my-claude briefing-vaultInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage the .briefing/ directory as a persistent, Obsidian-compatible knowledge base.
When starting a new vault (first time in a project):
.briefing/
├── INDEX.md
├── sessions/
├── decisions/
├── learnings/
├── references/
└── agents/
.briefing/INDEX.md:---
date: <today>
type: index
tags: [project, index]
---
# <Project Name> Knowledge Base
## Overview
<Brief project description>
## Recent Decisions
<!-- Auto-updated by agents -->
## Open Questions
<!-- Track unresolved items -->
## Key Links
- [[sessions/]] — Session logs
- [[decisions/]] — Architecture decisions
- [[learnings/]] — Patterns and solutions
.briefing/ to .gitignoresessions/YYYY-MM-DD-topic.md)---
date: YYYY-MM-DD
type: session
tags: [session]
related: []
---
# Session: <Topic>
## Goal
<What was requested>
## Actions
- <What was done>
## Results
- <Outcomes>
## Decisions Made
- [[decisions/decision-name]] — <brief>
## Learnings
- [[learnings/learning-name]] — <brief>
## Next Steps
- <Follow-up items>
decisions/name.md)---
date: YYYY-MM-DD
type: decision
tags: [architecture|design|tooling]
status: accepted|superseded|deprecated
related: []
---
# Decision: <Title>
## Context
<Why this decision was needed>
## Options Considered
1. <Option A> — pros/cons
2. <Option B> — pros/cons
## Decision
<What was chosen and why>
## Consequences
<Impact of this decision>
learnings/name.md)---
date: YYYY-MM-DD
type: learning
tags: [pattern|gotcha|solution]
related: []
---
# <Title>
## Problem
<What went wrong or was non-obvious>
## Solution
<What fixed it>
## Why It Works
<Root cause explanation>
references/name.md)---
date: YYYY-MM-DD
type: reference
source: <URL or source description>
tags: [reference, topic]
related: []
---
# <Title>
## Source
<URL or citation>
## Key Points
- <Main finding 1>
- <Main finding 2>
## Context
<Why this reference is relevant>
## Raw Notes
<Verbatim excerpts or detailed notes>
Use Grep to search .briefing/ by keyword:
# Search by content
grep -r "keyword" .briefing/ --include="*.md"
# Search by tag
grep -r "tags:.*architecture" .briefing/ --include="*.md"
# Search by type
grep -r "type: decision" .briefing/ --include="*.md"
.briefing/ as an Obsidian vault[[wiki-links]]The archives/ directory stores completed or inactive notes following PARA methodology.
.briefing/archives/ ← flat directory, type: in frontmatter identifies origin
archives/type: frontmatter preserves its original category[[wiki-links]]The wiki/ directory stores concept pages — distilled knowledge from multiple sessions.
---
id: "YYYYMMDDHHMMSS"
date: YYYY-MM-DD
type: wiki
tags: [concept, category]
sources: [sessions/file.md, decisions/file.md]
updated: YYYY-MM-DD
---
# Concept Name
## Definition
One-paragraph summary.
## Key Facts
- Fact 1
- Fact 2
## Related
- [[other-concept]]
.briefing/wiki/_schema.mdLearnings follow atomic note principles:
---
id: "YYYYMMDDHHMMSS"
date: YYYY-MM-DD
type: learning
tags: [pattern, topic]
related: [[other-learning-1], [other-learning-2]]
---
# One Insight Title
Brief description of the pattern or insight (~500 chars recommended).
One file = one idea. Link to at least 2 related notes.
testing
Vault health check — workflow pattern analysis, profile sync, session gap recovery, persona rule proposals
testing
3-Phase Sprint workflow — design → execute → review with user interaction at decision points
data-ai
Advanced Boss orchestration patterns — Agent Teams leadership, 6-section delegation template, Skill vs Agent conflict resolution, Guardian pattern, and AI-slop detection.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.