with one click
shorturl
短链生成 — 创建/管理短链接、自定义ID、点击统计。触发:短链、短网址、缩短链接、生成短链
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
短链生成 — 创建/管理短链接、自定义ID、点击统计。触发:短链、短网址、缩短链接、生成短链
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
聊天室 — 创建房间、实时聊天、AI 机器人(10种预设角色+TTS语音)、图片/视频上传。触发:创建聊天室、聊天、加AI机器人、聊天室
生活记账 — 创建账本、记录收支、分类管理、统计分析、AI 语音记账。触发:记账、花了多少钱、今日开销、月度统计、添加支出、语音记账
家庭物品整理 — 物品库存管理、位置标注、到期提醒、AI 智能添加/分析、小票 OCR 识别。触发:整理物品、添加物品、库存管理、物品快过期、收纳整理
粘贴板 — 创建/查看代码片段分享,支持文件上传、分片上传、代码分析、安全扫描。触发:分享代码、粘贴代码、上传文件、分享文本、pastebin
档案照片墙 — 分类照片管理、时间线聚合、分享链接、批量下载ZIP。触发:照片墙、上传照片、相册、家庭相册
事项管理 — 创建/查看/更新/删除工作与生活任务,支持 AI 解析、会议纪要、日历下载、时间线回顾。触发:记录事情、添加任务、事项管理、会议记录、今日计划
| name | shorturl |
| description | 短链生成 — 创建/管理短链接、自定义ID、点击统计。触发:短链、短网址、缩短链接、生成短链 |
| triggers | ["短链","短网址","缩短链接","生成短链","shorturl"] |
通过 DevTools 后端 API 创建短链接。后端默认运行在 https://t.jaxiu.cn。
curl -s -X POST https://t.jaxiu.cn/api/shorturl \
-H "Content-Type: application/json" \
-d '{
"original_url": "https://example.com/very/long/url/that/needs/shortening",
"expires_in": 30,
"max_clicks": 1000
}'
# 返回: {"id":"abc12345","short_url":"https://t.jaxiu.cn/s/abc12345"}
限流: 10次/IP/小时
curl -s -X POST https://t.jaxiu.cn/api/shorturl \
-H "Content-Type: application/json" \
-d '{
"original_url": "https://example.com",
"custom_id": "my-link",
"password": "your_shorturl_password"
}'
# 返回: {"id":"my-link","short_url":"https://t.jaxiu.cn/s/my-link"}
参数说明:
original_url: 必填,原始链接expires_in: 可选,过期天数(默认30天)max_clicks: 可选,最大点击次数(默认1000)custom_id: 需要密码,自定义短链IDpassword: 配置文件中的 shorturl.passwordcurl -s https://t.jaxiu.cn/api/shorturl/list
curl -s https://t.jaxiu.cn/api/shorturl/{id}/stats
# 返回: {"id":"xxx","original_url":"...","clicks":42,...}
# 更新(需密码)
curl -s -X PUT https://t.jaxiu.cn/api/shorturl/{id} \
-H "Content-Type: application/json" \
-d '{"password":"xxx","original_url":"https://new-url.com","expires_in":60}'
# 删除(需密码)
curl -s -X DELETE "https://t.jaxiu.cn/api/shorturl/{id}?password=xxx"
浏览器访问: https://t.jaxiu.cn/s/{id} 自动 302 跳转到原始链接。
当用户说"把这个链接缩短"时,调用创建短链 API。
短链格式: https://t.jaxiu.cn/s/{id}
Base URL: https://t.jaxiu.cn