Log pro
Use when /log-pro is invoked, or when Shane says "professional log", "work log", "log this to work", "log to professional", or wants to capture a lightweight session note in the PROFESSIONAL (Global Payments / WorldPay) vault. Appends a timestamped entry to today's Professional daily note under Session Log. For the Personal vault use /log instead.From its SKILL.md
npx -y skills add slogsdon/skills-vault-rituals --skill log-proAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.3 KB, 513 tokens by cl100k_base, as published. Nobody here has run it
Skill: /log-pro
Lightweight session capture for the Professional vault. No Qwen needed — direct write.
Vault selection
This is the Professional variant of /log. It targets the Professional vault.
PROF_VAULT="$HOME/Library/Mobile Documents/iCloud~md~obsidian/Documents/Professional"
I/O mechanism: The obsidian CLI cannot reach the Professional vault — Obsidian only has the Personal vault open/registered, and vault=Professional silently falls back to Personal. So this skill operates on the Professional vault with the Read/Write/Edit tools and git directly on $PROF_VAULT. This is the intended, safe path for a vault Obsidian never opens. (If Shane later opens Professional in Obsidian, direct file ops still work unchanged.)
Daily notes live at $PROF_VAULT/Daily Notes/[YYYY-MM-DD].md.
Steps
- Determine today's date (YYYY-MM-DD format).
- Get the current time (HH:MM format).
- Capture Shane's session note from his message (everything after the command).
- Append the entry to today's Professional daily note:
- File path:
$PROF_VAULT/Daily Notes/[today's date].md - If it exists: append
\n**[HH:MM]** [Shane's note]under the## Session Logheading (use Edit, or read → append). If the file has no## Session Logheading, add\n## Session Log\n\nbefore the entry. - If it does not exist: create it with:
# [YYYY-MM-DD] ## Session Log **[HH:MM]** [Shane's note]
- File path:
- Commit the Professional vault:
PROF_VAULT="$HOME/Library/Mobile Documents/iCloud~md~obsidian/Documents/Professional" git -C "$PROF_VAULT" add -A && git -C "$PROF_VAULT" commit -m "docs: log session entry [HH:MM]" - Confirm to Shane: "Logged to Professional vault at [HH:MM]."
Notes
- Keep it fast — this skill should feel like a 2-second action.
- Do not use the
obsidianCLI here; it would write to the Personal vault.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.