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.
npx skills add chengkj99/kj-skills --skill ai-coding-weekly-reportgit clone --depth 1 https://github.com/chengkj99/kj-skillsWrote 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.
[](https://agentmods.dev/skills/chengkj99/kj-skills/ai-coding-weekly-report)<a href="https://agentmods.dev/skills/chengkj99/kj-skills/ai-coding-weekly-report"><img src="https://agentmods.dev/badge/skills/chengkj99/kj-skills/ai-coding-weekly-report/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.
<a href="https://agentmods.dev/skills/chengkj99/kj-skills/ai-coding-weekly-report"><img src="https://agentmods.dev/badge/skills/chengkj99/kj-skills/ai-coding-weekly-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00125 | $0.03021 |
| Opus 5 | $0.00063 | $0.01510 |
| Sonnet 5 | $0.00025 | $0.00604 |
| Haiku 4.5 | $0.00013 | $0.00302 |
Grade A, and why
ai-coding-weekly-report 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 236 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI 编程周报生成器
概述
本 Skill 实现「AI 编程领域」中文周报的端到端生成:从多源数据采集,经中文摘要、价值影响判断、去重、评分,筛选 Top 15 条目供人工确认,最终一次性产出三种分发格式。
核心定位:聚焦「AI 编程」赛道 — AI IDE(Cursor / Windsurf / claude code、open code 、codex 等)、AI 编程 Agent、Coding LLM、MCP、Prompt 工程、Vibe Coding、AI 辅助开发最佳实践。
产出目录:所有输出文件存放至项目根目录下 output/ai-coding-weekly-report/,命名格式 [类型]_[YYYYMMDD-HHmm].[ext]。
执行流程
Phase 0:环境准备
- 确认产出目录存在,不存在则创建:
output/ai-coding-weekly-report/ - 记录当前日期时间,用于文件命名(格式
YYYYMMDD-HHmm) - 确定本次周报覆盖的时间范围(默认过去 7 天)
Phase 1:数据采集
从两类来源并行采集:
1A. 自动采集(必选)
读取 references/sources.md 获取完整数据源清单,使用 WebSearch 逐一扫描以下维度:
- 模型发布:新模型、版本更新、基准测试结果
- 工具更新:AI IDE、编程插件、Agent 框架的新版本 / 新功能
- 开源项目:GitHub 热门 AI 编程相关项目、重要 Release
- 论文 & 研究:与代码生成、AI 辅助开发直接相关的论文
- 社区动态:重要讨论、最佳实践分享、行业趋势
采集策略:
对 sources.md 中每个源,执行 WebSearch:
搜索词 = "[源名称] AI coding / AI programming [本周日期范围]"
补充搜索 = "[源名称] release / update / announcement [本周日期范围]"
每条采集结果记录为结构化条目:
{
"title_zh": "中文标题(必须是自然中文,不直接照搬英文)",
"title_original": "英文原标题或原文标题",
"source": "来源名称",
"url": "原始链接",
"url_secondary": "备用/补充链接(可选)",
"date": "YYYY-MM-DD",
"category": "分类标签",
"summary_zh": "中文摘要(2-3句,解释发生了什么)",
"value_zh": "价值说明(1-2句,说明为什么值得程序员关注)",
"impact_zh": "影响判断(1-2句,说明对 AI 编程工作流/工具选择/学习路径的影响)",
"quote_links": [
{
"label": "引用来源名称",
"url": "真实引用链接"
}
],
"summary_original": "原文摘要或英文事实摘录(可选,仅用于核对,不进入正文主叙事)"
}
中文可读性硬约束:
title_zh、summary_zh、value_zh、impact_zh必须使用中文输出。- 英文产品名、模型名、项目名保留原文;解释性文字必须是中文。
- 不得只翻译标题后堆英文摘要;每条至少说明「发生了什么」「为什么重要」「会影响谁/什么工作流」。
quote_links至少包含 1 个真实链接;优先官方公告、Changelog、GitHub Release、论文页或权威媒体报道。
1B. 人工补充(可选)
检查项目中是否存在 manual-input.md 文件(搜索顺序:项目根目录 → output/ai-coding-weekly-report/ 目录 → 兼容旧目录 output/weekly-report/)。
- 文件存在且有内容:解析其中的条目,合并到采集池
- 文件不存在或为空:静默跳过,不报错
manual-input.md 的格式模板参见 assets/manual-input-template.md。
Phase 2:内容分析
对采集池中所有条目执行以下处理:
2A. 分类
为每条内容打上分类标签(可多标签):
| 分类 | 说明 |
|---|---|
| IDE | Cursor / Windsurf / VS Code AI 插件等 |
| CLI | Claude Code / Aider / Continue 等命令行工具 |
| Agent | AI 编程 Agent、自主编码系统 |
| MCP | Model Context Protocol 相关 |
| LLM | 大模型发布、能力评测、API 更新 |
| Framework | LangChain / CrewAI / AutoGen 等框架 |
| Prompt | Prompt 工程、提示词技巧 |
| Practice | AI 编程最佳实践、工程化方法论 |
| VibeCoding | Vibe Coding 相关讨论与案例 |
| Paper | 学术论文 |
| Open Source | 开源项目 |
| Industry | 行业趋势、融资、战略动态 |
What ships with it
4 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.
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.
- 12d ago First seen · 236 lines · 125 tokens per session scan A ba919146bfa8
ai-coding-weekly-report is a skill published in the GitHub repository chengkj99/kj-skills (14 stars, last pushed 11d ago), licensed MIT. It adds 125 tokens to every session and 3,021 once invoked, about $0.0006 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…