소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 11일 15:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill obsidian-session-sync명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | obsidian-session-sync |
| description | | Use when this capability is needed. |
Do NOT trigger for:
Session Assessment:
Files created: [list new files]
Files modified: [list changed files]
Decisions made: [list key decisions]
Discoveries: [things learned about the codebase]
Tasks completed: [what was done]
Tasks remaining: [what's left]
Dead ends: [approaches that failed]
This drives what gets synced and where.
<vault_state> Check the vault before writing anything:
# Read vault conventions
cat "$VAULT_PATH/CLAUDE.md"
# Read today's daily note
TODAY=$(date +%Y-%m-%d)
cat "$VAULT_PATH/Daily/$TODAY.md" 2>/dev/null
# Read existing breadcrumbs
cat "$VAULT_PATH/.claude/breadcrumbs.md" 2>/dev/null
# Or project-level breadcrumbs
cat .claude/breadcrumbs.md 2>/dev/null
# Check for existing session notes from today
find "$VAULT_PATH" -name "*$TODAY*session*" -o -name "*$TODAY*claude*" 2>/dev/null
</vault_state>
<session_note> Create a session note capturing the full context:
Filename: YYYY-MM-DD-session-brief-topic.md
Location: Project folder or Notes/
---
type: session
project: [project-name]
date: YYYY-MM-DD
status: completed
tags:
- session
- claude-code
source: claude-session
---
# Session: [Brief Topic]
**Date:** YYYY-MM-DD
**Duration:** ~[estimate]
**Project:** [[project-name]]
## What We Did
[2-3 sentence summary]
## Changes Made
- [file1.py] — [what changed and why]
- [file2.py] — [what changed and why]
## Decisions
- **[Decision 1]:** [what was decided and why]
- **[Decision 2]:** [what was decided and why]
## Discoveries
- [Thing learned about codebase]
- [Unexpected finding]
## Failed Attempts
| Approach | Why It Failed |
|----------|--------------|
| [attempt 1] | [reason] |
| [attempt 2] | [reason] |
## Next Steps
- [ ] [Follow-up task 1]
- [ ] [Follow-up task 2]
## Links
- [[related-note-1]]
- [[related-note-2]]
- [[daily-note-link]]
Only create a session note if there's substance. A session that answered one question doesn't need its own note — just log it in the daily note. </session_note>
<update_daily> Append session summary to today's daily note:
Under ## Log:
### Claude Session — HH:MM
**Worked on:** [brief description]
**Outcome:** [what was achieved]
**Session note:** [[YYYY-MM-DD-session-topic]]
**Created:**
- [[new-note-1]]
- [[new-note-2]]
**Next:**
- [ ] Follow-up task
Under ## Links:
- [[YYYY-MM-DD-session-topic]]
If no daily note exists, create one first. </update_daily>
<write_breadcrumbs>
Append to .claude/breadcrumbs.md (project-level):
---
## YYYY-MM-DD — [Brief Topic]
**What we worked on:**
[1-2 sentence summary]
**What worked:**
- [approach that succeeded]
**What didn't work:**
- [approach that failed] — [why]
**Left off at:**
[current state, what's next]
**Vault notes:**
- [[YYYY-MM-DD-session-topic]] (session note)
- [[other-created-notes]]
**Notes for next time:**
- [important context for future sessions]
- [file locations worth knowing]
Breadcrumbs live in the project repo (.claude/breadcrumbs.md), not the vault.
They're for future Claude sessions. The vault notes are for future you.
</write_breadcrumbs>
[[YYYY-MM-DD]][[YYYY-MM-DD-session-topic]]The goal: from any note, you can trace back to the session that created it and forward to what came next.
## Session Synced to Obsidian
**Session note:** [[YYYY-MM-DD-session-topic]]
→ Path/to/session-note.md
**Daily note updated:** [[YYYY-MM-DD]]
→ Added session summary under ## Log
**Breadcrumbs written:** .claude/breadcrumbs.md
→ Context for next Claude session
**Links created:**
→ [[session]] ↔ [[daily]]
→ [[session]] ↔ [[related-note-1]]
→ [[session]] ↔ [[related-note-2]]
Everything persisted. Safe to close this session.
This skill orchestrates patterns from:
If those skills are installed, their full capabilities enhance this flow. If not, this skill includes the core patterns inline.
Not every session needs its own note:
| Session Type | Action |
|---|---|
| Significant work (multi-step, decisions made) | Full session note + daily log |
| Quick fix or small change | Daily log entry only |
| Research / exploration | Session note (captures what was learned) |
| Single question answered | Daily log entry only |
| Failed attempt / dead end | Session note (documents the dead end) |
Default to daily-log-only for short sessions. Only create session notes for sessions you'd want to reference later.
End of session where user built auth middleware and discovered a gotcha:
Session Sync
Assessing session...
- Built JWT auth middleware (src/middleware/auth.ts)
- Discovered: session tokens stored in Redis with 1hr TTL (not documented)
- Failed: tried cookie-based approach first, CORS issues killed it
- Next: add refresh token rotation
Creating session note...
→ Projects/api/notes/2026-02-12-session-auth-middleware.md
Updating daily note...
→ Daily/2026-02-12.md
Added to ## Log:
- Claude session: built JWT auth middleware, discovered Redis TTL gotcha
Added to ## Links:
- [[2026-02-12-session-auth-middleware]]
Writing breadcrumbs...
→ .claude/breadcrumbs.md
- Auth middleware complete, cookie approach failed (CORS), Redis TTL is 1hr
Cross-linking...
→ [[2026-02-12-session-auth-middleware]] ↔ [[2026-02-12]]
→ [[2026-02-12-session-auth-middleware]] ↔ [[api-design]]
→ [[api-design]] Activity section updated
Session synced. Safe to close.
What DOESN'T work:
- Syncing at the START of a session — nothing has happened yet, nothing to sync
- Creating session notes for every session — clutter; only when there's substance
- Skipping breadcrumbs because vault has session notes — breadcrumbs are for Claude, vault notes are for you
- Not reading existing daily note — you duplicate entries or break structure
Converted and distributed by TomeVault — claim your Tome and manage your conversions.