weekly-digest

weekly-digest is a skill for Claude Code from XuanRanL/loamwright-SEO-Skill. It costs 80 tokens per session (5,708 once invoked), scanned A, original, Apache-2.0.

A workflow that gathers industry news, turns it into a search-friendly weekly digest, and creates it as a draft WordPress article.

In plain words
What is it for?
Collecting news from selected sources, assembling weekly reports, and preparing WordPress drafts for later review and publication.
Why use it?
It separates recurring news roundups from ordinary articles and keeps the result unpublished until someone explicitly approves going live.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; mentions subagents.

Part of the xuanran-seo-blog-writer plugin — 68 skills, 34 agents, 4 hooks shipped together

Good fit Collecting news from selected sources, assembling weekly reports, and preparing WordPress drafts for later review and publication.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xuanranl/loamwright-seo-skill/weekly-digest
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add XuanRanL/loamwright-SEO-Skill --skill weekly-digest
Clone the repo
git clone --depth 1 https://github.com/XuanRanL/loamwright-SEO-Skill

Made for: Claude Code.

Or install xuanran-seo-blog-writer, the plugin that ships this one along with the rest of its 68 skills, 34 agents, 4 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for weekly-digest

README.md
[![agentmods](https://agentmods.dev/badge/skills/xuanranl/loamwright-seo-skill/weekly-digest/github.svg)](https://agentmods.dev/skills/xuanranl/loamwright-seo-skill/weekly-digest)
Your own site
<a href="https://agentmods.dev/skills/xuanranl/loamwright-seo-skill/weekly-digest"><img src="https://agentmods.dev/badge/skills/xuanranl/loamwright-seo-skill/weekly-digest/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for weekly-digest

Your own site · 80×15
<a href="https://agentmods.dev/skills/xuanranl/loamwright-seo-skill/weekly-digest"><img src="https://agentmods.dev/badge/skills/xuanranl/loamwright-seo-skill/weekly-digest.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,708 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 13
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium Agent Snooping · line 335
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium Agent Snooping · line 486
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00080 $0.05708
Opus 5 $0.00040 $0.02854
Sonnet 5 $0.00016 $0.01142
Haiku 4.5 $0.00008 $0.00571

Measured 10d ago against content hash 60f0d4669e4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

weekly-digest scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

extract-verified Tier-B item from an off-list domain (axios.com,
skills/weekly-digest/SKILL.md · 493 lines

How it starts

The opening of the file, as written. The whole thing — 493 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/weekly — Weekly Industry Digest Skill (v1.0)

Produces a SEO- and GEO-optimised weekly news digest article, published as DRAFT by default (Rule 5a). The pipeline reuses the standard run_pipeline loop from skills/seo-blog/SKILL.md for all build→publish stages, but bypasses keyword-research, SERP-analysis, and competitor-analysis (meaningless for a digest) via explicit --action skip.


⛔ READ FIRST — Rule 5a: DRAFT by default

Every /weekly run creates a WordPress post with status: "draft".
Publishing live requires explicit user confirmation in the same conversation: "publish" / "go live" / "发布" / "上线" — or a project-level publish_policy.default = "publish" in business-context.json.
The pipeline MUST NOT flip status to publish without that signal.


Step 0 — Startup: resolve active project (env-first)

active_slug=$(python -c "from scripts._core import active_project as a; print(a.get_active_project() or '')")

If active_slug is empty, ask the user which project to run for (/switch <slug> or set XS_ACTIVE_PROJECT env var). Do not proceed without a slug.


Step 1 — Load weekly_digest config; stop if absent or disabled

python -c "
import json, sys
from pathlib import Path
bc = json.loads(Path('projects/{slug}/business-context.json').read_text(encoding='utf-8'))
wd = bc.get('weekly_digest', {})
if not wd.get('enabled'):
    print('NOT_ENABLED')
    sys.exit(2)
print('OK')
"

If the command prints NOT_ENABLED (or the file is missing), stop and tell the user:

The weekly_digest block is absent or enabled: false in projects/{slug}/business-context.json. Add a weekly_digest object with at least {"enabled": true, "series_keyword": "...", "connectors": {...}} to activate the feature. Plan 3 (loamwright rollout) wires the first production config.


Step 2 — Create task workspace

tid = "{slug}_wk_{YYYYMMDD}"   # e.g. loamwright_wk_20260630
                                # must match ^[a-z0-9_]{8,32}$
ws  = "memory/workspace/{tid}/"

Read the full file on GitHub · 493 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 493 lines · 80 tokens per session scan A 60f0d4669e4c

Subscribe to this mod's changes

weekly-digest is a skill published in the GitHub repository XuanRanL/loamwright-SEO-Skill (47 stars, last pushed 24d ago), licensed Apache-2.0. It adds 80 tokens to every session and 5,708 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

geo-platform-optimizer

Platform-specific AI search optimization — audit and optimize for Google AI Overviews, ChatGPT, Perplexity, Gemini, and Bing Copilot individually.

zubair-trabzada/geo-seo-claude · 34 tokens

continuous-improvement-loop

Run Part 12 of the engagement methodology — the continuous improvement loop that aggregates quarterly-review, customer-feedback, competitive, and operating signals into a Quarterly Product & Offering Improvement Brief for business leadership, plus fast 1-3 page ad-hoc briefs when a significant signal lands…

indranilbanerjee/digital-marketing-pro · 148 tokens

four-core-documents

Produce Part 3 of the 12-Part engagement: the four strategic-spine documents across 61 steps — 3.1 Business & SBU Analysis, 3.2 Segmentation Framework, 3.3 Brand Positioning & Communications, 3.4 DMFlow — with --doc single-document runs, --view v2 re-runs, and a --combined executive stitch. Triggers on…

indranilbanerjee/digital-marketing-pro · 164 tokens

seo-plan

Build a 12-month SEO strategy and phased roadmap with industry templates (SaaS, ecommerce, local, publisher, agency). With fresh specialist outputs it runs as a dispatcher: scores four pillars — technical, content, topical, AI search — and makes the weakest pillar the plan's lead theme; missing specialists re-run only…

indranilbanerjee/digital-marketing-pro · 177 tokens

c2pa-metadata

Embed a C2PA provenance manifest into an AI-generated marketing asset (PNG, JPG, WebP, GIF, TIFF, MP4, MOV, WebM, MP3, WAV, PDF) via scripts/embed-c2pa.py — produces a signed copy of the file carrying IPTC digital-source-type AI claims, an optional c2pa.ai-disclosure assertion for EU AI Act Article 50 (applicable 2…

indranilbanerjee/digital-marketing-pro · 183 tokens

import-guidelines

Import brand guidelines — voice and tone rules, messaging, banned words and restrictions, channel styles, visual identity — and structure them into enforceable markdown files in the brand's guidelines layer, auto-classified by category, conflict-checked against the brand profile, and merged with existing rules rather…

indranilbanerjee/digital-marketing-pro · 129 tokens