audit-report-daily

audit-report-daily is a skill for Claude Code from RickyTong1/audit-harness. It costs 79 tokens per session (1,192 once invoked), scanned A, original, MIT.

A daily work-report generator that reads audit records from a project’s `.claude/runs/` folder. It creates a report whose numbers can be traced back to those records.

In plain words
What is it for?
Use it to generate a report for today or a chosen date, including tasks, tool use, changes, warnings, user corrections, and follow-up items from the previous day.
Why use it?
It avoids filling in work summaries from memory, which can lead to missing or unsupported figures. It also gathers activity from multiple audit files into one report.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to generate a report for today or a chosen date, including tasks, tool use, changes, warnings, user corrections, and follow-up items from the previous day.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rickytong1/audit-harness/audit-report-daily
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 RickyTong1/audit-harness --skill audit-report-daily
Clone the repo
git clone --depth 1 https://github.com/RickyTong1/audit-harness

Made for: Claude Code.

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 audit-report-daily

README.md
[![agentmods](https://agentmods.dev/badge/skills/rickytong1/audit-harness/audit-report-daily/github.svg)](https://agentmods.dev/skills/rickytong1/audit-harness/audit-report-daily)
Your own site
<a href="https://agentmods.dev/skills/rickytong1/audit-harness/audit-report-daily"><img src="https://agentmods.dev/badge/skills/rickytong1/audit-harness/audit-report-daily/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 audit-report-daily

Your own site · 80×15
<a href="https://agentmods.dev/skills/rickytong1/audit-harness/audit-report-daily"><img src="https://agentmods.dev/badge/skills/rickytong1/audit-harness/audit-report-daily.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,192 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00079 $0.01192
Opus 5 $0.00039 $0.00596
Sonnet 5 $0.00016 $0.00238
Haiku 4.5 $0.00008 $0.00119

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

Security

Grade A, and why

audit-report-daily 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 11d 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/audit-report-daily/SKILL.md · 147 lines

How it starts

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

/report-daily — 审计驱动工作日报

触发方式

/report-daily              # 生成今天的日报(截止到当前时刻)
/report-daily 20260319     # 生成指定日期的日报
/report-daily review       # 生成日报 + 晨间自我修正报告

数据源

日报的每个数字都有明确的数据源,不允许"凭记忆"填写。

所有数据来自 .claude/runs/ 目录:

日报板块 数据源
任务总览 .claude/runs/index.json
工具操作统计 .claude/runs/*/audit_trail.jsonl 中的 tool 记录
变更记录 .claude/runs/*/audit_trail.jsonl 中含 "change"/"prompt"/"edit" 的条目
[AUDIT] 块汇总 .claude/runs/audit_pending.jsonl + 各 session 的 audit_trail
异常与告警 .claude/runs/*/anomalies.json(如果存在)
用户反馈与修正 audit_trail 中含 "user_correction" 的条目
昨日待办跟进 前一天日报(.claude/runs/daily/ 下)

执行步骤

1. 收集数据

target_date="${1:-$(date +%Y%m%d)}"

# 1. 读取 index.json,筛选 target_date 相关的 session
# 2. 逐个读取各 session 的 audit_trail.jsonl
# 3. 读取 audit_pending.jsonl(可能有未归档的最新数据)
# 4. 如果有前一天的日报,提取 §七 待办(用于跟进)

2. 生成日报

按以下结构填充,每个数字旁标注数据来源:

# 工作日报 | {DATE}

> 自动生成时间: {NOW}
> 数据来源: .claude/runs/index.json + 各 session audit_trail
> 覆盖时间段: {DATE} 00:00 — {DATE} 23:59

---

## 一、任务总览

| # | 类型 | session_id | 任务描述 | 状态 | 审计记录数 |
|---|------|-----------|---------|------|-----------|

> 来源: .claude/runs/index.json

---

## 二、操作统计

| 指标 | 数量 | 来源 |
|------|------|------|
| Write/Edit 操作 | {N} | audit_trail tool=Write/Edit |
| Bash 执行 | {N} | audit_trail tool=Bash |
| [AUDIT] 块 | {N} | audit_pending + audit_trail |

---

## 三、变更记录

| # | 时间 | 变更对象 | 变更内容 | 来源 |
|---|------|---------|---------|------|

> 从 audit_trail 和 audit_pending 中提取涉及文件修改的条目

---

## 四、用户反馈与修正

| # | 反馈内容 | 修正后 | 已固化到 |
|---|---------|-------|---------|

> 从 audit_trail 中提取 user_correction 类型条目

---

## 五、昨日待办跟进

| # | 昨日待办 | 今日状态 | 说明 |
|---|---------|---------|------|

---

## 六、明日待办

- [ ] ...

---

## 七、审计完整性

| 检查项 | 结果 |
|--------|------|
| 所有 session 有审计记录 | {结果} |
| [AUDIT] 块已持久化 | {结果} |
| 用户修正已固化 | {结果} |

3. 保存

mkdir -p .claude/runs/daily
# 写入 .claude/runs/daily/{YYYYMMDD}_daily.md

Read the full file on GitHub · 147 lines

Files

What ships with it

1 file 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. 11d ago First seen · 147 lines · 79 tokens per session scan A 87fc0bf1e3be

Subscribe to this mod's changes

audit-report-daily is a skill published in the GitHub repository RickyTong1/audit-harness (472 stars, last pushed 3mo ago), licensed MIT. It adds 79 tokens to every session and 1,192 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

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…

vercel/next.js · 83 tokens

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…

vercel/next.js · 170 tokens

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…

vercel/next.js · 103 tokens