MYOS Setup

Your daily MYOS workflow

๐Ÿ“ฑ
Friend sends article
in any app
โ†’
โคด
Share Sheet
"Share to MYOS"
โ†’
โš™
Auto-process
~5 min
โ†’
๐Ÿ’ฌ
Telegram message
with thesis + action

Three short setup steps below. None take longer than 5 minutes. Skip Telegram if you only want dashboard view.

1

Browser access token

10 sec ยท once per browser

Required to view your inputs + explanations in this browser. Set once and forget. Stored only in this browser's localStorage; never shown back.

To copy your token from the macOS keychain to clipboard, run in Terminal:

security find-generic-password -s myos-intake-token -w | pbcopy && echo "โœ“ token in clipboard for 30 sec"

Then come back here, paste into the field above, click Save. The pill turns green โœ“ โ€” every other MYOS page just works after that, no more nagging.

2

Apple Shortcut โ€” one-tap share from any app

5 min ยท iPhone

Adds a "Share to MYOS" option to your iPhone Share Sheet. Works from iMessage, LINE, X, Instagram, Mail, Safari โ€” anywhere with a share button.

  1. Open Shortcuts app on iPhone โ†’ tap + โ†’ name it "Share to MYOS".
  2. Tap the (i) info icon at the bottom โ†’ toggle "Show in Share Sheet" ON.
  3. Add Action โ†’ search "Get Contents of URL":
    • URL: https://myos-97k.pages.dev/api/intake
    • Tap "Show More"
    • Method: POST
    • Request Body: JSON
    • Header: key Authorization, value Bearer + paste your token (note the space after Bearer)
    • JSON field 1: key url, type Text, value = Shortcut Input
    • JSON field 2: key source_type, type Text, value article_link
    • JSON field 3: key sensitivity, type Text, value shared
  4. (Optional) Add Action โ†’ "Show Notification" โ†’ drag in "Contents of URL" as the body.
  5. Tap Done.
  6. Test: open any article in Safari โ†’ Share โ†’ scroll to "Share to MYOS" โ†’ tap.

Mac syncs the Shortcut automatically via iCloud โ€” works from any Mac app via right-click โ†’ Services โ†’ Share to MYOS.

3

Telegram bot โ€” output delivery to your chat

3 min ยท optional

Skip this if you're fine reading explanations on the dashboard. Set it up if you'd rather get the thesis + action pushed to your phone as a Telegram message.

  1. In Telegram, chat with @BotFather โ†’ /newbot โ†’ pick a display name + unique username ending in bot. Copy the token it gives you โ€” don't paste it anywhere yet.
  2. In Telegram, chat with @userinfobot โ†’ it tells you your numeric chat ID (a number like 123456789).
  3. Message your new bot once ("hi") โ€” this unlocks it for sending.
  4. In Terminal, paste this โ€” bot token enters silently:
    read -rs -p "Paste Telegram bot token (hidden): " T; echo; security delete-generic-password -s myos-telegram-bot-token 2>/dev/null; security add-generic-password -s myos-telegram-bot-token -a "$USER" -w "$T" -U && echo "โœ“ bot token stored (${#T} chars)"; unset T
  5. Then chat ID:
    read -rs -p "Paste Telegram chat ID (hidden): " C; echo; security delete-generic-password -s myos-telegram-chat-id 2>/dev/null; security add-generic-password -s myos-telegram-chat-id -a "$USER" -w "$C" -U && echo "โœ“ chat id stored"; unset C

After this, every successful MYOS run pings you on Telegram with thesis + why + action + dashboard link. Configured silently โ€” if either keychain entry is missing, the system just skips the Telegram push.

โœ“

Test it

Open any public article in Safari/Chrome. Hit Share โ†’ Share to MYOS. Within 5 min:

  • โœ“ Row appears on the dashboard with green โœ“ processed badge
  • โœ“ Telegram message arrives (if you did step 3)
  • โœ“ Click the dashboard row โ†’ read the 9-section MYOS explanation

Or force-trigger the cycle immediately in Terminal:

cd "/Users/justineacaylar/Justine's AGENT" && npm run auto-process:test