소스 정보
- 저장소
- Demerzels-lab/elsamultiskillagent
- 최근 소스 활동
- 2026년 2월 7일 06:16
- 감지된 SKILL.md 언어
- 영어
- 스타
- 10
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Demerzels-lab/elsamultiskillagent --skill browserbase-fix명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
The philosophical layer for AI agents.
Agents can sign plugins, rotate credentials without losing identity, and publicly attest to behavior.
A relaxing resource-gathering RPG where AI agents collect resources, trade with NPCs, and manage and build their world at their own pace.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | browserbase-fix |
| description | Guide Claude through debugging and fixing failing browser automations |
Guide Claude through debugging and fixing failing browser automations.
Use this skill when:
Before debugging, gather context from:
stagehand fn errors <function-name>
stagehand fn logs <function-name>
Start a Browserbase session to see what's happening:
stagehand session create
stagehand session live # Open in browser to watch
Navigate to the target URL:
stagehand goto <target-url>
Take a snapshot of the current page:
stagehand snapshot
Compare with what the automation expects:
The site updated their HTML:
stagehand snapshot
# Look for similar elements with new selectors
stagehand eval "document.querySelector('.new-class')?.textContent"
Fix: Update selectors in the function code.
Elements load slower than expected:
stagehand network on
stagehand goto <url>
stagehand network list
# Check if resources are slow to load
Fix: Add explicit waits or increase timeouts.
Session cookies no longer valid:
stagehand snapshot
# Look for login prompts
Fix: Re-authenticate or update auth flow. See skills/auth/SKILL.md.
Site is blocking automated access:
stagehand network list
# Look for 403, 429 status codes
stagehand screenshot -o blocked.png
Fix: Add delays, use proxies, or contact site owner.
Major structural changes:
stagehand snapshot
stagehand screenshot -o current.png
Fix: Rewrite affected portions of the automation.
Make changes to the function code, then test:
# Test locally first
stagehand fn invoke <name> --local
# If local works, deploy
stagehand fn publish <entrypoint>
# Test in production
stagehand fn invoke <name>
After fixing:
Once fixed, use git to commit changes:
git add <function-file>
git commit -m "fix(<function-name>): <description of fix>"
git push
If this is a PR workflow:
gh pr create --title "Fix <function-name>" --body "..."
| Command | Purpose |
|---|---|
stagehand session create | Start debug session |
stagehand session live | Open visual debugger |
stagehand goto <url> | Navigate to target |
stagehand snapshot | Inspect DOM structure |
stagehand screenshot | Capture visual state |
stagehand network on | Enable request capture |
stagehand network list | View captured requests |
stagehand network show <id> | Inspect specific request |
stagehand eval <js> | Run diagnostic JS |
stagehand fn errors <name> | View recent failures |
stagehand fn logs <name> | View function logs |
User: My price-monitor function stopped working yesterday
Claude: Let me investigate. First, let me check the recent errors:
> stagehand fn errors price-monitor
I see several failures with "Element not found: .price". Let me start a debug session:
> stagehand session create
> stagehand session live
> stagehand goto https://example.com/product/123
Opening in browser so you can watch. Let me check the page structure:
> stagehand snapshot
I can see the price element now uses a different class `.product-price` instead of `.price`. The site appears to have been redesigned.
Let me verify:
> stagehand eval "document.querySelector('.product-price')?.textContent"
Yes, that returns "$29.99". I'll update the selector in your function:
[edits price-monitor.ts to use '.product-price']
Testing locally:
> stagehand fn invoke price-monitor --local -p '{"productUrl": "https://example.com/product/123"}'
Works! Deploying fix:
> stagehand fn publish price-monitor.ts
The function should work now. Would you like me to commit this fix?