Add timestamped work log entries to track manual changes and communicate with AI
Tracks manual changes and AI decisions in a shared work log for context preservation.
/plugin marketplace add TaylorHuston/ai-toolkit/plugin install ai-toolkit@ai-workflow-marketplace"your comment text"claude-sonnet-4-5WHAT: Add timestamped work log entries to track manual changes and communicate with AI.
WHY: Enable AI to understand manual work, avoid duplicating human effort, and maintain shared context.
HOW: See worklog-format.md for format standards. AI timestamps entry, finds WORKLOG, prepends in reverse chronological order.
/worklog "Added login button to header"
/worklog "Fixed dark mode - using --color-grey-dark (#2d2d2d)"
/worklog "Don't use jsonwebtoken - jose has better TS support"
AI executes this workflow:
date '+%Y-%m-%d %H:%M' (NEVER guess/estimate)git config user.namepm/issues/TASK-###-*/## 2025-10-22 15:30 - @username
Added login button to header
✅ Use when:
/implement❌ Don't use when:
# Work Log - TASK-001: User Authentication
## 2025-10-22 15:30 - @taylor
Added login button with dark mode support.
Files: src/components/Header.tsx
## 2025-10-22 14:30 - backend-specialist
Implemented JWT middleware with refresh logic.
Gotcha: Token expiry configurable via TOKEN_EXPIRY_HOURS.
Files: src/middleware/auth.js
Reverse chronological (newest first) for quick context scanning.
After adding comment, AI analyzes task plan:
Your comment mentions login button. This might relate to:
- [ ] 2.1 Implement login UI components
Update task plan?
1. Mark phase 2.1 complete
2. Add new phase for login work
3. No update needed
Choose (1/2/3): _
Styling work:
/worklog "Tweaked button padding to 12px/24px for mobile"
# → Added to WORKLOG, no plan updates needed
Feature addition:
/worklog "Added email validation to login form"
# → Added to WORKLOG, AI asks: "Mark phase 1.3 complete? (y/n)"
Gotcha documentation:
/worklog "Don't use setTimeout for token refresh - use setInterval"
# → Added to WORKLOG, documented for future reference
API change:
/worklog "API changed - login endpoint now /api/v2/auth/login"
# → Added to WORKLOG, AI asks: "Update phase 3.1 description? (y/n)"
No active task: AI lists available tasks and asks which one to associate comment with
No WORKLOG.md: AI creates it automatically with proper header
For AI: Understands manual changes, avoids duplicating human work, respects decisions For Humans: Quick documentation, no context switching, AI keeps plan synchronized For Teams: Shared history, captured gotchas, implementation timeline
Human-AI collaboration through shared work log: