← Back to Skills

timestamp-converter

v1.0.0 approved Utilities ⬇ 4
USK v3 ✅ Verified ⚡ Auto-Convert
⬇ Download
Install Guide↓

Unix timestamp, ISO 8601, KST 간 상호 변환. 두 날짜 차이 계산, 상대 시간 계산(3일 후, 2주 전 등) 지원. 외부 패키지 불필요.

# timestamp # datetime # timezone # kst # unix # iso8601 # date-diff

Basic Info

Owner 👤 jhkim Category Utilities Registered 2026-04-14 Last Updated 2026-04-14 Latest Version 1.0.0 Packaged At 2026-04-14 Vetting Status approved Downloads 4 Checksum (SHA256) 8f045221a762d4f6bd614b25383bf3a8abce74bc8d1d722d3db329068c5bf63f

⚡ AGENT INFO USK v3

Capabilities
timestamp_conversion datetime_calculation timezone_conversion
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=OpenClaw GET /v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=ClaudeCode GET /v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=Cursor GET /v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=GeminiCLI GET /v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=CodexCLI GET /v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=CustomAgent

Installation

Compatible Platforms OpenClaw ClaudeCode CustomAgent any Cursor GeminiCLI CodexCLI

1
Install the skill using openclaw_skill_manager.py.
python openclaw_skill_manager.py --install timestamp-converter
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install timestamp-converter --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download
2
Place it in the Claude Code commands directory.
unzip timestamp-converter.skill -d ~/.claude/commands/timestamp-converter/
3
Use it as a slash command in Claude Code.
/timestamp-converter
1
Download the Cursor-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip timestamp-converter-cursor-*.skill -d ~/.cursor/skills/timestamp-converter/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/timestamp-converter/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip timestamp-converter-geminicli-*.skill -d ~/.gemini/skills/timestamp-converter/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/timestamp-converter/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip timestamp-converter-codexcli-*.skill -d ~/.codex/skills/timestamp-converter/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/timestamp-converter/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/download
2
Place it in your agent platform's skills directory.
cp timestamp-converter.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/9a056f02-8e2a-42c8-a1a1-9c4d36f26b51/install-guide?platform=CustomAgent

Requirements

Security Vetting Report

Vetting Result APPROVED

✅ No security risks found.

AI Review Stage

Reviewer gemini Risk Level 🟢 Low Review Summary 날짜/시간 변환 및 계산 스킬로, 선언된 권한을 준수하며 악의적인 동작이 없습니다.
Reasoning

제공된 스킬 메타데이터와 코드 파일(main.py)을 분석한 결과, 다음과 같은 판단을 내렸습니다. 1. **선언된 permissions과 실제 코드 일치 여부:** * 메타데이터에서 `network: false`, `filesystem: false`, `subprocess: false`로 선언되어 있습니다. * 코드(`main.py`)는 `sys`, `json`, `re`, `time`, `datetime` 등 Python 표준 라이브러리만을 사용하고 있으며, 네트워크 통신, 파일 시스템 접근, 외부 프로세스 실행과 관련된 모듈(예: `socket`, `urllib`, `requests`, `os`, `subprocess`)을 전혀 임포트하거나 사용하지 않습니다. 이는 선언된 권한과 코드가 완벽하게 일치함을 의미합니다. 2. **악의적 목적의 코드 여부:** * 코드 내용 전반을 검토했을 때, 날짜/시간 변환 및 계산이라는 스킬의 목적에 충실하며, 데이터 탈취, 시스템 파괴, 난독화 등 악의적인 목적으로 의심될 만한 코드는 발견되지 않았습니다. 3. **선언되지 않은 외부 통신 여부:** * 코드에서 외부 통신을 시도하는 어떠한 흔적도 발견되지 않았습니다. `permissions.network`가 `false`로 명시되어 있으며, 실제 코드도 이를 준수합니다. 4. **사용자 데이터 무단 수집/전송 여부:** * 스킬은 `stdin_stdout` 패턴으로 동작하며, 입력된 데이터를 처리하여 결과를 `stdout`으로 반환하는 구조입니다. 사용자 데이터를 무단으로 수집하거나 외부로 전송하는 기능은 없습니다. 5. **코드 품질 및 목적 일치 여부:** * 코드는 명확하고 가독성이 높으며, 스킬의 설명(`Unix timestamp, ISO 8601, KST 간 상호 변환. 두 날짜 차이 계산, 상대 시간 계산 지원.`)과 일치하는 기능을 구현하고 있습니다. * `requirements.packages`가 비어있어 외부 패키지 의존성이 없음을 선언했는데, 실제 코드도 표준 라이브러리만 사용하여 이를 준수합니다. * 정적 분석 결과 또한 'approved'로, 레드 플래그나 난독화 경고가 없음을 확인했습니다. 결론적으로, 이 스킬은 선언된 보안 정책을 잘 준수하고 있으며, 악의적인 요소 없이 안전하게 동작할 것으로 판단됩니다.

Version History

Version USK v3 Vetting Status Packaged At Downloads Changelog
v1.0.0 approved 2026-04-14 ⬇ 4 초기 릴리스

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review