mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-21 15:09:32 +02:00
26 lines
772 B
TypeScript
26 lines
772 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('time', {
|
|
name: 'Crontab explainer',
|
|
path: 'crontab-guru',
|
|
icon: 'mdi:calendar-clock',
|
|
description:
|
|
'Parse, validate, and explain crontab expressions in plain English.',
|
|
shortDescription: 'Crontab expression parser and explainer',
|
|
keywords: [
|
|
'crontab',
|
|
'cron',
|
|
'schedule',
|
|
'guru',
|
|
'time',
|
|
'expression',
|
|
'parser',
|
|
'explain'
|
|
],
|
|
longDescription:
|
|
'Enter a crontab expression (like "35 16 * * 0-5") to get a human-readable explanation and validation. Useful for understanding and debugging cron schedules. Inspired by crontab.guru.',
|
|
userTypes: ['Developers'],
|
|
component: lazy(() => import('./index'))
|
|
});
|