# Aside Google Accounts

> IMPORTANT- Read this skill before interacting any Google apps!

- Skill: `kunanonj/aside-google-accounts` (Agent Skill)
- Install (CLI): `npx skillmds@latest add kunanonj/aside-google-accounts`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kunanonj/aside-google-accounts/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: KunanonJ (https://skillmd.com/u/kunanonj)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/kunanonj/aside-google-accounts

---

# 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;
}
```

