worklog-report

Generate worklog reports from Git commits, Claude Code sessions, and Cursor sessions with AI summary. Use for daily reports, weekly reports, and work summaries.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "worklog-report" with this command: npx skills add tssujt/skills/tssujt-skills-worklog-report

Generate a worklog report with the following steps:

  1. Determine WORKSPACE_ROOT and GIT_AUTHOR before running any script:

    • Both should come from the user's environment, request, or CLAUDE.md settings. If not available, ask the user.
    • WORKSPACE_ROOT is the root directory containing the target git repositories.
    • GIT_AUTHOR is the git author name to filter commits. It can be obtained via git config user.name.
  2. Convert the user's natural-language request into explicit collect.py arguments:

    • Never pass raw $ARGUMENTS directly to collect.py.
    • Only pass supported flags: --workspace-root, --date, --since, --until.
    • If the user mentions a workspace by name such as "caiyun", resolve it to a concrete absolute path before running the script.
    • If the request describes a date range in natural language, convert it to ISO dates first.
    • If any required value is ambiguous or cannot be resolved confidently, ask a clarifying question instead of running the script.
  3. Use these date conversion rules:

    • "today" -> --date YYYY-MM-DD
    • "yesterday" -> --date YYYY-MM-DD
    • "this week" -> --since Monday of the current week, --until today
    • "last week" -> --since Monday of the previous week, --until Sunday of the previous week
    • Explicit dates or ranges should be converted directly to --date or --since + --until
  4. Run the data collection script only after the arguments have been fully resolved:

python3 ${CLAUDE_SKILL_DIR}/scripts/collect.py \
  --git-author "$GIT_AUTHOR" \
  --workspace-root "$WORKSPACE_ROOT" \
  [--date YYYY-MM-DD | --since YYYY-MM-DD --until YYYY-MM-DD]
  1. Examples of correct conversions:

    • /worklog-report generate this week's worklog for caiyun -> resolve WORKSPACE_ROOT to the caiyun workspace path -> convert "this week" to --since Monday of the current week and --until today
    • /worklog-report summarize yesterday's work -> keep the default workspace if configured -> convert "yesterday" to --date YYYY-MM-DD
    • /worklog-report --workspace-root /path/to/ws --since 2026-03-02 --until 2026-03-06 -> use the provided flags directly
  2. Based on the raw data from stdout, generate a concise summary of the work done:

    • Group by project
    • Highlight main accomplishments and key changes
    • Do NOT include specific times, only summarize the work
    • Output the summary directly without extra headings or prefixes
  3. Output the final report directly in the conversation:

    • Start with the title line from the raw report
    • Insert ## Summary\n\n{summary}\n after the title
    • Do NOT append the rest of the raw report content (Git Commits, Claude Code Sessions, Cursor Sessions sections)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.

Repository SourceNeeds Review
94.2K160.3K
anthropics
Coding

remotion-best-practices

Use this skills whenever you are dealing with Remotion code to obtain the domain-specific knowledge.

Repository Source
2.1K147.9K
remotion-dev
Coding

azure-ai

Service Use When MCP Tools CLI

Repository SourceNeeds Review
155136.1K
microsoft