From lucen-track
This skill should be used whenever the user wants to correct an existing Lucen Track time entry — phrases like "fix yesterday's entry", "change the duration of my Monday entry", "move it to a different project", "detach the todo from that entry", "remove the #billable tag", "I logged the wrong project". Use this skill for updates; use log-time to create a new entry.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lucen-track:fix-entryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to update fields on a time entry that's already been written.
Use this skill to update fields on a time entry that's already been written.
Never delete-and-recreate to fix a mistake — update-time-entry is the right
tool.
Find the entry. Call get-time-entries for the date or user the
correction applies to. If multiple entries match the user's description
("yesterday's 2h entry" when there are two 2h entries), ask which one
before changing anything.
Resolve any new references.
search-todos first if there's a ticket
reference, otherwise get-projects.search-tags to resolve tag names to ids.Update with only the fields that change. Call update-time-entry with
the entry_id and ONLY the fields the user is changing. Do not re-send
unchanged fields — that risks overwriting values the user didn't intend to
touch.
To detach a todo or remove tags, pass an explicit null or empty value for that field.
get-time-entries and ask before updating.create-time-entry to "fix" an entry by replacement. That
creates a duplicate. Use update-time-entry./track-timer.npx claudepluginhub officetimeline/lucen-plugins --plugin lucen-trackGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.