skills.volces.com1 installs
date-utils
Provides date and time manipulation operations for working with dates. Use when you need to format, parse, compare, or manipulate dates and times.
How do I install this agent skill?
npx skills add https://skills.volces.com --skill jpeng-date-utilsIs this agent skill safe to install?
No partner audit is available yet. Read the source before installing.
What does this agent skill do?
Date Utils
Provides date and time manipulation operations.
Usage
const date = require('./skills/date-utils');
// Formatting
const formatted = date.formatDate(new Date(), 'YYYY-MM-DD HH:mm:ss');
// Parsing
const parsed = date.parseDate('2024-03-15', 'YYYY-MM-DD');
// Differences
const diff = date.diffDays(date1, date2);
// Add/Subtract
const tomorrow = date.addDays(new Date(), 1);
const lastWeek = date.subtractDays(new Date(), 7);
Features
- Date formatting with patterns
- Date parsing from strings
- Date arithmetic (add/subtract)
- Date comparisons
- Timezone handling
- Calendar generation
- Relative time (ago, fromNow)
- Duration calculations
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/skills.volces.com/jpeng-date-utils">View date-utils on skillZs</a>