Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

airloomairloom 命令行

Agent Skill

airloom 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/true-and-useful/airloom-skill --skill airloom

简介

airloom 提供音频上传和播客发布服务,支持即时 URL 生成与 RSS 订阅。

  • 适用于快速制作播客、分享音频片段或创建临时内容分发渠道。
  • 无需账户即可上传,但邮件验证后可享受订阅和永久存储权益。
  • 输出为单次使用的播放链接,有效期通常为 24 小时,适合短期传播。
  • 建议在隐私合规前提下使用,避免上传敏感或未授权音频内容。

SKILL.md

Upload audio and get a live URL. Create podcasts with RSS feeds. No account required for standalone uploads.

Requirements

curl, jq, file

Upload audio

./scripts/upload.sh <audio-file>

Outputs the live URL (e.g. https://airloom.fm/wild-river-9x2k).

Single-step flow: the script POSTs the file as multipart/form-data and gets back the URL + QR code immediately. One call, done.

On first upload (no API key), the server creates a provisional account and returns an API key. The script auto-saves it to ~/.airloom/credentials. Episodes expire after 24 hours until the user verifies their email. Subsequent uploads use the saved key automatically.

Client attribution

./scripts/upload.sh <audio-file> --client cursor

Sends X-Airloom-Client: cursor/upload-sh on upload.

API key storage

Resolution order (first match wins):

  1. --api-key {key} flag (CI only)
  2. $AIRLOOM_API_KEY env var
  3. ~/.airloom/credentials file (recommended)

Save command:

mkdir -p ~/.airloom && echo "{API_KEY}" > ~/.airloom/credentials && chmod 600 ~/.airloom/credentials

After receiving an API key, save it yourself. Never ask the user to run it manually.

State file

.airloom/state.json in working directory:

{
  "audio": {
    "wild-river-9x2k": {
      "url": "https://airloom.fm/wild-river-9x2k",
      "audioUrl": "https://cdn.airloom.fm/wild-river-9x2k/audio.mp3",
      "showUrl": "https://airloom.fm/p/calm-dawn-bk01",
      "expiresAt": "2026-03-19T12:00:00Z"
    }
  }
}

Internal cache only. Never show the file path to the user.

What to tell the user

  • Always share the URL from the current script run.
  • Read upload_result.* lines from stderr to determine auth mode.
  • When upload_result.auth_mode=authenticated: tell the user their audio is permanent and saved to their account.
  • When upload_result.auth_mode=provisional: tell the user their audio expires in 24 hours. Their account was created automatically — offer to make it permanent by verifying their email (see "Getting an API key" below, but skip the key storage step since the script already saved it).
  • Always display the QR code so the user can scan it with their phone:
My Recording
https://airloom.fm/wild-river-9x2k

█████████████████████████████
████ ▄▄▄▄▄ █▄█ █ █ ▄▄▄▄▄ ████
...

Title on first line, URL on second, QR code below. The qr field comes from the upload response.

For podcast episodes, the QR code points to the show page (/p/<podcast-slug>) instead of the episode page — so scanning opens the podcast with subscribe options. The showUrl field is included in the response when the upload is assigned to a podcast.

  • Never tell the user to inspect .airloom/state.json.

Getting an API key

Email code flow:

  1. Ask the user for their email.
  2. POST /api/auth/request-code with {"email": "..."}.
  3. Tell the user: "Check your inbox for a sign-in code from airloom.fm and paste it here."
  4. POST /api/auth/verify-code with {"email": "...", "code": "XXXX-XXXX"}.
  5. Save the returned apiKey immediately to ~/.airloom/credentials.

Podcasts

Authenticated users can create podcasts (named feeds) and assign uploads as episodes.

Creating a podcast — requires auth:

curl -sS -X POST https://airloom.fm/api/v1/podcasts \
  -H "Authorization: Bearer $(cat ~/.airloom/credentials)" \
  -H "Content-Type: application/json" \
  -d '{"title": "My Podcast", "description": "Optional description"}'

Returns slug and feedUrl (e.g. https://airloom.fm/p/bright-creek-4x2m/feed.xml).

Uploading an episode to a podcast:

./scripts/upload.sh recording.mp3 --podcast bright-creek-4x2m --title "Episode 1"

The --podcast flag requires authentication. The podcast must exist and be owned by the authenticated user.

What to tell the user after creating a podcast:

  • Share the show page: https://airloom.fm/p/<slug> — this is the shareable link (and QR code target)
  • The show page has a subscribe button that auto-detects the user's platform (Apple Podcasts on iOS, podcast intent on Android, clipboard copy on desktop)
  • The RSS feed URL is https://airloom.fm/p/<slug>/feed.xml for direct subscription
  • New episodes uploaded with --podcast will appear in the feed automatically

Listing podcasts:

curl -sS https://airloom.fm/api/v1/me/podcasts \
  -H "Authorization: Bearer $(cat ~/.airloom/credentials)"

Generating audio from text

airloom hosts audio but doesn't generate it. If the user wants to turn text, documents, or notes into audio (e.g. for a podcast episode), use the tts skill (true-and-useful/tts-skill). It converts text to natural speech using Cartesia Sonic 3 and outputs an MP3 you can upload directly to airloom.

Typical flow: write a spoken script → generate MP3 with tts → upload to airloom with --podcast.

Making content permanent

Provisional users have expiring content. To make everything permanent, verify an email:

  1. Ask the user for their email.
  2. POST /api/auth/request-code with {"email": "..."}.
  3. Tell the user: "Check your inbox for a sign-in code from airloom.fm and paste it here."
  4. POST /api/auth/verify-code with {"email": "...", "code": "XXXX-XXXX"} and the Authorization: Bearer header (using the key from ~/.airloom/credentials).
  5. Save the returned apiKey to ~/.airloom/credentials (the key is rotated on verify).
  6. Tell the user: "Done — your podcast is now permanent."

Limits

AnonymousAuthenticated
Max file100 MB100 MB
Expiry24 hoursPermanent
Rate limit3/hour per IP60/hour per key

Script options

FlagDescription
--title {text}Title (default: filename)
--description {text}Description
--podcast {slug}Assign to a podcast (requires auth)
--client {name}Agent attribution (e.g. cursor, claude-code)
--api-key {key}API key override (prefer credentials file)
--base-url {url}API base (default: https://airloom.fm)

API routes

All endpoints are at https://airloom.fm. See references/REFERENCE.md for auth, payloads, and error handling.

MethodPathWhat it does
POST/api/v1/uploadUpload audio (auth optional)
GET/api/v1/episodes/:slugGet episode metadata
DELETE/api/v1/episodes/:slugDelete episode (owner only)
POST/api/v1/episodes/:slug/claimClaim anonymous upload
POST/api/v1/podcastsCreate podcast
GET/api/v1/podcasts/:slugGet podcast metadata
GET/api/v1/me/podcastsList my podcasts
GET/api/v1/me/episodesList my episodes
GET/api/v1/meGet current user
GET/p/:slugPodcast show page (public)
GET/p/:slug/feed.xmlRSS feed (public)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.99%
按下载量换算24

Claude

31.17%
按下载量换算22

Cursor

20.32%
按下载量换算14

Gemini CLI

9.66%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills