From Newsjack
Creates a keyword coverage tracker (like Google Alerts) that monitors for brand, product, or company mentions. Run directly or via the coverage-tracker skill's recurring schedule.
How this skill is triggered — by the user, by Claude, or both
Slash command
/newsjack:coverage-tracker-setupWhen to use
User wants to create, configure, or update coverage alerts, brand/company mention tracking, Google Alert-style monitoring, or keyword coverage tracking. Use this instead of newsjack-monitor-setup when the job is to track coverage of the user's own keywords rather than find newsjacking opportunities.
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This sets up a simple keyword tracker that the `coverage-tracker` skill runs for you. Think of it like a Google Alert: it watches for new coverage of the keywords you care about and tells you when something real shows up.
This sets up a simple keyword tracker that the coverage-tracker skill runs for you. Think of it like a Google Alert: it watches for new coverage of the keywords you care about and tells you when something real shows up.
It is deliberately a different job from setting up newsjack monitoring. A coverage tracker answers "did my keyword get real coverage?" Newsjack monitoring (newsjack-monitor-setup) answers a bigger question: "can my company jump into a broader news story?" If the user wants the second one, use that skill instead.
Two situations, and they change what you can finish here:
newsjack is installed. It ships as a prebuilt, bundled binary — you do not need Go, a compiler, or any build/install step. Never look for a Go toolchain or tell the user they need a "Go environment" without checking first: run newsjack --version; if that's not on PATH, try the bundled location ~/.newsjack/bin/newsjack --version and use that full path everywhere if it works. The bundled binary is almost always already installed — verify, don't assume it's missing.Only ask for what you don't already know:
Don't ask about company standing, spokespeople, competitors, proof assets, news feeds, target reporters, or story angles. All of that is for newsjacking, not for tracking coverage of your own keywords.
Write the tracker config. This is a small file that the coverage-tracker skill reads back every time it runs, so keep its shape exactly as shown:
{
"name": "Profound",
"lookback_days": 2,
"keywords": [
{
"keyword": "profound",
"means": "Profound, the AI search analytics company.",
"exclude_hints": ["generic adjective uses"]
}
]
}
You can list as many keywords as you want. The means line for each one matters: make it specific (which company, product, or person) so the tracker can later throw out mentions of the wrong thing or generic uses of the word.
If you're in a plain chat window, stop here. Hand the user this config plus the schedule prompt from step 3, and tell them to finish in a setup that can save and run things. Don't claim it was saved or scheduled.
Save the config with this command (replace <slug> with a short name for the tracker):
newsjack coverage init <slug> --config tracker.json
Working inside a copy of the project source, use bin/newsjack from the project root instead. Only add --force if the user clearly wants to overwrite a tracker that already exists.
Schedule the recurring check through your agent, not your computer's built-in scheduler. If your agent has a way to schedule prompts, schedule this one:
Use the coverage-tracker skill for <slug>.
If your agent can't schedule things itself, tell the user exactly which prompt to set up on a schedule in Claude, Codex, Hermes, OpenClaw, or whatever they use. Do not set up system-level schedulers (cron, launchd, systemd timers, or similar) on the user's machine.
Run it once right away if the user wanted a working setup, or if you're doing the whole setup end to end. Use the coverage-tracker skill for the new slug and tell the user what the first run found.
First, look up where the config lives:
newsjack coverage status <slug>
That shows a config_path. Open the config file there, make your edits, then save it again with:
newsjack coverage init <slug> --config tracker.json --force
Only change the keywords or their meaning notes. The record of what's already been seen and alerted on is kept separately by coverage-tracker (in its own database) — don't edit that by hand.
Wrap up by giving them:
npx claudepluginhub elvisun/newsjack --plugin newsjackTracks keyword press coverage by searching news sources, deduplicating and classifying articles, storing decisions in SQLite, and alerting on new real coverage. Supports CLI-automated and manual modes.
Sets up daily scout monitoring for competitor companies, tracking news, product updates, funding, and public announcements from sources like TechCrunch and Crunchbase.
Tracks brand and competitor citations across AI search engines (Google AI Overviews, ChatGPT, Perplexity, Copilot, Gemini). Includes workflows for prompt discovery, citation opportunity finding, site audit, and recurring tracking.