agentsclimarketplace

Drag log

Skill treramey/drag/skills/drag-log

Log time to Tempo Cloud with Drag. Use when the user asks to add or preview a worklog using a duration, clock interval, date, description, remaining estimate, or Tempo work attributes.From its SKILL.md

Install
npx -y skills add treramey/drag --skill drag-log

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 27 days oldThe repository was created 27 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.5 KB, 667 tokens by cl100k_base, as published. Nobody here has run it

drag log

Shared Drag rules

  • Run drag doctor when configuration state is uncertain. Never print credential values.
  • Prefer explicit structured output for automation. Use drag --output json, or NDJSON only with list.
  • Inspect unfamiliar arguments with drag <command> --help and inspect the machine contract with drag schema.
  • Use drag setup --from-env --dry-run to validate unattended configuration without writing it.
  • Preview mutations with --dry-run; execute them only when the user's request explicitly authorizes the change.
  • Successful JSON uses {"ok":true,"data":...}. Errors use {"ok":false,"error":{...}} on stderr.

Add a worklog using a duration or interval.

Usage

Usage: drag log [OPTIONS] [ISSUE_KEY] [DURATION_OR_INTERVAL] [WHEN]

Arguments

ArgumentRequiredDefaultDescription
<issue_key>conditionalJira issue key
<duration_or_interval>conditionalDuration (1h15m) or interval (11-12:30 or 11.35-14.20)
<when>notodayInConfiguredLocalTimeZoneDate: YYYY-MM-DD, y, yesterday, t±N, or today±N
--descriptionnoWorklog description
--startnoStart time for duration input (HH:mm)
--remaining-estimatenoRemaining estimate as a duration, such as 2h
--attrnoTempo work attribute as KEY=VALUE. Repeat for multiple attributes
--jsonnoRaw input JSON, or '-' to read it from stdin
--dry-runnofalseValidate and print the Tempo request without sending it

Examples

drag log ABC-123 1h
drag l ABC-123 11:35-14:20 yesterday -d "review"
drag log ABC-123 11.35-14.20 2026-07-14
drag log ABC-123 1h15m 2026-07-14 --start 09:30 --remaining-estimate 2h
drag log ABC-123 1h --attr _Test_=RD --dry-run
drag log --json '{"issueKey":"ABC-123","durationOrInterval":"30m","attributes":{"_Test_":"RD"}}' --dry-run
printf '%s' '{"issueKey":"ABC-123","durationOrInterval":"30m"}' | drag log --json - --dry-run

Mutation policy

log creates a Tempo worklog. Start with --dry-run, verify the normalized issue, date, time, duration, description, and work attributes, then execute without --dry-run only when the user's request explicitly authorizes creating the worklog.

Inspect the contract

drag log --help
drag schema

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,782. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.