Work Report Summary
Overview
Persist work logs in SQLite instead of ad hoc notes so the same history can be queried later for exact daily or weekly summaries.
Workflow
- Resolve the date as an explicit
YYYY-MM-DDvalue before writing or reading. - Resolve the database target.
Use
defaultunless the user asks for a separate database. Persist to~/.work_report_summary/<db_name>.dbunless the user explicitly asks for another path. - Convert each work item into one JSON array element.
Use
taskas required. Usestatusonly when the user indicatesdone,in_progress, orblocked. Usedetailsfor brief outcome or blocker context. - Run the runtime script:
recordto append entries for a dayreplace-dayto overwrite one day's report with the corrected full setupdate-entryto revise one existing task byentry iddelete-entryto remove one existing task byentry identry-historyto inspect all saved versions for oneentry idday-historyto inspect all saved changes associated with one work dateday-reportto inspect one dayweek-reportto inspect the Monday-Sunday week for an anchor date
- Read the JSON output and answer in the user's language.
- Stop and surface the error if the command fails. Do not invent missing data.
Recording Rules
- Split multiple tasks into separate items before calling
record. - Default
statustodonewhen the user simply says they finished something. - Preserve short evidence in
detailswhen the user mentions outcome, link, or blocker context. - Run one
recordcommand per date when the user gives updates for multiple days. - Use
replace-daywhen the user says they want to revise, correct, overwrite, or redo an existing daily report. - Treat
replace-dayas a full replacement for that date, not a partial merge. - Use
update-entrywhen the user wants to correct just one logged task while leaving the rest of the day unchanged. - Resolve the target
entry idfromday-reportorweek-reportbefore callingupdate-entry. - Use
delete-entrywhen the user wants to remove one mistaken task while leaving the rest of the day unchanged. - Use
entry-historywhen the user asks what changed, wants an audit trail, or needs to inspect versions after an update or deletion. - Use
day-historywhen the user asks how a day's report changed over time, or wants to review all historical edits related to one report date.
Reporting Rules
- Use
day-reportfor one explicit date. - Use
week-reportfor "this week" or any request anchored to a date inside the requested week. - When the user writes in Chinese, prefer the response shapes in
{baseDir}/references/chinese_output.md. - Mention the exact date or week range in the final answer.
- State that a day has no recorded entries when the database is empty for that day.
References
- Read
{baseDir}/references/commands.mdfor CLI arguments, payload shape, environment variables, and output fields. - Read
{baseDir}/references/chat_reference.mdfor example user prompts and command selection patterns. - Read
{baseDir}/references/chinese_output.mdfor concise Chinese response templates for record confirmations, single-entry updates, deletions, history queries, date-history queries, report corrections, daily queries, and weekly summaries.