mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-05-11 14:05:52 -03:00
Merge pull request #1055 from anthropics/kenneth/imessage-permission-selfchat-only
imessage: restrict permission relay to self-chat, fix echo filter & tapback noise
This commit is contained in:
commit
31e7200b33
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "imessage",
|
"name": "imessage",
|
||||||
"description": "iMessage channel for Claude Code \u2014 reads chat.db directly, sends via AppleScript. Built-in access control; manage pairing, allowlists, and policy via /imessage:access.",
|
"description": "iMessage channel for Claude Code \u2014 reads chat.db directly, sends via AppleScript. Built-in access control; manage pairing, allowlists, and policy via /imessage:access.",
|
||||||
"version": "0.0.1",
|
"version": "0.1.0",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"imessage",
|
"imessage",
|
||||||
"messaging",
|
"messaging",
|
||||||
|
|||||||
@ -62,6 +62,7 @@ Handles are phone numbers (`+15551234567`) or Apple ID emails (`them@icloud.com`
|
|||||||
| Variable | Default | Effect |
|
| Variable | Default | Effect |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| `IMESSAGE_APPEND_SIGNATURE` | `true` | Appends `\nSent by Claude` to outbound messages. Set to `false` to disable. |
|
| `IMESSAGE_APPEND_SIGNATURE` | `true` | Appends `\nSent by Claude` to outbound messages. Set to `false` to disable. |
|
||||||
|
| `IMESSAGE_ALLOW_SMS` | `false` | Accept inbound SMS/RCS in addition to iMessage. **Off by default because SMS sender IDs are spoofable** — a forged SMS from your own number would otherwise bypass access control. Only enable if you understand the risk. |
|
||||||
| `IMESSAGE_ACCESS_MODE` | — | Set to `static` to disable runtime pairing and read `access.json` only. |
|
| `IMESSAGE_ACCESS_MODE` | — | Set to `static` to disable runtime pairing and read `access.json` only. |
|
||||||
| `IMESSAGE_STATE_DIR` | `~/.claude/channels/imessage` | Override where `access.json` and pairing state live. |
|
| `IMESSAGE_STATE_DIR` | `~/.claude/channels/imessage` | Override where `access.json` and pairing state live. |
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "claude-channel-imessage",
|
"name": "claude-channel-imessage",
|
||||||
"version": "0.0.1",
|
"version": "0.1.0",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": "./server.ts",
|
"bin": "./server.ts",
|
||||||
|
|||||||
@ -32,6 +32,10 @@ import { join, basename, sep } from 'path'
|
|||||||
|
|
||||||
const STATIC = process.env.IMESSAGE_ACCESS_MODE === 'static'
|
const STATIC = process.env.IMESSAGE_ACCESS_MODE === 'static'
|
||||||
const APPEND_SIGNATURE = process.env.IMESSAGE_APPEND_SIGNATURE !== 'false'
|
const APPEND_SIGNATURE = process.env.IMESSAGE_APPEND_SIGNATURE !== 'false'
|
||||||
|
// SMS sender IDs are spoofable; iMessage is Apple-ID-authenticated. Default
|
||||||
|
// drops SMS/RCS so a forged sender can't reach the gate. Opt in only if you
|
||||||
|
// understand the risk.
|
||||||
|
const ALLOW_SMS = process.env.IMESSAGE_ALLOW_SMS === 'true'
|
||||||
const SIGNATURE = '\nSent by Claude'
|
const SIGNATURE = '\nSent by Claude'
|
||||||
const CHAT_DB =
|
const CHAT_DB =
|
||||||
process.env.IMESSAGE_DB_PATH ?? join(homedir(), 'Library', 'Messages', 'chat.db')
|
process.env.IMESSAGE_DB_PATH ?? join(homedir(), 'Library', 'Messages', 'chat.db')
|
||||||
@ -105,6 +109,7 @@ type Row = {
|
|||||||
date: number
|
date: number
|
||||||
is_from_me: number
|
is_from_me: number
|
||||||
cache_has_attachments: number
|
cache_has_attachments: number
|
||||||
|
service: string | null
|
||||||
handle_id: string | null
|
handle_id: string | null
|
||||||
chat_guid: string
|
chat_guid: string
|
||||||
chat_style: number | null
|
chat_style: number | null
|
||||||
@ -114,7 +119,7 @@ const qWatermark = db.query<{ max: number | null }, []>('SELECT MAX(ROWID) AS ma
|
|||||||
|
|
||||||
const qPoll = db.query<Row, [number]>(`
|
const qPoll = db.query<Row, [number]>(`
|
||||||
SELECT m.ROWID AS rowid, m.guid, m.text, m.attributedBody, m.date, m.is_from_me,
|
SELECT m.ROWID AS rowid, m.guid, m.text, m.attributedBody, m.date, m.is_from_me,
|
||||||
m.cache_has_attachments, h.id AS handle_id, c.guid AS chat_guid, c.style AS chat_style
|
m.cache_has_attachments, m.service, h.id AS handle_id, c.guid AS chat_guid, c.style AS chat_style
|
||||||
FROM message m
|
FROM message m
|
||||||
JOIN chat_message_join cmj ON cmj.message_id = m.ROWID
|
JOIN chat_message_join cmj ON cmj.message_id = m.ROWID
|
||||||
JOIN chat c ON c.ROWID = cmj.chat_id
|
JOIN chat c ON c.ROWID = cmj.chat_id
|
||||||
@ -125,7 +130,7 @@ const qPoll = db.query<Row, [number]>(`
|
|||||||
|
|
||||||
const qHistory = db.query<Row, [string, number]>(`
|
const qHistory = db.query<Row, [string, number]>(`
|
||||||
SELECT m.ROWID AS rowid, m.guid, m.text, m.attributedBody, m.date, m.is_from_me,
|
SELECT m.ROWID AS rowid, m.guid, m.text, m.attributedBody, m.date, m.is_from_me,
|
||||||
m.cache_has_attachments, h.id AS handle_id, c.guid AS chat_guid, c.style AS chat_style
|
m.cache_has_attachments, m.service, h.id AS handle_id, c.guid AS chat_guid, c.style AS chat_style
|
||||||
FROM message m
|
FROM message m
|
||||||
JOIN chat_message_join cmj ON cmj.message_id = m.ROWID
|
JOIN chat_message_join cmj ON cmj.message_id = m.ROWID
|
||||||
JOIN chat c ON c.ROWID = cmj.chat_id
|
JOIN chat c ON c.ROWID = cmj.chat_id
|
||||||
@ -165,12 +170,10 @@ const qAttachments = db.query<AttRow, [number]>(`
|
|||||||
WHERE maj.message_id = ?
|
WHERE maj.message_id = ?
|
||||||
`)
|
`)
|
||||||
|
|
||||||
// Your own addresses. message.account ("E:you@icloud.com" / "p:+1555...") is
|
// Your own addresses, from message.account ("E:you@icloud.com" / "p:+1555...")
|
||||||
// the identity you sent *from* on each row — but an Apple ID can be reachable
|
// on rows you sent. Don't supplement with chat.last_addressed_handle — on
|
||||||
// at both an email and a phone, and account only shows whichever you sent
|
// machines with SMS history that column is polluted with short codes and
|
||||||
// from. chat.last_addressed_handle covers the rest: it's the per-chat "which
|
// other people's numbers, not just your own identities.
|
||||||
// of your addresses reaches this person" field, so it accumulates every
|
|
||||||
// identity you've actually used. Union both.
|
|
||||||
const SELF = new Set<string>()
|
const SELF = new Set<string>()
|
||||||
{
|
{
|
||||||
type R = { addr: string }
|
type R = { addr: string }
|
||||||
@ -178,9 +181,6 @@ const SELF = new Set<string>()
|
|||||||
for (const { addr } of db.query<R, []>(
|
for (const { addr } of db.query<R, []>(
|
||||||
`SELECT DISTINCT account AS addr FROM message WHERE is_from_me = 1 AND account IS NOT NULL AND account != '' LIMIT 50`,
|
`SELECT DISTINCT account AS addr FROM message WHERE is_from_me = 1 AND account IS NOT NULL AND account != '' LIMIT 50`,
|
||||||
).all()) SELF.add(norm(addr))
|
).all()) SELF.add(norm(addr))
|
||||||
for (const { addr } of db.query<R, []>(
|
|
||||||
`SELECT DISTINCT last_addressed_handle AS addr FROM chat WHERE last_addressed_handle IS NOT NULL AND last_addressed_handle != '' LIMIT 50`,
|
|
||||||
).all()) SELF.add(norm(addr))
|
|
||||||
}
|
}
|
||||||
process.stderr.write(`imessage channel: self-chat addresses: ${[...SELF].join(', ') || '(none)'}\n`)
|
process.stderr.write(`imessage channel: self-chat addresses: ${[...SELF].join(', ') || '(none)'}\n`)
|
||||||
|
|
||||||
@ -432,7 +432,14 @@ const ECHO_WINDOW_MS = 15000
|
|||||||
const echo = new Map<string, number>()
|
const echo = new Map<string, number>()
|
||||||
|
|
||||||
function echoKey(raw: string): string {
|
function echoKey(raw: string): string {
|
||||||
return raw.trim().replace(/\s+/g, ' ').slice(0, 120)
|
return raw
|
||||||
|
.replace(/\s*Sent by Claude\s*$/, '')
|
||||||
|
.replace(/[\u200d\ufe00-\ufe0f]/g, '') // ZWJ + variation selectors — chat.db is inconsistent about these
|
||||||
|
.replace(/[\u2018\u2019]/g, "'")
|
||||||
|
.replace(/[\u201c\u201d]/g, '"')
|
||||||
|
.trim()
|
||||||
|
.replace(/\s+/g, ' ')
|
||||||
|
.slice(0, 120)
|
||||||
}
|
}
|
||||||
|
|
||||||
function trackEcho(chatGuid: string, key: string): void {
|
function trackEcho(chatGuid: string, key: string): void {
|
||||||
@ -540,11 +547,10 @@ const mcp = new Server(
|
|||||||
tools: {},
|
tools: {},
|
||||||
experimental: {
|
experimental: {
|
||||||
'claude/channel': {},
|
'claude/channel': {},
|
||||||
// Permission-relay opt-in (anthropics/claude-cli-internal#23061).
|
// Permission-relay opt-in. Declaring this asserts we authenticate the
|
||||||
// Declaring this asserts we authenticate the replier — which we do:
|
// replier — which we do: prompts go to self-chat only and replies are
|
||||||
// gate()/access.allowFrom already drops non-allowlisted senders before
|
// accepted from self-chat only (see handleInbound). A server that
|
||||||
// handleInbound delivers. Self-chat is the owner by definition. A
|
// can't authenticate the replier should NOT declare this.
|
||||||
// server that can't authenticate the replier should NOT declare this.
|
|
||||||
'claude/channel/permission': {},
|
'claude/channel/permission': {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -562,11 +568,9 @@ const mcp = new Server(
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
// Receive permission_request from CC → format → send to all allowlisted DMs.
|
// Permission prompts go to self-chat only. A "yes" grants tool execution on
|
||||||
// Groups are intentionally excluded — the security thread resolution was
|
// this machine — that authority is the owner's alone, not allowlisted
|
||||||
// "single-user mode for official plugins." Anyone in access.allowFrom
|
// contacts'.
|
||||||
// already passed explicit pairing; group members haven't. Self-chat is
|
|
||||||
// always included (owner).
|
|
||||||
mcp.setNotificationHandler(
|
mcp.setNotificationHandler(
|
||||||
z.object({
|
z.object({
|
||||||
method: z.literal('notifications/claude/channel/permission_request'),
|
method: z.literal('notifications/claude/channel/permission_request'),
|
||||||
@ -579,7 +583,6 @@ mcp.setNotificationHandler(
|
|||||||
}),
|
}),
|
||||||
async ({ params }) => {
|
async ({ params }) => {
|
||||||
const { request_id, tool_name, description, input_preview } = params
|
const { request_id, tool_name, description, input_preview } = params
|
||||||
const access = loadAccess()
|
|
||||||
// input_preview is unbearably long for Write/Edit; show only for Bash
|
// input_preview is unbearably long for Write/Edit; show only for Bash
|
||||||
// where the command itself is the dangerous part.
|
// where the command itself is the dangerous part.
|
||||||
const preview = tool_name === 'Bash' ? `${input_preview}\n\n` : '\n'
|
const preview = tool_name === 'Bash' ? `${input_preview}\n\n` : '\n'
|
||||||
@ -588,14 +591,17 @@ mcp.setNotificationHandler(
|
|||||||
`${tool_name}: ${description}\n` +
|
`${tool_name}: ${description}\n` +
|
||||||
preview +
|
preview +
|
||||||
`Reply "yes ${request_id}" to allow or "no ${request_id}" to deny.`
|
`Reply "yes ${request_id}" to allow or "no ${request_id}" to deny.`
|
||||||
// allowFrom holds handle IDs, not chat GUIDs — resolve via qChatsForHandle.
|
|
||||||
// Include SELF addresses so the owner's self-chat gets the prompt even
|
|
||||||
// when allowFrom is empty (default config).
|
|
||||||
const handles = new Set([...access.allowFrom.map(h => h.toLowerCase()), ...SELF])
|
|
||||||
const targets = new Set<string>()
|
const targets = new Set<string>()
|
||||||
for (const h of handles) {
|
for (const h of SELF) {
|
||||||
for (const { guid } of qChatsForHandle.all(h)) targets.add(guid)
|
for (const { guid } of qChatsForHandle.all(h)) targets.add(guid)
|
||||||
}
|
}
|
||||||
|
if (targets.size === 0) {
|
||||||
|
process.stderr.write(
|
||||||
|
`imessage channel: permission_request ${request_id} not relayed — no self-chat found. ` +
|
||||||
|
`Send yourself an iMessage to create one.\n`,
|
||||||
|
)
|
||||||
|
return
|
||||||
|
}
|
||||||
for (const guid of targets) {
|
for (const guid of targets) {
|
||||||
const err = sendText(guid, text)
|
const err = sendText(guid, text)
|
||||||
if (err) {
|
if (err) {
|
||||||
@ -770,6 +776,7 @@ function expandTilde(p: string): string {
|
|||||||
|
|
||||||
function handleInbound(r: Row): void {
|
function handleInbound(r: Row): void {
|
||||||
if (!r.chat_guid) return
|
if (!r.chat_guid) return
|
||||||
|
if (!ALLOW_SMS && r.service !== 'iMessage') return
|
||||||
|
|
||||||
// style 45 = DM, 43 = group. Drop unknowns rather than risk routing a
|
// style 45 = DM, 43 = group. Drop unknowns rather than risk routing a
|
||||||
// group message through the DM gate and leaking a pairing code.
|
// group message through the DM gate and leaking a pairing code.
|
||||||
@ -781,7 +788,9 @@ function handleInbound(r: Row): void {
|
|||||||
|
|
||||||
const text = messageText(r)
|
const text = messageText(r)
|
||||||
const hasAttachments = r.cache_has_attachments === 1
|
const hasAttachments = r.cache_has_attachments === 1
|
||||||
if (!text && !hasAttachments) return
|
// trim() catches tapbacks/receipts synced from other devices — those land
|
||||||
|
// as whitespace-only rows.
|
||||||
|
if (!text.trim() && !hasAttachments) return
|
||||||
|
|
||||||
// Never deliver our own sends. In self-chat the is_from_me=1 rows are empty
|
// Never deliver our own sends. In self-chat the is_from_me=1 rows are empty
|
||||||
// sent-receipts anyway — the content lands on the is_from_me=0 copy below.
|
// sent-receipts anyway — the content lands on the is_from_me=0 copy below.
|
||||||
@ -817,12 +826,9 @@ function handleInbound(r: Row): void {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Permission-reply intercept: if this looks like "yes xxxxx" for a
|
// Permission replies: emit the structured event instead of relaying as
|
||||||
// pending permission request, emit the structured event instead of
|
// chat. Owner-only — same gate as the send side.
|
||||||
// relaying as chat. The sender is already gate()-approved at this point
|
const permMatch = isSelfChat ? PERMISSION_REPLY_RE.exec(text) : null
|
||||||
// (non-allowlisted senders were dropped above; self-chat is the owner),
|
|
||||||
// so we trust the reply.
|
|
||||||
const permMatch = PERMISSION_REPLY_RE.exec(text)
|
|
||||||
if (permMatch) {
|
if (permMatch) {
|
||||||
void mcp.notification({
|
void mcp.notification({
|
||||||
method: 'notifications/claude/channel/permission',
|
method: 'notifications/claude/channel/permission',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user