You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@versatly/tasktime

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@versatly/tasktime

CLI task timer for AI agents - benchmark learning progression with auto-save logs and visualizations

Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
1
-91.67%
Maintainers
1
Weekly downloads
 
Created
Source

@versatly/tasktime ⏱️

CLI task timer for AI agents — benchmark your learning progression with auto-save logs and visualizations.

Install

npm install -g @versatly/tasktime

Usage

# Start timing a task
tasktime start "Build auth module" --category coding

# Check what's running
tasktime status

# Stop when done
tasktime stop --notes "Implemented JWT + refresh tokens"

# View history
tasktime history
tasktime ls -n 20

# Search tasks
tasktime search "auth"

# Get reports with charts
tasktime report
tasktime report --days 30

# Pretty charts
tasktime chart --type bar
tasktime chart --type line
tasktime chart --type spark

# List categories
tasktime categories

# One-liner for prompts
tasktime now  # ⏱️ Build auth module (1h 23m)

Alias

tt is a shortcut:

tt start "Quick fix"
tt stop
tt report

Features

  • ⏱️ Simple timer — start/stop with one command
  • 📁 Categories — organize tasks by type
  • 🔍 Full-text search — find any past task
  • 📊 ASCII charts — bar, line, sparkline
  • 💾 SQLite storage — local, fast, reliable
  • 📝 Notes — attach context when stopping

Data

Stored in ~/.tasktime/tasks.db (SQLite).

Programmatic Use

import { startTask, stopTask, getTasks, getStats } from '@versatly/tasktime';

const task = startTask('My task', 'coding');
// ... do work ...
const completed = stopTask(task.id, 'Done!');

License

MIT

Keywords

timer

FAQs

Package last updated on 10 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts