Aside Google Accounts

IMPORTANT- Read this skill before interacting any Google apps!

KunanonJ Updated

File contents

Google Accounts

Use the googleAccounts global in the REPL tool to discover signed-in Google accounts. Uses cookie-only HTTP — no tab needed.

Usage

await googleAccounts.print();

Methods

googleAccounts.print(): Promise<void>

Print all signed-in Google accounts to the console. Token-efficient.

googleAccounts.list(): Promise<GoogleAccountInfo[]>

Returns all signed-in Google accounts. Use this when you need programmatic access.

interface GoogleAccountInfo {
  accountId: number;      // matches Gmail /u/{uid}/
  name: string;
  email: string;
  profileImageUrl: string;
}

KunanonJ/ai-skills-hub/tree/main/skills/aside-google-accounts commit ff0022c8b3

Frequently asked questions

npx skillmds@latest add kunanonj/aside-google-accounts