.claude/skills/worklog/SKILL.md
--- name: worklog description: Update worklog files by moving tasks between todo/doing/done states. Use when recording task progress, starting new work, or marking tasks complete. Requires explicit arguments: worklog [done|doing|todo] [description]. --- # Worklog Update task state in worklog files. Requires explicit arguments. ## Worklog Files - `localdocs/worklog.todo.md` — backlog - `localdocs/worklog.doing.md` — in progress - `localdocs/worklog.done.md` — completed (grouped by date, appen
npx skillsauth add taewook486/real-estate-mcp .claude/skills/worklogInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Update task state in worklog files. Requires explicit arguments.
localdocs/worklog.todo.md — backloglocaldocs/worklog.doing.md — in progresslocaldocs/worklog.done.md — completed (grouped by date, append-only)worklog is for current phase/session execution tracking.
For future items not yet included in an approved plan, use localdocs/backlog.<topic>.md.
$ARGUMENTS must be: [state] [description]
done [description] — mark task completedoing [description] — start working on a tasktodo [description] — add to backlogIf no arguments, stop and output:
Error: worklog requires explicit arguments.
Usage: worklog [done|doing|todo] [description]
Examples:
worklog done config/settings.py setup complete
worklog doing collectors/data_go_kr.py implementation
worklog todo parsers/xml_parser.py implementation
done: Read worklog.doing.md only — to find and remove the matching item.
doing: Read worklog.todo.md only — to find and remove the matching item.
todo: No need to read any file — just append.
Never read worklog.done.md — it is append-only and grows over time.
done [description]worklog.doing.md; find matching item (keyword match, not exact)worklog.done.md under today's date section (## YYYY-MM-DD), creating the section if absentdoing [description]worklog.todo.md; find matching itemworklog.doing.mdtodo [description]worklog.todo.md## YYYY-MM-DD)Worklog updated:
- [action taken]: [description]
development
Test-Driven Development workflow. Use for ALL code changes - features, bug fixes, refactoring. TDD is non-negotiable.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
Refactoring assessment and patterns. Use after tests pass (GREEN phase) to assess improvement opportunities.
tools
Expert assistant for developing Model Context Protocol (MCP) servers in Python. Use when creating, debugging, or optimizing MCP servers with FastMCP, tools, resources, and prompts.