# Timestamp Echo

> Use when working with a simple skill that echoes a message with the current timestamp. Use when asked to echo or repeat a message with a timestamp, get the current time along with a message, or demonstrate basic skill functionality.

- Skill: `tomevault-io/timestamp-echo` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/timestamp-echo`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/timestamp-echo/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/timestamp-echo

---


# Timestamp Echo Skill

A minimal example skill that echoes messages with the current timestamp.

## Usage

To echo a message with a timestamp:

```bash
python3 scripts/timestamp_echo.py "Your message here"
```

## Examples

```bash
# Simple echo with timestamp
python3 scripts/timestamp_echo.py "Hello, World!"
# Output: [2024-12-23 14:30:00] Hello, World!

# Without a message (shows just timestamp)
python3 scripts/timestamp_echo.py
# Output: [2024-12-23 14:30:00]
```

## How It Works

1. The script captures the current timestamp
2. Formats the message with ISO-style timestamp prefix
3. Outputs the result to stdout

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/holsee) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

