Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

timelesstimeless 文档

Agent Skill

timeless 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,935

周安装

635

GitHub Stars

公开资料未说明

下载量

5,232
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:timeless(timeless 文档)
来源仓库:https://github.com/eilonmore/timeless
安装命令:
openclaw skills install timeless
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install timeless

简介

管理 Timeless 会议记录与 AI 文档,支持播客与 YouTube 转录。

  • 适用于知识沉淀与团队协作,自动提取关键信息与行动项。
  • 输入媒体链接或会议 ID,系统生成结构化笔记与摘要。
  • 涉及第三方平台数据时,需确认授权范围与隐私政策合规。
  • 适合远程团队或学习小组,提升信息检索与复用效率。timeless 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
timeless
description
Query and manage Timeless meetings, rooms, transcripts, and AI documents. Capture podcast episodes and YouTube videos into Timeless for transcription. Use when the user asks about their meetings, wants to search meetings, read transcripts, get summaries, list rooms, create rooms, add/remove conversations from rooms, resolve Timeless share links, upload recordings, chat with Timeless AI about meeting content, or capture podcasts/YouTube videos.
version
1.0.0
metadata
openclaw
requires
env
bins
anyBins
primaryEnv
TIMELESS_ACCESS_TOKEN
emoji
\⏰
homepage
https://github.com/supertools/timeless-skills

Timeless

Source: github.com/supertools/timeless-skills

Interact with Timeless meeting data: search meetings, read transcripts, get AI summaries, browse rooms, upload recordings, chat with the AI agent, and capture podcasts/YouTube videos for transcription.

API Reference

For full endpoint documentation with response schemas, status enums, and detailed examples, read api-reference.md (in this skill folder).

Prerequisites

  • TIMELESS_ACCESS_TOKEN env var (get token at my.timeless.day/api-token)
  • yt-dlp for YouTube downloads (install via package manager: apt install yt-dlp, brew install yt-dlp, or pip install yt-dlp. Alternatively set YTDLP_PATH to point to an existing binary.)

Set up in OpenClaw:

openclaw config patch env.vars.TIMELESS_ACCESS_TOKEN=<your_token>

Base URL

https://my.timeless.day

Authentication Header

All requests:

Authorization: Token $TIMELESS_ACCESS_TOKEN

Operations

1. List Meetings

GET /api/v1/spaces/meeting/

Required parameter: include must be owned or shared.

ParameterTypeDescription
includestringRequired. owned or shared
searchstringSearch by title or attendees
start_datestringFrom date (YYYY-MM-DD)
end_datestringTo date (YYYY-MM-DD)
statusstringCOMPLETED, SCHEDULED, PROCESSING, FAILED
pageintegerPage number (default: 1)
per_pageintegerResults per page (default: 20)
curl -s "https://my.timeless.day/api/v1/spaces/meeting/?include=owned&status=COMPLETED&per_page=50" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN"

Response: { count, next, previous, results: [{ uuid, title, start_ts, end_ts, status, primary_conversation_uuid, host_user, conversation_source, created_at }] }

Key fields:

  • uuid = space UUID (for Get Space)
  • primary_conversation_uuid = conversation UUID (for Get Transcript)
To get ALL meetings, make two calls: include=owned and include=shared, then merge.

2. List Rooms

GET /api/v1/spaces/room/

Same query parameters as List Meetings (except rooms don't have start_ts, end_ts, or status).

curl -s "https://my.timeless.day/api/v1/spaces/room/?include=owned" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN"

Response: { count, next, previous, results: [{ uuid, title, host_user, created_at }] }


3. Get Space (Meeting or Room Details)

Spaces have three access levels. Try in order until one succeeds:

3a. Private Space (your own)

curl -s "https://my.timeless.day/api/v1/spaces/{uuid}/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN"

3b. Workspace Space (shared within team)

host_uuid is required for shared spaces. Get it from the host_user.uuid field in the List Meetings or List Rooms response.
curl -s "https://my.timeless.day/api/v1/spaces/{uuid}/workspace/?host_uuid={hostUuid}" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN"

3c. Public Space (publicly shared)

curl -s "https://my.timeless.day/api/v1/spaces/public/{uuid}/{hostUuid}/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN"

Response includes:

  • conversations[]: Recordings in this space (each has uuid, name, start_ts, end_ts, status, language)
  • artifacts[]: AI-generated documents. Check type field (e.g., "summary"). Content is in content.body (HTML).
  • contacts[]: Each has nested conversations[]
  • organizations[]: Each has nested conversations[]
  • threads[]: AI chat threads. Use threads[0].uuid to chat with the agent.

Collecting all conversations in a room: Deduplicate conversation UUIDs from conversations[] + contacts[].conversations[] + organizations[].conversations[].


4. Get Transcript

curl -s "https://my.timeless.day/api/v1/conversation/{conversation_uuid}/transcript/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN"

Response:

{
  "items": [
    { "text": "...", "start_time": 0.5, "end_time": 3.2, "speaker_id": "speaker_0" }
  ],
  "speakers": [
    { "id": "speaker_0", "name": "Alice Johnson" }
  ],
  "language": "he"
}

How to get conversation_uuid:

  • From List Meetings: primary_conversation_uuid field
  • From Get Space: conversations[].uuid

Format as readable text by mapping speaker_id to speaker names:

[00:00:00] Alice Johnson: ...
[00:00:03] Bob Smith: ...

5. Get Recording URL

curl -s "https://my.timeless.day/api/v1/conversation/{conversation_uuid}/recording/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN"

Response: { "media_url": "https://storage.googleapis.com/...signed..." }

The URL is time-limited. Fetch it fresh when needed.

6. Upload a Recording

Three-step flow:

# Step 1: Get presigned URL
curl -X POST "https://my.timeless.day/api/v1/conversation/storage/presigned-url/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"file_name": "recording.mp3", "file_type": "audio/mpeg"}'

# Step 2: Upload file to the presigned URL
curl -X PUT "PRESIGNED_URL" \
  -H "Content-Type: audio/mpeg" \
  --upload-file recording.mp3

# Step 3: Trigger processing
curl -X POST "https://my.timeless.day/api/v1/conversation/process/media/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"language": "he", "filename": "Recording Title"}'

Response (step 3): { "event_uuid": "...", "space_uuid": "..." }

Poll GET /api/v1/spaces/{space_uuid}/ until is_processing is false.

Or use the helper script: bash scripts/upload.sh FILE_PATH LANGUAGE [TITLE]

Supported formats: mp3, wav, m4a, mp4, webm, ogg


7. Resolve a Timeless Share URL

URLs like https://my.timeless.day/m/ENCODED_ID contain two Base64-encoded short IDs (22 chars each).

Decoding (shell):

ENCODED="the_part_after_/m/"
DECODED=$(echo "$ENCODED" | base64 -d)
SPACE_ID=$(echo "$DECODED" | cut -c1-22)
HOST_ID=$(echo "$DECODED" | cut -c23-44)

Decoding (Python):

import base64

def decode_timeless_url(url):
    encoded = url.rstrip('/').split('/m/')[-1]
    combined = base64.b64decode(encoded).decode()
    return combined[:22], combined[22:]  # (space_id, host_id)

After decoding, fetch with Get Space (try private -> workspace -> public).


8. Chat with Timeless AI

Ask questions about a meeting or room.

Step 1: Send Message

curl -X POST "https://my.timeless.day/api/v1/agent/space/chat/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "space_uuid": "SPACE_UUID",
    "thread_uuid": "THREAD_UUID",
    "message": {
      "role": "user",
      "parts": [{"type": "text", "text": "What were the action items?"}],
      "date": "'$(date -u +%Y-%m-%dT%H:%M:%S.000Z)'",
      "metadata": {"timestamp": "'$(date -u +%Y-%m-%dT%H:%M:%S.000Z)'", "mentions": []},
      "id": "'$(cat /proc/sys/kernel/random/uuid 2>/dev/null || uuidgen)'"
    }
  }'

Get thread_uuid from the space's threads[0].uuid (via Get Space).

Step 2: Poll for Response

curl -s "https://my.timeless.day/api/v1/agent/threads/{thread_uuid}/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN"

Poll every 2-3 seconds until is_running is false. The AI response is the last message with role: "assistant" in the messages array.


9. Create a Room

curl -X POST "https://my.timeless.day/api/v1/spaces/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"has_onboarded": true, "space_type": "ROOM", "title": "My Room"}'

Response: Full space object. Extract uuid for adding resources.


10. Add/Remove Conversations from a Room

# Add a conversation
curl -X POST "https://my.timeless.day/api/v1/spaces/{room_uuid}/resources/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"resource_type": "CONVERSATION", "resource_uuid": "CONVERSATION_UUID"}'

# Remove a conversation
curl -X DELETE "https://my.timeless.day/api/v1/spaces/{room_uuid}/resources/" \
  -H "Authorization: Token $TIMELESS_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"resource_type": "CONVERSATION", "resource_uuid": "CONVERSATION_UUID"}'

Call Add once per conversation you want to attach. Get conversation UUIDs from List Meetings (primary_conversation_uuid) or Get Space (conversations[].uuid).


Common Workflows

Export All Transcripts

  1. List all meetings with include=owned&status=COMPLETED&per_page=100
  2. Paginate through all pages
  3. For each meeting, fetch transcript using primary_conversation_uuid

Get Everything from a Room

  1. Get Space for the room UUID
  2. Collect all conversation UUIDs from conversations[], contacts[].conversations[], organizations[].conversations[] (deduplicate)
  3. Fetch transcript for each conversation UUID

Search and Read

  1. List meetings with search=your+query
  2. Pick the meeting, get its primary_conversation_uuid
  3. Fetch transcript
  4. Optionally, Get Space for AI summaries in artifacts[]

Automation Patterns

Timeless does not have webhooks yet. To build automations that react to new meetings, use cron polling with a state file.

The Pattern: Poll, Deduplicate, Act

A cron job runs every 5-10 minutes. Each run:

  1. Read a state file (timeless-processed.json). Create it with an empty processed array if missing.
  2. Poll for completed meetings: GET /api/v1/spaces/meeting/?include=owned&status=COMPLETED&start_date=YYYY-MM-DD
  3. For each meeting: if its uuid is already in processed, skip it.
  4. For new meetings: fetch whatever data you need (transcript, space details, artifacts), then run your automation logic.
  5. Append processed UUIDs to the state file.
  6. If nothing is new, exit silently. Do not message the user.

State file format:

{
  "processed": ["uuid-1", "uuid-2", "uuid-3"],
  "last_check": "2026-03-05T12:00:00Z"
}

Key rules:

  • A UUID in processed is never processed again. This prevents duplicate work.
  • Periodically prune old UUIDs (e.g., older than 30 days) to keep the file small.
  • Also fetch include=shared if the automation should cover meetings shared with you.

Cron setup (OpenClaw):

openclaw cron add "timeless-poll" --schedule "*/5 * * * *" --task "Check for new completed Timeless meetings. Read timeless-processed.json for state. Poll the API. For new meetings: [your automation here]. If nothing new, reply HEARTBEAT_OK."

What You Can Do With a New Meeting

Once the polling pattern detects a new completed meeting, you have access to:

  • Transcript (full speaker-attributed text via Get Transcript)
  • AI summary and action items (via Get Space artifacts[])
  • Participants and metadata (via Get Space conversations[].event.attendees)
  • Recording URL (via Get Recording)
  • AI chat (ask follow-up questions via Chat with Timeless AI)

Combine these with any external tool or API. Some examples of what people build:

  • Auto-generate a recap presentation or document after every meeting
  • Feed meeting data into a dashboard that tracks topics, action items, or meeting load over time
  • Auto-curate Timeless rooms by adding conversations that match rules (participant, title, topic)
  • Push summaries or action items to Slack, email, Notion, or a CRM
  • Run sentiment analysis or extract custom fields from transcripts
  • Build a searchable meeting knowledge base

The pattern is always the same: poll for new meetings, pull the data, do your thing.


Capture: Podcasts

Scripts in scripts/ folder.

  1. Search: bash scripts/podcast.sh search "podcast name"
  2. List episodes: bash scripts/podcast.sh episodes FEED_URL [limit]
  3. Download: bash scripts/podcast.sh download MP3_URL /tmp/episode.mp3
  4. Upload to Timeless: bash scripts/upload.sh /tmp/episode.mp3 en "Episode Title"
  5. Clean up the file from /tmp

Spotify links

Extract the episode title via oEmbed, then search by name:

curl -s "https://open.spotify.com/oembed?url=SPOTIFY_URL"

Capture: YouTube

  1. Get info: bash scripts/youtube.sh info "YOUTUBE_URL"
  2. Download video: bash scripts/youtube.sh download "YOUTUBE_URL" /tmp/video.mp4
  3. Upload to Timeless: bash scripts/upload.sh /tmp/video.mp4 en "Video Title"
  4. Clean up the file from /tmp

Downloads as mp4 (video+audio). No ffmpeg needed. Uses the best pre-muxed format (typically 720p), which is fine for Timeless.


Capture: Adding to a Room

After uploading, attach the content to a Timeless room for organized collections.

  1. Upload returns a space_uuid. Poll GET /api/v1/spaces/{space_uuid}/ until is_processing=false.
  2. From the space response, get the conversation.uuid.
  3. Add to room: POST /api/v1/spaces/{room_uuid}/resources/ with {"resource_type": "CONVERSATION", "resource_uuid": "CONV_UUID"}

To create a new room first: POST /api/v1/spaces/ with {"has_onboarded": true, "space_type": "ROOM", "title": "My Collection"}


Notes

  • Podcast MP3s can be large (100-300MB for long episodes). Downloads may take a minute.
  • YouTube downloads require yt-dlp. If not installed, the script will fail with a clear error.
  • Always clean up downloaded files from /tmp after uploading.
  • Set YTDLP_PATH env var if yt-dlp is not on PATH.

Error Handling

CodeAction
401Token expired. Re-authenticate at my.timeless.day/api-token
403No access. Try workspace or public endpoint.
404Not found. Check UUID.
429Rate limited. Wait and retry.

Rate Limiting

No official limits, but be respectful:

  • 0.5s delay between sequential requests
  • Max ~60 requests per minute
  • Use pagination, don't fetch everything at once

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.69%
按下载量换算5,163

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install timeless 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills