# Send iMessage & Signal Analyzer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "imessage-signal-analyzer",
    "name": "iMessage & Signal Analyzer",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/terellison/imessage-signal-analyzer",
    "canonicalUrl": "https://clawhub.ai/terellison/imessage-signal-analyzer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/imessage-signal-analyzer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=imessage-signal-analyzer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/analyze.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "imessage-signal-analyzer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T01:15:25.836Z",
      "expiresAt": "2026-05-09T01:15:25.836Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=imessage-signal-analyzer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=imessage-signal-analyzer",
        "contentDisposition": "attachment; filename=\"imessage-signal-analyzer-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "imessage-signal-analyzer"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/imessage-signal-analyzer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/imessage-signal-analyzer",
    "downloadUrl": "https://openagent3.xyz/downloads/imessage-signal-analyzer",
    "agentUrl": "https://openagent3.xyz/skills/imessage-signal-analyzer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/imessage-signal-analyzer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/imessage-signal-analyzer/agent.md"
  }
}
```
## Documentation

### iMessage & Signal Analyzer

Analyze iMessage (macOS) and Signal conversations to produce relationship reports.

### macOS (iMessage)

iMessage data is stored locally on macOS. Depending on your security settings, you may need to grant Full Disk Access:

Option 1: Run the script directly with Python (no special permissions needed if you have read access to ~/Library/Messages/chat.db)

Option 2: If you get a permission error, grant Full Disk Access:

Open System Settings → Privacy & Security → Full Disk Access
Click + and add Python or your terminal app

### Linux / Windows (Signal only)

iMessage is not available on Linux/Windows
Signal analysis works via exported JSON

### Signal (All Platforms)

Install signal-cli: brew install signal-cli (macOS) or see https://github.com/AsamK/signal-cli
Link your device: signal-cli link and scan QR code
Export messages: signal-cli export --output ~/signal_export.json

### iMessage Analysis

python3 skills/message-analyzer/scripts/analyze.py imessage <phone_or_handle>

Examples:

python3 skills/message-analyzer/scripts/analyze.py imessage "+15551234567"
python3 skills/message-analyzer/scripts/analyze.py imessage "+15551234567" --limit 500

### Signal Analysis

First, export your Signal data (one-time):

signal-cli export --output ~/signal_export.json

Then analyze:

python3 skills/message-analyzer/scripts/analyze.py signal ~/signal_export.json <phone_or_name>

Examples:

python3 skills/message-analyzer/scripts/analyze.py signal ~/signal_export.json "+15551234567"
python3 skills/message-analyzer/scripts/analyze.py signal ~/signal_export.json "+15559876543"

### iMessage

If you have a name but not a number:

DB=$(ls ~/Library/Application\\ Support/AddressBook/Sources/*/AddressBook-v22.abcddb 2>/dev/null | head -1)
sqlite3 "$DB" "SELECT ZFIRSTNAME, ZLASTNAME FROM ZABCDRECORD WHERE ZFIRSTNAME LIKE '%Name%';"

If AddressBook returns no results, ask the user for the number.

### Signal

Signal exports include phone numbers in the JSON. Search by name or number.

### iMessage

Your sent messages may only exist from the current device's setup date — older sent messages are lost when switching devices. This skews initiation stats.
Binary messages (attributedBody) are partially decoded — some formatting artifacts like +@ prefixes may appear in samples; these are normal.
Multiple handles: One contact may have 2–3 duplicate handles (iMessage + SMS + RCS). The script aggregates them automatically.

### Signal

Export required: You must export Signal data first using signal-cli export
Media: Exported JSON contains message text; media (images, files) is not included
Reactions: Emoji reactions are included as separate message entries

### Analysis Output

The script produces:

Total message count (you vs. them)
Date range
Messages per year with volume bar
Conversation initiation breakdown (new convo = gap > 4 hours)
Notable silences (>30 days)
Sample messages by year
Most recent 10 messages

### Interpreting Results

After running the script, synthesize findings conversationally:

Volume patterns: When was the friendship most active? Any notable surges or drops?
Initiation skew: Who reaches out first? (Note: your sent messages may be missing from old periods)
Gaps: Were long silences mutual drift or explainable (device switch, platform change, life event)?
Tone/content: What do the sample messages reveal about the relationship's energy?
Context from user: Always ask the user to fill in context gaps

Present the analysis conversationally, not just as raw numbers. Offer a genuine take on the relationship dynamic.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: terellison
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T01:15:25.836Z
- Expires at: 2026-05-09T01:15:25.836Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/imessage-signal-analyzer)
- [Send to Agent page](https://openagent3.xyz/skills/imessage-signal-analyzer/agent)
- [JSON manifest](https://openagent3.xyz/skills/imessage-signal-analyzer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/imessage-signal-analyzer/agent.md)
- [Download page](https://openagent3.xyz/downloads/imessage-signal-analyzer)