syndicate-summarize

syndicate-summarize is a skill for Claude Code from aadarshvelu/syndicate. It costs 31 tokens per session (660 once invoked), scanned A, original, MIT.

A command that uses a selected AI service to summarize items that do not yet have summaries, then saves the results in a database.

In plain words
What is it for?
Use it to process a limited number of unsummarized items and add short summaries, teasers, importance labels, and categories to them.
Why use it?
It removes the need to summarize each item manually. It also checks that the chosen AI service is available before processing items that may incur usage costs.

Skill for Claude Code

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

Part of the syndicate-pipeline plugin — 11 skills shipped together

Good fit Use it to process a limited number of unsummarized items and add short summaries, teasers, importance labels, and categories to them.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aadarshvelu/syndicate/syndicate-summarize
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 aadarshvelu/syndicate --skill syndicate-summarize
Clone the repo
git clone --depth 1 https://github.com/aadarshvelu/syndicate

Made for: Claude Code.

Or install syndicate-pipeline, the plugin that ships this one along with the rest of its 11 skills.

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 syndicate-summarize

README.md
[![agentmods](https://agentmods.dev/badge/skills/aadarshvelu/syndicate/syndicate-summarize.svg)](https://agentmods.dev/skills/aadarshvelu/syndicate/syndicate-summarize)
Your own site
<a href="https://agentmods.dev/skills/aadarshvelu/syndicate/syndicate-summarize"><img src="https://agentmods.dev/badge/skills/aadarshvelu/syndicate/syndicate-summarize.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 660 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00031 $0.00660
Opus 5 $0.00015 $0.00330
Sonnet 5 $0.00006 $0.00132
Haiku 4.5 $0.00003 $0.00066

Measured 8d ago against content hash 4899c103204b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

syndicate-summarize scanned grade A with 0 findings 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/syndicate-summarize/SKILL.md · 68 lines

What it actually says

/syndicate-summarize

You are running the AI summarizer. This writes summary fields to the DB and calls an LM (whichever provider AI_PROVIDER selects: ollama, anthropic, openai, gemini, minimax). Cost-bearing — only run when the user explicitly asked.

Step 1 — preflight

Run status and verify the provider matching env_present.AI_PROVIDER (default ollama when unset) has its credential:

  • ollamaollama_reachable is true
  • anthropicenv_present.ANTHROPIC_API_KEY is true
  • openaienv_present.OPENAI_API_KEY is true
  • geminienv_present.GEMINI_API_KEY is true
  • minimaxenv_present.MINIMAX_API_KEY is true

If the provider can't be reached or the required key is missing, stop with a clear error rather than burning items on transient failures.

Also report items_unsummarized from status — that's the upper bound on what this run could process.

Step 2 — summarize

Default --limit is 50. Parse $ARGUMENTS for --limit N:

cd "${SYNDICATE_REPO:-$(pwd)}" && uv run python -m pipeline.cli summarize --limit ${limit:-50}

Each item takes ~1–18 minutes depending on provider/model and whether the item has an image (vision items are slower). For local Ollama on a Mac M-series, plan ~2 minutes per item on average. The skill runs in a forked subagent context so progress logs are isolated.

Output envelope:

{"ok": true, "result": {"examined": N, "summarized": N, "skipped": N, "errors": []}, "log_path": "..."}

Step 3 — report

✓ summarize · examined=X done=Y skipped=Z

skipped includes items the summarizer classified as banter, empty_content, or reaction (which have a skip_reason persisted so they never re-process). Surface unexpected errors[] entries verbatim — those are transient failures and will retry on the next run.

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. 8d ago First seen · 68 lines · 31 tokens per session scan A 4899c103204b

Subscribe to this mod's changes

syndicate-summarize is a skill published in the GitHub repository aadarshvelu/syndicate (2 stars, last pushed 3mo ago), licensed MIT. It adds 31 tokens to every session and 660 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.