skills/ai/SKILL.md
Cheat sheet for AI tools including GEMINI and CODEX configurations.
npx skillsauth add jyasuu/cheat-sheet aiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
[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")
# 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"]
codex mcp add playwright npx "@playwright/mcp@latest"
codex mcp add context7 -- npx -y @upstash/context7-mcp
data-ai
Create, use, and manage Agent Skills for Claude. Use when working with Skills, creating custom capabilities, or understanding how Skills extend Claude's functionality. Covers Skill architecture, file structure, and best practices.
tools
Atlassian CLI tool installation and authentication.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------