Implements a comprehensive suite of AI SDK v6 tools across multiple categories: - Research (5): page-brief, compare-pages, source-credibility, claim-checklist, timeline-from-text - Web (10): fetch-text, links-catalog, extract-meta, extract-json-ld, redirect-trace, sitemap-read, rss-read, table-extract, robots-policy, url-normalize - Data (15): csv-parse, csv-stringify, json-repair, json-schema-validate, yaml-parse, yaml-stringify, text-chunk, normalize-whitespace, dedupe-by-key, pivot, rows-filter, rows-sort, rows-group-aggregate, rows-join, schema-infer - Doc (12): toc-generate, glossary-build, faq-from-text, executive-brief, decision-record-adr, prd-outline, acceptance-criteria, style-rewrite - Eng (12): diff-text-unified, env-var-docs-generate, dependency-audit-lite, conventional-commit-suggest, markdown-lint-basic, test-case-generate, stacktrace-parse, release-notes, changelog-entry, release-checklist - Security (7): redact-secrets, secret-scan-text, url-risk-heuristic, csp-compose, hardening-checklist-web, access-control-matrix, data-classification-heuristic - Stats (9): effect-size-suite, bootstrap-ci, permutation-test, multiple-testing-adjust, linear-regression-ols, logistic-regression, time-series-decompose-lite, anomaly-detect-mad - Ops (7): slo-draft, runbook-draft, postmortem-draft, postmortem-action-extractor, error-log-triage, coverage-tracker, monitoring-gap-analysis - Agent (15): prompt-to-workflow-skeleton, workflow-validate-io, workflow-explain, workflow-cost-estimate, tool-call-accuracy-score, eval-fixture-build, guardrail-policy-draft, workflow-auto-repair, tool-selection-plan, novelty-score-workflow, workflow-variant-generate, config-normalize, recipe-* - Utility (8): base64-encode, base64-decode, hash-text, regex-extract, template-render, date-parse, json-path-query, url-parse - HTML (3): html-sanitize, html-to-markdown, markdown-to-html All tools follow AI SDK v6 pattern with tool() and jsonSchema<T>(). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
121 lines
3.1 KiB
TypeScript
121 lines
3.1 KiB
TypeScript
/**
|
|
* Date Parse Tool for TPMJS
|
|
* Parse dates in natural language formats using chrono-node
|
|
*
|
|
* @requires Node.js 18+
|
|
*/
|
|
|
|
import { jsonSchema, tool } from 'ai';
|
|
import * as chrono from 'chrono-node';
|
|
|
|
/**
|
|
* Input interface for date parsing
|
|
*/
|
|
export interface DateParseInput {
|
|
text: string;
|
|
referenceDate?: string;
|
|
strict?: boolean;
|
|
}
|
|
|
|
/**
|
|
* Parsed date information
|
|
*/
|
|
export interface ParsedDate {
|
|
parsed: string;
|
|
original: string;
|
|
iso: string;
|
|
timestamp: number;
|
|
}
|
|
|
|
/**
|
|
* Output interface for date parsing
|
|
*/
|
|
export interface DateParseResult {
|
|
dates: ParsedDate[];
|
|
count: number;
|
|
}
|
|
|
|
/**
|
|
* Date Parse Tool
|
|
* Parses natural language date expressions from text
|
|
*/
|
|
export const dateParseTool = tool({
|
|
description:
|
|
'Parse dates from natural language text like "tomorrow at 3pm", "next Friday", "in 2 weeks", or "December 25th, 2024". Returns all found dates with their original text, ISO format, and Unix timestamps.',
|
|
inputSchema: jsonSchema<DateParseInput>({
|
|
type: 'object',
|
|
properties: {
|
|
text: {
|
|
type: 'string',
|
|
description: 'Text containing one or more date/time expressions',
|
|
},
|
|
referenceDate: {
|
|
type: 'string',
|
|
description:
|
|
'ISO 8601 date string to use as reference for relative dates (e.g., "2024-01-15T10:00:00Z"). Defaults to current date/time.',
|
|
},
|
|
strict: {
|
|
type: 'boolean',
|
|
description:
|
|
'Use strict parsing mode for more accurate results with fewer false positives (default: false)',
|
|
},
|
|
},
|
|
required: ['text'],
|
|
additionalProperties: false,
|
|
}),
|
|
async execute({ text, referenceDate, strict = false }): Promise<DateParseResult> {
|
|
// Validate input
|
|
if (typeof text !== 'string') {
|
|
throw new Error('Text must be a string');
|
|
}
|
|
|
|
if (text.trim().length === 0) {
|
|
throw new Error('Text cannot be empty');
|
|
}
|
|
|
|
// Parse reference date if provided
|
|
let refDate: Date | undefined;
|
|
if (referenceDate) {
|
|
refDate = new Date(referenceDate);
|
|
if (Number.isNaN(refDate.getTime())) {
|
|
throw new Error(
|
|
`Invalid reference date: ${referenceDate}. Must be a valid ISO 8601 date string.`
|
|
);
|
|
}
|
|
}
|
|
|
|
// Parse dates using chrono-node
|
|
let parsedResults: chrono.ParsedResult[];
|
|
try {
|
|
if (strict) {
|
|
parsedResults = chrono.strict.parse(text, refDate);
|
|
} else {
|
|
parsedResults = chrono.parse(text, refDate);
|
|
}
|
|
} catch (error) {
|
|
const message = error instanceof Error ? error.message : 'Unknown error';
|
|
throw new Error(`Failed to parse dates: ${message}`);
|
|
}
|
|
|
|
// Convert to output format
|
|
const dates: ParsedDate[] = parsedResults.map((result) => {
|
|
const dateObj = result.start.date();
|
|
return {
|
|
parsed: dateObj.toLocaleString('en-US', {
|
|
dateStyle: 'full',
|
|
timeStyle: 'long',
|
|
}),
|
|
original: result.text,
|
|
iso: dateObj.toISOString(),
|
|
timestamp: dateObj.getTime(),
|
|
};
|
|
});
|
|
|
|
return {
|
|
dates,
|
|
count: dates.length,
|
|
};
|
|
},
|
|
});
|
|
|
|
export default dateParseTool;
|