Agent SkillsFlorianBruniaux/claude-code-ultimate-guide › source-command-track-mentions

source-command-track-mentions

GitHub

自动搜索互联网上关于 Codex Ultimate Guide 的新提及,通过 Perplexity 深度研究或 WebSearch 获取结果,去重后更新媒体提及追踪器 YAML 文件。

.agents/skills/source-command-track-mentions/SKILL.md FlorianBruniaux/claude-code-ultimate-guide

Trigger Scenarios

用户要求运行 track-mentions 命令 需要查找并记录项目在线提及

Install

npx skills add FlorianBruniaux/claude-code-ultimate-guide --skill source-command-track-mentions -g -y
More Options

Non-standard path

npx skills add https://github.com/FlorianBruniaux/claude-code-ultimate-guide/tree/main/.agents/skills/source-command-track-mentions -g -y

Use without installing

npx skills use FlorianBruniaux/claude-code-ultimate-guide@source-command-track-mentions

指定 Agent (Claude Code)

npx skills add FlorianBruniaux/claude-code-ultimate-guide --skill source-command-track-mentions -a claude-code -g -y

安装 repo 全部 skill

npx skills add FlorianBruniaux/claude-code-ultimate-guide --all -g -y

预览 repo 内 skill

npx skills add FlorianBruniaux/claude-code-ultimate-guide --list

SKILL.md

Frontmatter
{
    "name": "source-command-track-mentions",
    "description": "Search for new online mentions of the Codex Ultimate Guide and update the tracker"
}

source-command-track-mentions

Use this skill when the user asks to run the migrated source command track-mentions.

Command Template

Track Mentions Workflow

Find new online mentions of the Codex Ultimate Guide (GitHub + cc.bruniaux.com) and update docs/media-mentions/mentions.yaml.

Usage

/track-mentions            # Search + report new mentions, confirm before adding
/track-mentions --dry-run  # Search + report only, no YAML changes
/track-mentions --add-all  # Search + add all found mentions automatically

Step 1: Load existing tracker

Read docs/media-mentions/mentions.yaml to get:

  • Current meta.total_mentions count
  • All existing url fields → build a deduplication set

Step 2: Run Perplexity deep research

Use mcp__perplexity__perplexity_deep_research with reasoning_effort: "high" and this query (do NOT mention specific dates or "past 30 days" — triggers a refusal on date-awareness):

Find all articles, blog posts, newsletters, Reddit threads, Twitter/X posts, LinkedIn posts,
YouTube videos, podcasts, GitHub issues/repos, and directories that mention "Codex
Ultimate Guide" by Florian Bruniaux (GitHub: FlorianBruniaux/Codex-ultimate-guide,
website: cc.bruniaux.com). Search broadly for third-party content only — exclude the GitHub
repo itself and cc.bruniaux.com own pages.

For each result provide: URL, publication date if available, author/platform name, language,
and one sentence on how they reference the guide.

Also search explicitly for:
- "cc.bruniaux.com" cited as a resource on third-party sites
- "Codex-ultimate-guide florian bruniaux" in blog posts and tutorials
- "FlorianBruniaux" in dev tutorials referencing the guide
- The guide mentioned in non-English content (French, Spanish, German, Korean, Portuguese, etc.)

If Perplexity returns no results (model refuses citing knowledge cutoff), fall back to WebSearch with these parallel queries:

"Codex ultimate guide" -site:github.com -site:cc.bruniaux.com 2026
site:reddit.com "cc.bruniaux.com" OR "Codex ultimate guide"
site:dev.to OR site:hashnode.com OR site:medium.com "Codex ultimate guide" "florian" OR "bruniaux"
"Codex ultimate guide" twitter OR x.com

Then use WebFetch on each candidate URL to verify the guide is explicitly mentioned by name or URL.

Step 3: Deduplicate

For each result from Perplexity:

  1. Normalize the URL (strip trailing slash, lowercase domain)
  2. Check against existing URLs in the YAML
  3. Skip if already tracked

Step 4: Report new mentions

Display a table for review:

New mentions found: N

| # | Platform | Author | Title | URL | Date |
|---|----------|--------|-------|-----|------|
| 1 | article  | ...    | ...   | ... | ...  |

If --dry-run: stop here, no changes.

Step 5: Add to YAML (unless --dry-run)

For each new mention (all if --add-all, else ask confirmation per item):

  1. Assign next sequential id (zero-padded to 3 digits)
  2. Infer platform from the source type:
    • Blog/newsletter → article
    • reddit.com → reddit
    • linkedin.com/posts/* (own profile florian-bruniaux) → linkedin-own
    • linkedin.com/posts/* (other) → linkedin-other
    • twitter.com / x.com → twitter
    • youtube.com → video
    • github.com/issues or github.com/discussions → forum
    • news.ycombinator.com → forum
    • Curated list / registry / directory → directory
    • podcasts.apple.com / spotify.com → podcast
    • instagram.com → instagram
  3. Set reach: unknown (unless view count is visible in snippet)
  4. Set status: active
  5. Set first_seen: <today's date>
  6. Write entry to YAML under the appropriate section comment

Step 6: Update meta

  • Increment meta.total_mentions by the number of added entries
  • Set meta.last_updated to today's date

Step 7: Update README stats table

Recount entries by platform and update the stats table in docs/media-mentions/README.md.

Step 8: Commit

git add docs/media-mentions/
git commit -m "docs: track-mentions — add N new mentions (YYYY-MM-DD)"

Notes

  • Skip own properties (cc.bruniaux.com pages, GitHub repo itself, FlorianBruniaux profile)
  • Skip mentions where the guide is cited only by implication or context, not by name or URL
  • For ambiguous cases (guide not named but URL present), add with a note
  • If Perplexity finds 0 new mentions, report "No new mentions found since last run."

Version History

  • fa57065 Current 2026-07-25 10:17

Same Skill Collection

.agents/skills/guide-recap/SKILL.md
.agents/skills/self-assessment/SKILL.md
.agents/skills/source-command-audit-prose/SKILL.md
.agents/skills/source-command-audit-whitepapers/SKILL.md
.agents/skills/source-command-ccguide-daily/SKILL.md
.agents/skills/source-command-ccguide-diff-docs/SKILL.md
.agents/skills/source-command-ccguide-init-docs/SKILL.md
.agents/skills/source-command-ccguide-refresh-docs/SKILL.md
.agents/skills/source-command-methodology-advisor/SKILL.md
.agents/skills/source-command-update-infos-release/SKILL.md
.claude/skills/self-assessment/SKILL.md
examples/skills/audit-agents-skills/SKILL.md
examples/skills/audit-codebase/SKILL.md
examples/skills/autoresearch/SKILL.md
examples/skills/canary/SKILL.md
examples/skills/catchup/SKILL.md
examples/skills/ccboard/SKILL.md
examples/skills/check-cache-bugs/SKILL.md
examples/skills/ci-all/SKILL.md
examples/skills/ci-pipeline/SKILL.md
examples/skills/ci-status/SKILL.md
examples/skills/ci-tests/SKILL.md
examples/skills/commit/SKILL.md
examples/skills/cyber-defense-team/SKILL.md
examples/skills/design-patterns/SKILL.md
examples/skills/diagnose/SKILL.md
examples/skills/eval-agents/SKILL.md
examples/skills/eval-hooks/SKILL.md
examples/skills/eval-rules/SKILL.md
examples/skills/eval-skills/SKILL.md
examples/skills/explain/SKILL.md
examples/skills/git-ai-archaeology/SKILL.md
examples/skills/git-worktree-clean/SKILL.md
examples/skills/git-worktree-remove/SKILL.md
examples/skills/git-worktree-status/SKILL.md
examples/skills/git-worktree/SKILL.md
examples/skills/guide-recap/SKILL.md
examples/skills/handoff-create/SKILL.md
examples/skills/handoff-resume/SKILL.md
examples/skills/handoff-update/SKILL.md
examples/skills/investigate/SKILL.md
examples/skills/issue-triage/SKILL.md
examples/skills/land-and-deploy/SKILL.md
examples/skills/landing-page-generator/SKILL.md
examples/skills/learn-alternatives/SKILL.md
examples/skills/learn-quiz/SKILL.md
examples/skills/learn-teach/SKILL.md
examples/skills/mcp-integration-reference/SKILL.md
examples/skills/methodology-advisor/SKILL.md

Metadata

Files
0
Version
a8d88fe
Hash
6d144f5b
Indexed
2026-07-25 10:17

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 16:05
浙ICP备14020137号-1 $Гость$