← 返回
内容创作

Little Steve Content Inbox

Archive, browse, and manage chat content including links, notes, and images with read/star status and pagination in an IM-native inbox.
在原生即时通讯收件箱中归档、浏览和管理聊天内容(含链接、笔记和图片),支持已读/标星状态及分页功能。
echoofzion
内容创作 clawhub v0.1.5 1 版本 100000 Key: 无需
★ 0
Stars
📥 552
下载
💾 19
安装
1
版本
#latest

概述

Little Steve Content Inbox

A lightweight content archiving and review tool for IM workflows. Archive links, notes, and images sent in chat, manage their read status, and browse with pagination.

Data Files

  • skills/little-steve-content-inbox/data/items.json
  • skills/little-steve-content-inbox/data/view-state.json

Agent Command Conventions

  1. Add link
  2. bash {baseDir}/scripts/inbox.sh add --type link --title "Article title" --url "https://example.com/article" --tags "tech,ai"
    
  1. Add note
  2. bash {baseDir}/scripts/inbox.sh add --type note --title "Quick thought" --content "Some text content to save"
    
  1. Add image
  2. bash {baseDir}/scripts/inbox.sh add --type image --title "Screenshot" --media-path "/path/to/image.png"
    
  1. List items (default: all, 10 per page)
  2. bash {baseDir}/scripts/inbox.sh list --status all
    bash {baseDir}/scripts/inbox.sh list --status unread
    bash {baseDir}/scripts/inbox.sh list --status read
    bash {baseDir}/scripts/inbox.sh list --status starred
    
  1. Next page
  2. bash {baseDir}/scripts/inbox.sh more
    
  1. View item detail
  2. bash {baseDir}/scripts/inbox.sh view --id <id>
    
  1. Update status
  2. bash {baseDir}/scripts/inbox.sh status --id <id> --status read
    bash {baseDir}/scripts/inbox.sh status --id <id> --status starred
    bash {baseDir}/scripts/inbox.sh status --id <id> --status unread
    
  1. Delete item
  2. bash {baseDir}/scripts/inbox.sh delete --id <id>
    

Content Types

  • link — web URL (article, tweet, page)
  • note — plain text
  • image — local image file
  • video — (reserved for future use)

Status Enum

  • unread — new, not yet reviewed
  • read — reviewed
  • starred — bookmarked / favorited

IM Output Format

  • List: newest first, 10 items per page
  • Per item: [status][type] #ID title (compact, no URL/path in list)
  • Footer: -- more: N total, showing X-Y -- or -- end: N total --
  • Full URL/path only shown in detail view (view --id)

Important: Explicit Intent Only

Do NOT auto-archive. Only run add when the user explicitly asks to save/archive content using keywords such as: 收录, 归档, 保存, 记录, archive, save, bookmark. If the user simply shares a URL, text, or image in conversation without these keywords, treat it as normal chat — do not archive it.

IM Natural Language Mapping

User saysCommand
------
收录/Archive/Save add --type link --url --title
记录/Save/Note add --type note --title --content
归档图片 / Archive imageadd --type image --title --media-path
Inbox / Content listlist --status all
Unread listlist --status unread
Read listlist --status read
Starred / Favoriteslist --status starred
Moremore
View #IDview --id
Mark read #IDstatus --id --status read
Mark unread #IDstatus --id --status unread
Star #IDstatus --id --status starred
Unstar #IDstatus --id --status unread
Delete #IDdelete --id

小史内容收件箱

面向聊天工作流的轻量内容归档与回看工具。将聊天中发送的链接、文字、图片统一归档,按状态管理,分页浏览,随时可查。

数据文件

  • skills/little-steve-content-inbox/data/items.json
  • skills/little-steve-content-inbox/data/view-state.json

Agent 执行约定

  1. 收录链接
  2. bash {baseDir}/scripts/inbox.sh add --type link --title "文章标题" --url "https://example.com/article" --tags "tech,ai"
    
  1. 记录文字
  2. bash {baseDir}/scripts/inbox.sh add --type note --title "随手记" --content "要保存的文字内容"
    
  1. 归档图片
  2. bash {baseDir}/scripts/inbox.sh add --type image --title "截图" --media-path "/path/to/image.png"
    
  1. 查看列表(默认全部,每页10条)
  2. bash {baseDir}/scripts/inbox.sh list --status all
    bash {baseDir}/scripts/inbox.sh list --status unread
    bash {baseDir}/scripts/inbox.sh list --status read
    bash {baseDir}/scripts/inbox.sh list --status starred
    
  1. 下一页
  2. bash {baseDir}/scripts/inbox.sh more
    
  1. 查看详情
  2. bash {baseDir}/scripts/inbox.sh view --id <id>
    
  1. 更新状态
  2. bash {baseDir}/scripts/inbox.sh status --id <id> --status read
    bash {baseDir}/scripts/inbox.sh status --id <id> --status starred
    bash {baseDir}/scripts/inbox.sh status --id <id> --status unread
    
  1. 删除
  2. bash {baseDir}/scripts/inbox.sh delete --id <id>
    

内容类型

  • link — 网页链接(文章、推文、页面)
  • note — 纯文字
  • image — 本地图片文件
  • video — (预留)

状态枚举

  • unread — 未读
  • read — 已读
  • starred — 收藏

IM 输出规范

  • 列表:最新优先,每页10条
  • 每条显示:[状态][类型] #ID 标题(精简,列表不显示 URL/路径)
  • 页脚:-- more: 共N条, 显示X-Y ---- end: 共N条 --
  • 完整 URL/路径仅在详情视图中显示(view --id

重要:仅在明确指令时收录

不要自动收录。 只有当用户明确使用"收录、归档、保存、记录、archive、save、bookmark"等关键词时才执行 add。如果用户只是在聊天中分享链接、文字或图片,但没有使用这些关键词,按正常对话处理,不要归档。

IM 自然语言映射

用户说对应命令
------
收录 / 归档 add --type link --url --title <提取>
记录 / 保存 <文字>add --type note --title <摘要> --content <文字>
归档图片add --type image --title <描述> --media-path <路径>
内容列表 / 收件箱list --status all
未读列表list --status unread
已读列表list --status read
收藏列表list --status starred
更多more
查看 #IDview --id
已读 #IDstatus --id --status read
未读 #IDstatus --id --status unread
收藏 #IDstatus --id --status starred
取消收藏 #IDstatus --id --status unread
删除 #IDdelete --id

版本历史

共 1 个版本

  • v0.1.5 当前
    2026-03-30 06:14 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 860 📥 199,873
content-creation

AdMapix

fly0pants
广告情报与应用数据分析助手,支持搜索广告素材、分析应用排名、下载量、收入及市场洞察,用于广告素材和竞品分析。
★ 295 📥 136,494
productivity

Little Steve Task Manager

echoofzion
小史任务管理器:面向 IM 场景的轻量任务系统,快速可用、与工作流高度融合,可在聊天中直接管理任务并支持每日汇总与自动状态更新。
★ 1 📥 949