with one click
photowall
档案照片墙 — 分类照片管理、时间线聚合、分享链接、批量下载ZIP。触发:照片墙、上传照片、相册、家庭相册
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
档案照片墙 — 分类照片管理、时间线聚合、分享链接、批量下载ZIP。触发:照片墙、上传照片、相册、家庭相册
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
事项管理 — 创建/查看/更新/删除工作与生活任务,支持 AI 解析、会议纪要、日历下载、时间线回顾。触发:记录事情、添加任务、事项管理、会议记录、今日计划
科学上网线路管理 — 查看节点、切换线路、测速。当用户请求切换代理线路、查看代理状态、管理科学上网节点时使用此技能。
| name | photowall |
| description | 档案照片墙 — 分类照片管理、时间线聚合、分享链接、批量下载ZIP。触发:照片墙、上传照片、相册、家庭相册 |
| triggers | ["照片墙","相册","上传照片","家庭相册","photowall"] |
通过 DevTools 后端 API 管理分类照片档案,支持时间线、分享和打包下载。后端默认运行在 https://t.jaxiu.cn。
creator_key 和 access_keycreator_key 用于管理(创建者)access_key 用于分享给他人查看password 创建,通过密码登录curl -s -X POST https://t.jaxiu.cn/api/photowall/profile \
-H "Content-Type: application/json" \
-d '{
"title": "宝宝成长记录",
"password": "your_password",
"expires_in": 180
}'
# 返回: {"id":"xxx","creator_key":"xxx","access_key":"xxx","short_code":"xxx","share_url":"/wall/xxx?key=xxx"}
expires_in 可选,默认90天,最大180天(普通用户),admin 可设永久。
curl -s -X POST https://t.jaxiu.cn/api/photowall/profile/login \
-H "Content-Type: application/json" \
-d '{"id":"xxx","password":"your_password"}'
curl -s "https://t.jaxiu.cn/api/photowall/profile/{id}?creator_key=xxx"
curl -s -X PUT https://t.jaxiu.cn/api/photowall/profile/{id} \
-H "Content-Type: application/json" \
-d '{
"creator_key": "xxx",
"action": "rename",
"title": "新标题"
}'
action 可选: rename、extend(延长过期)、reshare(生成新 access_key)
curl -X POST https://t.jaxiu.cn/api/photowall/profile/{id}/items \
-F "file=@baby_photo.jpg" \
-F "creator_key=xxx" \
-F "category=成长记录" \
-F "description=宝宝第一次走路" \
-F "taken_at=2026-04-30T10:00:00+08:00"
curl -s -X PUT https://t.jaxiu.cn/api/photowall/profile/{id}/items/{itemId} \
-H "Content-Type: application/json" \
-d '{"creator_key":"xxx","category":"新分类","description":"新描述"}'
curl -s -X DELETE "https://t.jaxiu.cn/api/photowall/profile/{id}/items/{itemId}?creator_key=xxx"
# 通过 access_key 查看(无需认证)
curl -s "https://t.jaxiu.cn/api/photowall/share/{id}?key={access_key}"
# 单张下载
curl -o photo.jpg "https://t.jaxiu.cn/api/photowall/profile/{id}/download?creator_key=xxx&item_ids=item1"
# 多选打包下载 (ZIP)
curl -o album.zip "https://t.jaxiu.cn/api/photowall/profile/{id}/download?creator_key=xxx&item_ids=item1,item2,item3"
curl -o photo.jpg https://t.jaxiu.cn/api/photowall/files/{filename}
当用户说"上传这张照片到相册"或"分享照片"时,使用上传 API。
当用户说"下载相册"时,使用下载 API。
分享链接格式: https://t.jaxiu.cn/wall/{id}?key={access_key}
Base URL: https://t.jaxiu.cn