Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

imsgctlimsgctl 开发

Agent Skill

imsgctl 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,683

周安装

155

GitHub Stars

公开资料未说明

下载量

1,290
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install imsgctl

简介

imsgctl 提供对 Apple Messages 数据的全面读取能力,包括聊天记录与附件元数据。

  • 适合在 OpenClaw 中需要查询消息历史、按时间过滤对话或监控新活动时使用。
  • 支持权限检查、列表展示、历史检索及实时活动跟踪,满足开发调试与数据分析需求。
  • 安装命令:openclaw skills install imsgctl,使用前请确认系统已开启消息访问权限。
  • 注意该技能直接操作本地消息数据库,需评估隐私影响并确保符合企业安全策略。

SKILL.md

name
imsgctl
description
Read Apple Messages data with imsgctl: check access, list chats, inspect message history, filter by time, include attachment metadata, and watch new activity from the local data available to imsgctl.
metadata
openclaw
homepage
https://github.com/jpreagan/imsgkit
os
requires
bins
install
formula
jpreagan/tap/imsgctl
bins

imsgctl

Use imsgctl to read Apple Messages data available on the current machine.

Use This Skill When

  • The user wants to inspect iMessage or SMS data from Apple Messages.
  • The user wants to list recent chats.
  • The user wants message history for a specific chat.
  • The user wants to filter message history by time.
  • The user wants attachment metadata.
  • The user wants to watch for new messages or reactions.

Do Not Use This Skill When

  • The user wants to send or reply to a message.
  • The user wants to delete, edit, react to, or otherwise modify Messages data.
  • The request is about Slack, Discord, Telegram, Signal, WhatsApp, or another messaging system.

Operating Rules

  • Prefer --json when results may be parsed or reused.
  • imsgctl health --json emits one JSON object.
  • imsgctl chats --json, history --json, and watch --json emit JSONL.
  • Use --db PATH when the user gives a specific database path or when the backend must be explicit.
  • Use watch only for live monitoring. It streams until interrupted.

Defaults And Access

  • On macOS, running without --db prefers ~/Library/Application Support/imsgkit/replica.db when a valid replica exists. Otherwise it falls back to ~/Library/Messages/chat.db.
  • On Linux, running without --db reads ~/.local/share/imsgkit/replica.db, or $XDG_DATA_HOME/imsgkit/replica.db when XDG_DATA_HOME is set to an absolute path.
  • Direct access to ~/Library/Messages/chat.db requires macOS and Full Disk Access for the process doing the reading.
  • If contact resolution is unavailable, chat and sender labels may fall back to raw identifiers.

Common Commands

Check Access

imsgctl health --json

List Recent Chats

imsgctl chats --limit 20 --json

Read Recent History For A Chat

imsgctl history --chat-id 42 --limit 50 --json

Read History With Attachment Metadata

imsgctl history --chat-id 42 --limit 50 --attachments --json

Read History In A Time Window

imsgctl history \
  --chat-id 42 \
  --limit 50 \
  --start 2026-03-01T00:00:00Z \
  --end 2026-03-02T00:00:00Z \
  --json

Watch New Activity

imsgctl watch --chat-id 42 --json

Watch New Messages, Attachments, and Reactions

imsgctl watch --chat-id 42 --attachments --reactions --json

Use An Explicit Database Path

imsgctl chats --db ~/Library/Application\ Support/imsgkit/replica.db --limit 20 --json
imsgctl history --db ~/.local/share/imsgkit/replica.db --chat-id 42 --limit 50 --json

Recommended Workflow

  1. Run imsgctl health --json to confirm access.
  2. Run imsgctl chats --limit 20 --json to identify the target chat.
  3. Use the returned chat ID with imsgctl history --chat-id ... --json.
  4. Add --start, --end, --limit, or --attachments only as needed.
  5. Use imsgctl watch only if the user asked for live monitoring.

Viewing Image Attachments

When --attachments reveals an image, the file is often too large to read directly. Convert it to a smaller JPEG preview, then read the result:

  • macOS: sips -s format jpeg -Z 800 "/path/to/image.heic" --out /tmp/preview.jpg
  • Linux: magick "/path/to/image.heic" -resize 800x800 /tmp/preview.jpg

Failure Modes

  • If direct macOS reads fail, check Full Disk Access first.
  • If the expected local database path is missing, access will fail until the correct database is available on the current machine.
  • If chat labels are ambiguous or missing, rely on chat IDs and raw identifiers.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

71.76%
按下载量换算926

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills