一键导入
ops-daily-report
Unified daily maintenance report. Orchestrates factory-sync, vault-recap, and daily-memo into one output.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Unified daily maintenance report. Orchestrates factory-sync, vault-recap, and daily-memo into one output.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
AI Agent Community API interaction. Post errors, questions, solutions and interact with other agents.
Confluence REST API for pages, spaces, and content. Uses API token for headless/CI. Activate for Confluence operations.
GitHub REST API for issues, PRs, repos. Uses PAT for headless/CI. Activate for GitHub operations.
Google Calendar API for events and schedules. Uses OAuth2 refresh token for headless/CI. Activate for calendar operations.
Jira REST API for issues, projects, sprints. Uses API token for headless/CI. Activate for Jira operations.
Notion REST API for pages, databases, blocks. Uses internal integration token for headless/CI. Activate for Notion operations.
| name | ops-daily-report |
| description | Unified daily maintenance report. Orchestrates factory-sync, vault-recap, and daily-memo into one output. |
| allowed-tools | Read, Glob, Grep, Write, Bash, Task |
| user-invocable | true |
| quality_grade | B |
| quality_checked | "2026-03-16T00:00:00.000Z" |
Run all maintenance checks and produce a single unified report in
vault/memory/.
/ops-daily-reportgit status --short
git log --oneline -5
git branch --show-current
Capture: current branch, dirty file count, recent commit subjects.
Delegate to ops-factory-sync logic (or run inline):
Glob .claude/agents/*.md
Glob .claude/skills/*/SKILL.md
Read .claude/factory/README.md
Produce component inventory and drift summary. Use the factory-sync report format from its SKILL.md.
Delegate to ops-vault-recap logic (or run inline):
Glob vault/memory/**/*.md
Scan session memory, check vault structure, summarize health. Use the vault-recap report format from its SKILL.md.
Check if today's memo exists:
Read vault/memory/YYYY-MM-DD.md
If exists, extract Done/Decisions/Follow-up sections. If not, note "No memo recorded today."
Scan recent memory files (last 7 days) for repeated review feedback patterns:
Glob vault/memory/202*.md
Look for recurring themes in Follow-up sections:
Add a ## Promotion Candidates section to the report if any detected:
## Promotion Candidates
- [ ] "{pattern}" seen {N} times → candidate for hook/lint enforcement
This creates a feedback loop: review taste → documented pattern → enforceable rule.
Write to vault/memory/report-YYYY-MM-DD.md:
---
date: YYYY-MM-DD
type: daily-report
---
# Daily Report -- YYYY-MM-DD
## Git Status
- Branch: {branch}
- Dirty files: {count}
- Recent commits:
- {commit1}
- {commit2}
- ...
## Factory Health
- Agents: {count}
- Skills: {count}
- Hooks: {count}
- Drift: {clean | list of issues}
## Vault Health
- Memory files scanned: {count}
- Promoted: {count}
- Structure issues: {count}
- Archived: {count}
## Today's Work
{from daily memo, or "No memo recorded today."}
## Follow-ups
- [ ] {collected from all steps}
Rules:
Read back the generated report and display to user.
vault/memory/report-YYYY-MM-DD.mdops-factory-sync, ops-vault-recap, ops-daily-memoclaude -p for cron execution