/pulse
Weekly Obsidian digest of subscope activity. Builds a sub × surface heat map plus tier counts for the trailing 7 days, writes it as a dated markdown note to the user's Obsidian vault. Optional — skipped if Obsidian vault not configured. Triggers on "weekly pulse",
$ npx -y skills add dancolta/subscope --skill pulse --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/pulse
Context preview
The summary Claude sees to decide when to auto-load this skill.
Weekly Obsidian digest of subscope activity. Builds a sub × surface heat map plus tier counts for the trailing 7 days, writes it as a dated markdown note to the user's Obsidian vault. Optional — skipped if Obsidian vault not configured. Triggers on "weekly pulse",
SKILL.md
pulse.SKILL.mdname: subscope-pulse
description: Weekly Obsidian digest of subscope activity. Builds a sub × surface heat map plus tier counts for the trailing 7 days, writes it as a dated markdown note to the user's Obsidian vault. Optional — skipped if Obsidian vault not configured. Triggers on "weekly pulse", "/subscope-pulse", "obsidian pulse digest", "reddit engage weekly recap", "what did subscope surface this week".
allowed-tools: Bash, Read, Write
/subscope-pulse
Weekly reflection layer. Notion is the daily-triage surface; Obsidian is the weekly-review surface where you spot patterns over time.
Preflight
Check for Obsidian vault config:
cat ~/.config/subscope/obsidian.yml 2>/dev/null
Expected shape:
vault_path: /Users/dan/Documents/MyVault
pulse_folder: subscope # optional, defaults to 'subscope'
If `obsidian.yml` missing: print "Obsidian vault not configured. Run `/subscope-onboard` to wire it (or drop `~/.config/subscope/obsidian.yml` with a `vault_path:` line manually), then re-run."
Generate digest
cd "$CLAUDE_PLUGIN_ROOT" && PYTHONPATH=engine python3 -c "
from subscope.lib import store, obsidian_sync
with store.connect() as conn:
print(obsidian_sync.build_weekly_digest(conn))
"That prints the markdown digest content to stdout.
Write to Obsidian
Use the **obsidian MCP** to write the digest:
1. Compute the filename: `YYYY-WNN-pulse.md` (current ISO week) 2. Compute the path: `<vault_path>/<pulse_folder>/<filename>` (create the folder if missing) 3. Call `mcp__obsidian__create-note` with that path and the markdown body from the previous step
If obsidian MCP not available (rare — Dan has it installed by default), fall back to writing the file via the host filesystem (`Bash: mkdir -p ... && cat > ...`).
After write
Print one line:
Pulse written: <vault_path>/<pulse_folder>/<filename> (N surfaces this week)
Do not print the digest body. Dan reads it in Obsidian.
Read more
name: subscope-pulse description: Weekly Obsidian digest of subscope activity. Builds a sub × surface heat map plus tier counts for the trailing 7 days, writes it as a dated markdown note to the user's Obsidian vault. Optional — skipped if Obsidian vault not configured. Triggers on "weekly pulse", "/subscope-pulse", "obsidian pulse digest", "reddit engage weekly recap", "what did subscope surface this week". allowed-tools: Bash, Read, Write
/subscope-pulse
Weekly reflection layer. Notion is the daily-triage surface; Obsidian is the weekly-review surface where you spot patterns over time.
Preflight
Check for Obsidian vault config:
cat ~/.config/subscope/obsidian.yml 2>/dev/null
Expected shape:
vault_path: /Users/dan/Documents/MyVault pulse_folder: subscope # optional, defaults to 'subscope'
If `obsidian.yml` missing: print "Obsidian vault not configured. Run `/subscope-onboard` to wire it (or drop `~/.config/subscope/obsidian.yml` with a `vault_path:` line manually), then re-run."
Generate digest
cd "$CLAUDE_PLUGIN_ROOT" && PYTHONPATH=engine python3 -c "
from subscope.lib import store, obsidian_sync
with store.connect() as conn:
print(obsidian_sync.build_weekly_digest(conn))
"That prints the markdown digest content to stdout.
Write to Obsidian
Use the **obsidian MCP** to write the digest:
1. Compute the filename: `YYYY-WNN-pulse.md` (current ISO week) 2. Compute the path: `<vault_path>/<pulse_folder>/<filename>` (create the folder if missing) 3. Call `mcp__obsidian__create-note` with that path and the markdown body from the previous step
If obsidian MCP not available (rare — Dan has it installed by default), fall back to writing the file via the host filesystem (`Bash: mkdir -p ... && cat > ...`).
After write
Print one line:
Pulse written: <vault_path>/<pulse_folder>/<filename> (N surfaces this week)
Do not print the digest body. Dan reads it in Obsidian.
subscope reads Reddit for you and hands you the threads worth replying to: the people shopping for what you sell, and the questions you can answer to build authority. Run it whenever you want.
Other skills on subscope.
- /build-vs-buy
Surface explicit build-vs-buy debate threads with numeric arguments (engineering hours, TCO, payback). OP is rationalizing the decision publicly — your worldview is the answer. Triggers on "build vs buy", "/subscope-build-vs-buy", "find build-vs-buy debates", "in-house vs SaaS",
Open skill - /churn
Surface high-intent Reddit posts where someone explicitly says they are canceling, switching from, or fed up with a named SaaS vendor. Pure buying intent. Triggers on "churn signals", "/subscope-churn", "find churn posts", "who's canceling", "switching from posts",
Open skill - /judge
Interactive classifier for a single Reddit surface. Reads one post by surface ID (or pasted URL/title/body), runs the bulk-classifier prompt against it, and returns a verdict + reply angle. Uses your Claude Code subscription, NOT a separate API key — costs nothing extra beyond
Open skill - /onboard
Mandatory first-run setup for subscope. One conversation, three plain questions, one confirmation, optional integrations, first scan. Paste URLs, answer what-you-sell / who-buys-it / what's-the-pain, confirm the targeting card, pick integrations to connect (DataForSEO,
Open skill - /op-vet
Score a Reddit user's profile before replying. Returns karma, account age, sub-activity breakdown, and a GO / HOLD / SKIP verdict. Useful when you spot a thread that looks promising but want to confirm OP is a real operator (not a throwaway, karma farmer, or hustle-bro).
Open skill - /pricing-rage
Surface Reddit price-hike rage threads (Salesforce/HubSpot/Gong cyclical Q1/Q3 spikes). Time-sensitive — cooling queue auto-disabled. Triggers on "pricing rage", "/subscope-pricing-rage", "find price hike threads", "renewal complaints", "predatory pricing posts", "tier change
Open skill

