一键导入
code
ALWAYS follow this style when writing Python / JavaScript code
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
ALWAYS follow this style when writing Python / JavaScript code
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
To select, design, annotate, and verify a data visualization (chart, map, or table).
ALWAYS follow this design guide for any front-end work
Use this for non-trivial analysis, design, diagnosis, review, strategy, or judgment. Skip it for simple lookups, mechanical rewrites, and pure tone tasks.
For CloudFlare development, deployment, e.g. Python CloudFlare Workers
Use when creating demos or POCs
Navigate LinkedIn via Chrome DevTools Protocol (CDP) using `uvx rodney` connected to an existing logged-in browser session. Use for extracting profile information, discovering people by city/role/interest, finding people who can help with specific tasks, and surfacing interesting posts and content.
| name | code |
| description | ALWAYS follow this style when writing Python / JavaScript code |
Docs:
Tests:
npx -y lighthouse@latestOps:
Bug fixes:
Prefer uv run --with pkg1 --with pkg2 script.py, uvx --from pkg cmd over python or python3
Avoid requirements.txt. Unless pyproject.toml is present, add dependencies as PEP 723 metadata:
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.14"
# dependencies = ["scipy>=1.10", "httpx"]
# ///
Prefer:
Prefer modern HTML:
Preferred JS style:
?., ??, destructuring, spread, implicit returns (=> over => { return })// @ts-check. .d.ts is OK for packagesDebug front-end apps with agent-browser, rodney, Playwright via CDP on localhost:9222.
For single-page HTML files try file:// if a server may not be needed.