QianYuan.AIAgenticFramework: Skill for Codex

.agents/skills/summarize/SKILL.md

summarize is a skill for Codex from zhouguoqing/QianYuan.AIAgenticFramework. It costs 72 tokens per session (608 once invoked), scanned A, original, Apache-2.0.

A command-line tool for summarising web pages, local files, YouTube links, podcasts, and other media with language models.

In plain words
What is it for?
It is for summarising URLs and files, processing piped text, handling media links, extracting content, selecting a model, and returning diagnostics or structured output.
Why use it?
It lets developers turn long or varied sources into shorter notes, or extract their contents, from a terminal command.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is zhouguoqing/QianYuan.AIAgenticFramework's own configuration. It tells Codex how to work on QianYuan.AIAgenticFramework itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything QianYuan.AIAgenticFramework configures →

Reuse

Borrowing it

Nothing to install: this file belongs to zhouguoqing/QianYuan.AIAgenticFramework. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/zhouguoqing/QianYuan.AIAgenticFramework/main/.agents/skills/summarize/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/zhouguoqing/QianYuan.AIAgenticFramework

Made for: Codex.

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 summarize

README.md
[![agentmods](https://agentmods.dev/badge/skills/zhouguoqing/qianyuan.aiagenticframework/summarize/github.svg)](https://agentmods.dev/skills/zhouguoqing/qianyuan.aiagenticframework/summarize)
Your own site
<a href="https://agentmods.dev/skills/zhouguoqing/qianyuan.aiagenticframework/summarize"><img src="https://agentmods.dev/badge/skills/zhouguoqing/qianyuan.aiagenticframework/summarize/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 summarize

Your own site · 80×15
<a href="https://agentmods.dev/skills/zhouguoqing/qianyuan.aiagenticframework/summarize"><img src="https://agentmods.dev/badge/skills/zhouguoqing/qianyuan.aiagenticframework/summarize.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 608 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.00072 $0.00608
Opus 5 $0.00036 $0.00304
Sonnet 5 $0.00014 $0.00122
Haiku 4.5 $0.00007 $0.00061

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

Security

Grade A, and why

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 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.

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.

.agents/skills/summarize/SKILL.md · 57 lines

How it starts

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

Summarize CLI

Use this skill to run summarize effectively in terminal workflows. Focus on practical usage and command execution, not broad project background.

Workflow

  1. Confirm input type and desired output format.
  2. Run a minimal real command first (summarize "<input>").
  3. Select a model/provider and ensure matching API credentials.
  4. Add flags incrementally only after a baseline run succeeds.
  5. If it fails, re-run with --verbose or --json before changing multiple variables.

Quick Patterns

  • Summarize a URL: summarize "https://example.com"
  • Summarize a local file: summarize "/path/to/file.pdf"
  • Summarize piped input: cat notes.md | summarize -
  • Summarize YouTube/media URL: summarize "https://youtube.com/watch?v=..."
  • Force model/provider: summarize "https://example.com" --model openai/gpt-5-mini
  • Control length: summarize "https://example.com" --length long
  • Return diagnostics JSON: summarize "https://example.com" --json
  • Extract content without summarizing: summarize "https://example.com" --extract --format md

Configuration Rules

  • Prefer explicit --model on task-critical runs.
  • Use ~/.summarize/config.json for stable defaults.
  • Remember precedence for model selection:
    1. --model
    2. SUMMARIZE_MODEL
    3. ~/.summarize/config.json
    4. built-in default (auto)

Troubleshooting Flow

  1. Re-run with --verbose.
  2. Confirm API key matches the chosen provider/model.
  3. Switch to a known-good model (for example openai/gpt-5-mini or google/gemini-3-flash-preview).
  4. For media or YouTube failures, verify external dependencies (yt-dlp, ffmpeg, optionally tesseract).
  5. Use --json to inspect extraction and metric fields.

Scope

  • Prioritize how to run commands and fix concrete failures.
  • Do not include full repository-level documentation unless explicitly requested.
  • Use references/cli.md only for deeper flag/provider details.

References

Read references/cli.md for install commands, provider keys, advanced flags, and error-specific guidance.

Read the full file on GitHub · 57 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 57 lines · 72 tokens per session scan A 44ebbaf806a9

Subscribe to this mod's changes

summarize is a skill published in the GitHub repository zhouguoqing/QianYuan.AIAgenticFramework (36 stars, last pushed 24d ago), licensed Apache-2.0. It adds 72 tokens to every session and 608 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

conversational-ux

Design voice and conversational interfaces — dialog flows, error recovery, and persona. Use when the interface speaks and listens rather than being tapped. For graphical input collection, use form-design.

Owl-Listener/designer-skills · 43 tokens

platform-conventions

Design to iOS and Android conventions — what each OS mandates, where they diverge, and when to unify. Use when shipping native apps. For breakpoint adaptation use responsive-design; for matching competitor patterns use jakobs-law (interaction-design).

Owl-Listener/designer-skills · 55 tokens

research-repository

Build a repository that makes findings findable, reusable, and cumulative across teams. Use when the same research keeps getting redone. For synthesising one study, use affinity-diagram.

Owl-Listener/designer-skills · 43 tokens

design-negotiation

Advocate for design quality, scope, and timeline with partners and leadership using evidence and shared goals. Use in the conversation itself. For the commercial vocabulary behind it, use business-design (ux-strategy).

Owl-Listener/designer-skills · 48 tokens

form-design

Design a form end to end — field order, grouping, validation, and completion. Use when the artifact is a form. For product-wide error strategy use error-handling-ux; for first-run signup use onboarding-design.

Owl-Listener/designer-skills · 51 tokens

peak-end-rule

Apply the Peak-End Rule — a flow is remembered by its most intense moment and its last. Use when designing completion, celebration, or cancellation moments. For sustaining engagement mid-flow, use zeigarnik-effect.

Owl-Listener/designer-skills · 47 tokens