TopRank Skills

Home / Claw Skills / Git / GitHub / timeless
Official OpenClaw rules 36%

timeless

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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 timeless 技能。 若已安装,则直接安装 timeless 技能。

Overview

Skill Key
eilonmore/timeless
Author
eilonmore
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/eilonmore/timeless
Latest Commit SHA
e4a1b09fabfc6a026b0246e3ee3b3fe038c09d5e

Extracted Content

SKILL.md excerpt

# Timeless

> **Source**: [github.com/supertools/timeless-skills](https://github.com/supertools/timeless-skills)

Interact with [Timeless](https://timeless.day) 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](https://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:
```bash
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`.

| Parameter | Type | Description |
|-----------|------|-------------|
| `include` | string | **Required.** `owned` or `shared` |
| `search` | string | Search by title or attendees |
| `start_date` | string | From date (YYYY-MM-DD) |
| `end_date` | string | To date (YYYY-MM-DD) |
| `status` | string | `COMPLETED`, `SCHEDULED`, `PROCESSING`, `FAILED` |
| `page` | integer | Page number (default: 1) |
| `per_page` | integer | Results per page (default: 20) |

```bash
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 }] }...

Related Claw Skills