원클릭으로
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