用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill browser-control命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Conduct deep academic research for philosophy, neuroscience, cognitive science, and theoretical computer science (computability, complexity, AI theory, logic). Use when user asks to: research academic topics, find scholarly papers, conduct literature reviews, analyze citations, synthesize research findings, explore philosophical arguments, investigate consciousness/cognition, study computability/decidability/Turing machines, or analyze academic debates. Triggers on: 'research papers', 'literature review', 'academic sources', 'scholarly articles', 'philosophy of mind', 'computability theory', 'neuroscience studies', 'find papers on', 'what does the research say'.
Create clear action plans with steps, success criteria, and risk awareness. Use before implementing features, making changes, starting projects, or anytime you need a roadmap to success. Triggers on "plan this", "how should we approach", "what's the strategy", "steps to complete", or when facing complex multi-step work.
Add keyboard navigation to a feature using CommandRegistryService. Use when implementing keyboard shortcuts, vim-style navigation, or hotkeys for a page or component.
基于 SOC 职业分类
| name | browser-control |
| description | Full browser control for authenticated web interactions using Playwright scripts |
| triggers | ["check availability","search for","log into","browse to","look up prices","check points","find deals","scrape","get current price","check hotel","check flight"] |
| allowed-tools | Bash, Read |
| version | 0.1.0 |
Full browser automation for travel research requiring authentication or complex interactions.
Use this skill when you need to:
Script-based approach - No MCP overhead. Scripts load only when needed.
Geoffrey Chrome Profile must be running with remote debugging:
./scripts/launch-chrome.sh
Profile must have logins saved for:
All scripts are in ./scripts/ and use Playwright connecting via CDP.
| Script | Purpose | Usage |
|---|---|---|
launch-chrome.sh | Start Geoffrey Chrome profile | ./scripts/launch-chrome.sh |
navigate.js | Navigate to URL and get page content | bun scripts/navigate.js <url> |
screenshot.js | Take screenshot of page | bun scripts/screenshot.js <url> [output] [--full] |
extract.js | Extract text/data from page | bun scripts/extract.js <url> <selector> [--all] |
interact.js | Click, type, select on page | bun scripts/interact.js <url> <action> <selector> [value] |
search.js | Search travel sites | bun scripts/search.js <site> <query> |
# Navigate to Marriott search
bun scripts/navigate.js "https://www.marriott.com/search/default.mi"
# Or use the search script
bun scripts/search.js marriott "Westin Rusutsu February 2026"
bun scripts/extract.js "https://www.flyertalk.com/forum/thread-url" ".post-content"
bun scripts/screenshot.js "https://www.marriott.com/hotels/travel/ctswi-the-westin-rusutsu-resort/" rusutsu.png
Auto-Resize Protection (ALL screenshots):
safeToRead: trueLazy-Loading Limitation (AirBnB, dynamic sites):
screenshot-current.js# For lazy-loading sites, screenshot current viewport
bun scripts/screenshot-current.js /tmp/output.png
# Or navigate + viewport screenshot
bun scripts/screenshot.js "https://airbnb.com/..." /tmp/output.png
Example output:
{
"success": true,
"url": "https://example.com",
"title": "Example Page",
"screenshot": "/tmp/screenshot.png",
"dimensions": { "width": 1920, "height": 1080 },
"originalDimensions": { "width": 1920, "height": 1080 },
"scaled": false,
"safeToRead": true,
"timestamp": "2025-11-28T..."
}
Scripts connect to Chrome via Chrome DevTools Protocol (CDP):
http://127.0.0.1:9222~/.chrome-geoffreyIf scripts fail to connect:
./scripts/launch-chrome.shlsof -i :9222pkill -f "remote-debugging-port"All scripts return JSON:
{
"success": true,
"url": "https://example.com",
"title": "Page Title",
"content": "Extracted content or action result",
"timestamp": "2025-11-22T..."
}