Parse English dates such as next Tuesday in a Code node or CodeAct action, with chrono-node running on the host
Scanned 9/1/2026
Install to Claude Code
npx -y skills add nodetool-ai/nodetool --skill sandbox-chrono --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Sandbox Chrono?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/nodetool-ai-sandbox-chrono)More formats (shields.io, HTML) on the badges page.
---
name: sandbox-chrono
description: Parse English dates such as next Tuesday in a Code node or CodeAct action, with chrono-node running on the host
---
# Natural-language dates in the sandbox
Specifier: `@nodetool-ai/sandbox-chrono`. Import it at the top of the body.
chrono-node does not compile into QuickJS, so this pack is a **host module**.
You pass text; you get ISO strings back.
## parseDate — first match
```js
import { parseDate } from "@nodetool-ai/sandbox-chrono";
const iso = await parseDate(inputs.text, inputs.now);
return { iso };
```
`inputs.now` is an optional reference timestamp (ISO string or epoch ms).
## parse — every match
```js
import { parse } from "@nodetool-ai/sandbox-chrono";
const hits = await parse(inputs.text, inputs.now);
return { hits };
```
Each hit is `{ text, start, end }` with ISO strings (`end` may be `null`).
## Gotchas
- **Async host calls.** Always `await`.
- **UTC.** The guest still has no time-zone database.
- **Pair with `@nodetool-ai/sandbox-dates`** to format the Date you parse.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...