From fdc0b283d74755cd59f72e582f0d6a6bfaa0691a Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 7 Dec 2025 04:40:08 +0000 Subject: [PATCH] Docs: scrub personal phone example --- docs/configuration.md | 6 +++--- docs/security.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 2dd07405d..071c0ee32 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -7,7 +7,7 @@ CLAWDIS uses a JSON configuration file at `~/.clawdis/clawdis.json`. ```json { "inbound": { - "allowFrom": ["+436769770569"], + "allowFrom": ["+15551234567"], "reply": { "mode": "command", "command": ["tau", "{{Body}}"] @@ -26,7 +26,7 @@ CLAWDIS uses a JSON configuration file at `~/.clawdis/clawdis.json`. }, "inbound": { "allowFrom": [ - "+436769770569", + "+15551234567", "+447511247203" ], "groupChat": { @@ -80,7 +80,7 @@ CLAWDIS uses a JSON configuration file at `~/.clawdis/clawdis.json`. Array of E.164 phone numbers allowed to trigger the AI. Use `["*"]` to allow everyone (dangerous!). ```json -"allowFrom": ["+436769770569", "+447511247203"] +"allowFrom": ["+15551234567", "+447511247203"] ``` ### `inbound.groupChat` diff --git a/docs/security.md b/docs/security.md index ef6fc32b5..8ddb9ead5 100644 --- a/docs/security.md +++ b/docs/security.md @@ -38,7 +38,7 @@ This is social engineering 101. Create distrust, encourage snooping. ```json { "inbound": { - "allowFrom": ["+436769770569"] + "allowFrom": ["+15551234567"] } } ```