Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

ralph-dogfooding拉尔夫狗食

Agent Skill

ralph-dogfooding 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

294

周安装

12

GitHub Stars

2

下载量

94
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ralph-dogfooding(拉尔夫狗食)
来源仓库:https://github.com/jonmumm/skills
仓库路径:skills/ralph-dogfooding
安装命令:
npx skills add https://github.com/jonmumm/skills --skill ralph-dogfooding
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jonmumm/skills --skill ralph-dogfooding

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在需要根据关键词或任务场景快速定位候选结果时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写。
  • ralph-dogfooding 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Ralph Dogfooding Loop

Autonomous loop that explores the app with Playwright MCP, captures evidence (screenshots, repro steps), dedupes against Linear, creates/updates issues with reproducible details, and appends each run to a progress log. Uses only Playwright MCP for the browser (no agent-browser); the loop runs without human approval.

Architecture

0. If no AGENTS.md → create-agents-md skill, then stop
1. Read AGENTS.md + .ralph/lessons.md + .ralph/dogfood-progress
2. Pull open issues from Linear (dedupe set)
3. Explore core routes via Playwright MCP (navigate, snapshot, screenshot)
4. Document each issue with evidence (screenshot sequence + report)
5. Create/update Linear issues with evidence
6. Append iteration summary to .ralph/dogfood-progress

Workflow (Playwright MCP + Linear)

1. Initialize

  • Target URL and artifact dir come from the Ralph script (.ralph/dogfood-artifacts/iteration-N/; .ralph/ is added to .gitignore by the script).
  • Create {ARTIFACTS}/screenshots, copy templates/dogfood-report-template.md to {ARTIFACTS}/report.md, fill header (Date, App URL, Session, Scope).
  • Use Playwright MCP: browser_navigate to target URL, then browser_snapshot to understand the page. Lock the browser tab before interactions; unlock when done.

2. Authenticate (if needed)

If the app requires login: use browser_snapshot to get element refs, then browser_fill / browser_click to submit credentials. Wait for navigation/load between steps. For OTP/codes, ask the user once, then enter via browser.

3. Orient

  • browser_snapshot (interactive) to see structure and refs.
  • browser_take_screenshot (full page or viewport) for the initial state; save to {ARTIFACTS}/screenshots/initial.png.
  • Identify main nav and plan which routes to hit (e.g. /, /login, /dashboard, /settings).

4. Explore

Read references/issue-taxonomy.md at session start — severity levels, categories, and the exploration checklist.

  • Work through the app systematically: main nav → each section → interactive elements (buttons, forms, links).
  • At each page: browser_snapshot, browser_take_screenshot for {page-name}.png, and check console/errors if the MCP exposes them.
  • Test forms (submit, validation), navigation (back, deep links), empty/loading/error states.
  • Spend more time on core flows; go deeper where you find clusters of issues.

5. Document issues (repro-first)

Explore and document in one pass. When you find an issue, document it immediately, then continue.

Evidence by issue type:

  • Interactive/behavioral (needs steps to reproduce): Take a screenshot before the action, perform the action (click, fill, etc.), take a screenshot after. Save as issue-{NNN}-step-1.png, issue-{NNN}-step-2.png, issue-{NNN}-result.png. Write numbered repro steps in the report; each step references its screenshot. Playwright MCP may not offer video recording — use screenshot sequences as the standard.
  • Static (typos, visual glitches on load): One annotated/view screenshot is enough. In the report set Repro Video to N/A.

For every issue:

  • Append to the report immediately (use the template block: Severity, Category, URL, Description, Repro Steps with screenshot refs).
  • Increment issue counter (ISSUE-001, ISSUE-002, …).
  • Save screenshots under {ARTIFACTS}/screenshots/ with consistent names.

6. Linear + progress

  • Use the linear-cli skill for all Linear operations (list issues, create/update issues, add comments). For issue descriptions and comment bodies with markdown, use --description-file and --body-file per the skill. Include artifact paths in the issue body or comments. Every issue: URL, environment, expected vs actual, deterministic repro steps.
  • Dedupe: check open Linear issues (title + route + expected/actual) so you don’t duplicate.
  • Append one entry to .ralph/dogfood-progress.md: iteration, routes tested, issue IDs, artifact paths. See references/progress-format.md.

7. Wrap up

  • Update the report summary counts to match the issues.
  • If no new findings and no issue updates this iteration, output <promise>NO_NEW_FINDINGS</promise> so the script can exit.

Reference guide

TopicReferenceLoad when
Issue taxonomyreferences/issue-taxonomy.mdStart of session — severity, categories, exploration checklist
Report templatetemplates/dogfood-report-template.mdCreating the report file
Playwright MCPreferences/playwright-mcp-evidence.mdBrowser automation, screenshots, snapshots
Linearlinear-cli skill + references/linear-cli.mdAll Linear commands; dogfood dedupe + artifact paths
Progress formatreferences/progress-format.mddogfood-progress entries

Pre-flight checklist

  1. Playwright MCP in Codex config (~/.codex/config.toml; install script adds it).
  2. linear-cli skill loaded (e.g. npx skills add https://github.com/schpet/linear-cli --skill linear-cli); linear on PATH.
  3. Project root path and target URL (from Ralph script).
  4. Linear team key and artifact dir.
  5. Dedupe policy (title + route + expected/actual).
  6. Stop criteria: NO_NEW_FINDINGS sentinel.

Setup

  • Script: scripts/ralph-dogfooding.sh — run with --project, --iterations, optional --url.
  • Progress log: .ralph/dogfood-progress.md (script creates .ralph/ and adds it to .gitignore). See progress-format.
  • Lessons: Maintain .ralph/lessons.md for recurring failure patterns and tool constraints.

Evidence policy

  • At least one screenshot per issue; for interactive bugs, a step-by-step screenshot sequence.
  • Attach artifacts to Linear issues using the linear-cli skill (include artifact paths in description/comment; use CLI attachment commands if available).
  • Every issue: exact URL, environment, expected vs actual, deterministic repro steps. Do not block on video; screenshot sequences are the standard.

Guidance

  • Repro first. Match evidence to issue type: interactive → step screenshots; static → single screenshot.
  • Append to the report as you go. Do not batch issues for the end.
  • Never read the target app’s source code. Test as a user; all findings from the browser.
  • Check the console when the MCP allows it; many issues show only as JS or network errors.
  • Test like a user. Common workflows, realistic data, systematic navigation.
  • Do not use agent-browser or agent-use. This skill uses only Playwright MCP and the linear-cli skill for Linear.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.94%
按下载量换算36

Claude

30.3%
按下载量换算28

Cursor

16.33%
按下载量换算15

Gemini CLI

8.26%
按下载量换算8

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills