ai
Cheat sheet for AI tools including GEMINI and CODEX configurations.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install majiayu000-claude-skill-registry-ai
Repository
Skill path: skills/data/ai
Cheat sheet for AI tools including GEMINI and CODEX configurations.
Open repositoryBest for
Primary workflow: Analyze Data & AI.
Technical facets: Full Stack, Data / AI.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: majiayu000.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install ai into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/majiayu000/claude-skill-registry before adding ai to shared team environments
- Use ai for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: ai
description: Cheat sheet for AI tools including GEMINI and CODEX configurations.
---
# AI
## GEMINI
```ps1
[Environment]::SetEnvironmentVariable("GOOGLE_GEMINI_BASE_URL", "https://gateway.ai.cloudflare.com/v1/fa0c3c1818cd69ddde353943aa6212f6/demo/google-ai-studio")
[Environment]::SetEnvironmentVariable("GEMINI_API_KEY", "")
[Environment]::SetEnvironmentVariable("GEMINI_MODEL", "gemini-2.5-flash-lite")
```
## CODEX
```toml
# windows_wsl_setup_acknowledged = true
# model = "gpt-5.1"
# [notice]
# hide_gpt5_1_migration_prompt = true
model_provider = "cf-gateway-gemini-compat"
model = "google-ai-studio/gemini-2.5-flash-lite"
model_reasoning_effort = "high"
disable_response_storage = true
preferred_auth_method = "apikey"
windows_wsl_setup_acknowledged = true
[model_providers.cf-gateway-gemini-compat]
name = "cf-gateway-gemini-compat"
base_url = "https://gateway.ai.cloudflare.com/v1/fa0c3c1818cd69ddde353943aa6212f6/demo/compat"
wire_api = "chat"
env_key = "GEMINI_API_KEY"
[mcp_servers.context7]
command = "npx"
args = ["-y", "@upstash/context7-mcp"]
[mcp_servers.playwright]
command = "npx"
args = ["@playwright/mcp@latest"]
[mcp_servers.chrome-devtools]
command = "cmd"
args = [
"/c",
"npx",
"-y",
"chrome-devtools-mcp@latest",
]
env = { SystemRoot="C:\\Windows", PROGRAMFILES="C:\\Program Files" }
startup_timeout_ms = 20_000
[mcp_servers.serena]
command = "uvx"
args = ["--from", "git+https://github.com/oraios/serena", "serena", "start-mcp-server", "--context", "codex"]
```
```sh
codex mcp add playwright npx "@playwright/mcp@latest"
codex mcp add context7 -- npx -y @upstash/context7-mcp
```