---
name: kunanonj/aside-google-accounts
source: https://app.decimal.ai/s/kunanonj-aside-google-accounts@1/SKILL.md
source_sha256: a89046316b1e
---

# Google Accounts

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

## Usage

```js
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.

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