Agent skill
atlas
macOS-only AppleScript control for the ChatGPT Atlas desktop app. Use only when the user explicitly asks to control Atlas tabs/bookmarks/history on macOS and the "ChatGPT Atlas" app is installed; do not trigger for general browser tasks or non-macOS environments.
Install this agent skill to your Project
npx add-skill https://github.com/jjeremycai/claudekit/tree/main/skills/atlas
SKILL.md
Atlas Control (macOS)
Use the bundled CLI to control Atlas and inspect local browser data.
Quick Start
Set a stable path to the CLI:
export CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
export ATLAS_CLI="$CODEX_HOME/skills/atlas/scripts/atlas_cli.py"
User-scoped skills install under $CODEX_HOME/skills (default: ~/.codex/skills).
Then run:
uv run --python 3.12 python "$ATLAS_CLI" app-name
uv run --python 3.12 python "$ATLAS_CLI" tabs --json
The CLI requires the Atlas app bundle in /Applications or ~/Applications:
ChatGPT Atlas
If AppleScript fails with a permissions error, grant Automation permission in System Settings > Privacy & Security > Automation, allowing your terminal to control ChatGPT Atlas.
Tabs Workflow
- List tabs to get
window_idandtab_index:
uv run --python 3.12 python "$ATLAS_CLI" tabs
- Focus a tab using the
window_idandtab_indexfrom the listing:
uv run --python 3.12 python "$ATLAS_CLI" focus-tab <window_id> <tab_index>
- Open a new tab:
uv run --python 3.12 python "$ATLAS_CLI" open-tab "https://chatgpt.com/"
Optional maintenance commands:
uv run --python 3.12 python "$ATLAS_CLI" reload-tab <window_id> <tab_index>
uv run --python 3.12 python "$ATLAS_CLI" close-tab <window_id> <tab_index>
Bookmarks and History
Atlas stores Chromium-style profile data under ~/Library/Application Support/com.openai.atlas/browser-data/host/.
List bookmarks:
uv run --python 3.12 python "$ATLAS_CLI" bookmarks --limit 100
Search bookmarks:
uv run --python 3.12 python "$ATLAS_CLI" bookmarks --search "docs"
Search history:
uv run --python 3.12 python "$ATLAS_CLI" history --search "openai docs" --limit 50
History for today (local time):
uv run --python 3.12 python "$ATLAS_CLI" history --today --limit 200 --json
The history command copies the SQLite database to a temporary location to avoid lock errors.
If history looks stale or empty, ask the user which Atlas install they are using, then check both Atlas data roots and inspect the one with the most recent History file:
~/Library/Application Support/com.openai.atlas/browser-data/host/~/Library/Application Support/com.openai.atlas.beta/browser-data/host/
References
Read references/atlas-data.md in the skill folder (for example, $CODEX_HOME/skills/atlas/references/atlas-data.md) when adjusting data paths or timestamps.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
himalaya
Use when the user asks to read, send, search, or manage email from the terminal. Himalaya is a CLI email client supporting IMAP, Maildir, Notmuch, SMTP, and Sendmail backends. Trigger on: email, inbox, send email, check mail, reply to email, forward email, email folders.
gh-fix-ci
Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use `gh` to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL.
yeet
Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`).
ashby
This skill should be used when the user asks about "Ashby API", "how to use Ashby tools", "Ashby authentication", "recruiting workflows", "candidate pipeline", "interview scheduling", "hiring process", "move candidate through pipeline", "schedule an interview", "manage applications", "track hiring progress", "source candidates", or "advance to next stage". Provides complete API reference and recruiting workflow guidance for the Ashby ATS integration.
skill-installer
Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).
skill-creator
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Codex's capabilities with specialized knowledge, workflows, or tool integrations.
Didn't find tool you were looking for?