一键导入
diary
Project work diary. Use at session start to load context, or at session end to record what was done this session.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Project work diary. Use at session start to load context, or at session end to record what was done this session.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | diary |
| description | Project work diary. Use at session start to load context, or at session end to record what was done this session. |
| argument-hint | "read" (default) to surface this week's log at session start, "log" to append a summary of the current session |
Manages a weekly work log stored in .github/diary/. Files are named by ISO week: YYYY-Www.md (e.g., 2026-W23.md).
Run this in PowerShell to get the filename:
$isoWeek = Get-Date -UFormat "%V"
$isoYear = Get-Date -UFormat "%G"
$filename = ".github/diary/$isoYear-W$isoWeek.md"
/diary or /diary readUse at the start of a session to load context.
/diary logUse mid-session or at the end of a session to record what was done.
.github/diary/ directory if needed, then create the file with the week header# Week WW — YYYY
## YYYY-MM-DD
Summary of what was worked on. Any blockers. What's next.
## YYYY-MM-DD
Another entry.
Use when implementing a feature from a completed spec in this .NET 10 Minimal API + Vue 3 project. Orchestrates architect, backend-developer, frontend-developer, test-writer, and code-reviewer with quality gates and fix loops.
Scaffold a new API endpoint with DTO, repository interface, and integration test. Use when creating a new endpoint, adding a new API route, or implementing a new feature endpoint.
Run Playwright E2E tests with backend in E2E mode. Use when running end-to-end tests, testing E2E, verifying user flows, or debugging Playwright failures.
Run the full Mongoose.gg test suite. Use when running all tests, validating regressions, checking backend + frontend together, or doing final verification before completion.