Back to Registry
View Author Profile
Official Verified
time
LLM temporal reasoning scaffold for the temporal CLI.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/ikana/timeOr
time
Use temporal to anchor work at NOW and place events as spatial distances (ahead/behind) for reliable temporal reasoning.
Ego-Moving Metaphor (Required)
Use one frame only: you move forward through time.
- Future is ahead of you.
- Past is behind you.
- Correct: "We are approaching the deadline."
- Incorrect: "The deadline is approaching."
Prerequisites
temporalmust be on your$PATH.- If
temporalis not on$PATH, runscripts/install.shfrom the skill directory. scripts/install.shauto-detects OS/arch, verifies SHA-256 checksums from values bundled in the installer (not from the release checksums file), and installs to/usr/local/bin/temporalwhen writable or~/.local/bin/temporalotherwise.- Installer defaults to
v0.1.0. You can override version/install dir withTEMPORAL_VERSIONandTEMPORAL_INSTALL_DIR. - For versions without a bundled checksum, set
TEMPORAL_SHA256to an independently obtained digest. - Ensure
~/.local/binis on your$PATH(for example,export PATH="$HOME/.local/bin:$PATH"in your shell profile). - Note: The OS-specific
curlexamples below install binaries without checksum verification; preferscripts/install.shwhen possible. - Install (macOS Apple Silicon):
mkdir -p ~/.local/bin && curl -L https://github.com/Ikana/temporal/releases/latest/download/temporal-darwin-arm64 -o ~/.local/bin/temporal && chmod +x ~/.local/bin/temporal - Install (macOS Intel):
mkdir -p ~/.local/bin && curl -L https://github.com/Ikana/temporal/releases/latest/download/temporal-darwin-x64 -o ~/.local/bin/temporal && chmod +x ~/.local/bin/temporal - Install (Linux x64):
mkdir -p ~/.local/bin && curl -L https://github.com/Ikana/temporal/releases/latest/download/temporal-linux-x64 -o ~/.local/bin/temporal && chmod +x ~/.local/bin/temporal - Install (Linux ARM64):
mkdir -p ~/.local/bin && curl -L https://github.com/Ikana/temporal/releases/latest/download/temporal-linux-arm64 -o ~/.local/bin/temporal && chmod +x ~/.local/bin/temporal - Install a custom version with explicit checksum:
TEMPORAL_VERSION=v0.1.1 TEMPORAL_SHA256=<sha256> ./scripts/install.sh - Install/build instructions: github.com/Ikana/temporal
Quick Start
temporal init
temporal add "Sprint review" --on "2026-02-21" --type ceremony
temporal add "v0.3.0 deadline" --in "13 days" --type milestone --notes "new auth flow"
temporal show
Commands
init [--timezone <iana_tz>] [--force]
Create time.md with NOW as the anchor. Use --force to overwrite an existing file.
now [--timezone <iana_tz>]
Update only the NOW section timestamp metadata. Does not recalculate event distances.
add <event> (--in <duration> | --on <date> | --at <datetime>) [--type <type>] [--notes <text>]
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-ikana-time": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.