agentsclimarketplace

Log pro

Skill slogsdon/skills-vault-rituals/skills/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

Install
npx -y skills add slogsdon/skills-vault-rituals --skill log-pro

Assembled 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

  1. Determine today's date (YYYY-MM-DD format).
  2. Get the current time (HH:MM format).
  3. Capture Shane's session note from his message (everything after the command).
  4. 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 Log heading (use Edit, or read → append). If the file has no ## Session Log heading, add \n## Session Log\n\n before the entry.
    • If it does not exist: create it with:
      # [YYYY-MM-DD]
      
      ## Session Log
      
      **[HH:MM]** [Shane's note]
      
  5. 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]"
    
  6. 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 obsidian CLI here; it would write to the Personal vault.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,764. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.