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

jb-beansloop新山豆露

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

公开资料未说明

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bjesuiter/skills --skill jb-beansloop

简介

jb-beansloop 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装 jb-beansloop 技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

JB Beans Loop

Use this skill to run a beans-driven Ralph-style loop when working in a beans-enabled repo and running an anthropic model.

Scope and Activation

Use this skill only when BOTH are true:

  • The repo is beans-enabled (.beans.yml exists)
  • beans cli exists

Ignore this skill when:

  • .beans.yml is missing.
  • beans cli is missing.

If a user request conflicts with beans usage (for example: asks to skip bean creation), ask for confirmation before proceeding.

Next Issue Mode (Automatic)

When you need a new issue to work on select the next most important bean via the beans skill and based on your own judgement.

This mode should run unattended for as long as possible (overnight-friendly). If a bean is blocked, select another unblocked bean instead of stopping. Only stop when all remaining beans are either completed or blocked.

Query for actionable beans (exclude completed, scrapped, and draft).

beans query '{ beans(filter: { excludeStatus: ["completed", "scrapped", "draft"], isBlocked: false }) { id title status type priority } }'

Evaluate the "most important" bean based on the following criteria:

  1. Dependency between beans (you cannot work on a bean that depends on another bean that is not completed)
  2. Priority (critical, high, normal, low, deferred)
  3. Urgency (time-sensitive or bug)
  4. Recency (most recently updated)
  5. Tiebreaker: highest priority, then most recent updatedAt

After you found an issue to work on, mark it as in-progress and start working on it until the acceptance criteria are met. If you can't finish the current bean because you encounter an unresolveable issue, mark the current bean as blocked and link the follow-up bug/ticket.

Next Issue Mode (Manual)

If the user says:

  • next issue
  • next bean
  • next beans
  • next ticket trigger the "Next Issue Mode (Automatic)" but DON'T run a loop in this case!

Rules:

  • ONLY work on that one issue to completion
  • Ask the user to review changes and finish.
  • Do not commit automatically.
  • If the user approves, use the committer skill to commit and push.

Default Ralp-Loop Prompt

  • Start by using Next Issue Mode to select the next bean.
  • Work on ONLY one bean at a time.
  • Track all work in beans. Never use todo lists.
  • Keep the loop unattended as long as possible; avoid unnecessary prompts.
  • If you discover new work, create a new bean instead of expanding scope.
  • If you can't finish the current bean because you encounter an unresolveable issue, mark it as blocked and link the follow-up bug. Then run "Next Issue Mode (Automatic)" again.
  • Update bean checklists as you complete each item.
  • When the bean is complete, run "Pre-Completion Verification" then mark it done in beans.

Pre-Completion Verification

Before marking any bean as completed, ensure the app still works:

  1. Build: Run the build command if the project has one (npm run build, bun run build, etc.)
  2. Lint/Typecheck: Run linting and type checking (npm run lint, tsc --noEmit, etc.)
  3. Tests: Run the test suite if available (npm run test, bun run test, etc.)
  4. Manual Verification: Visually or functionally verify your changes work as expected
  5. GitHub Actions (after commit/push): Check the pipeline for errors

If any step fails:

  • Find and fix the issue before marking the bean complete
  • Do NOT mark the bean complete with broken code
  • If you cannot resolve the issue, mark the bean as blocked and create a follow-up bug

Note on statuses: beans only supports status values listed in the repo config (draft, todo, in-progress, completed, scrapped). Use tags or a short note in the bean body for labels like blocked, broken, or ai verified unless your repo defines those as valid statuses.

Browser Integration Test Loop

Use the jb-browser-testing skill for all browser verification.

  • Start by using "Next Issue Mode (Automatic)" to select the next "done" bean for testing.
  • Test every bean marked as done, acting like a user would.
  • Confirm the correct browser tab before testing (match port number and page heading).
  • If the test succeeds:

- Record the result in the bean body. - Mark the bean as ai verified at <timestamp>.

  • If the test fails:

- Create a new bug bean describing the failure. - Mark the original bean as broken and link the follow-up bug.

  • Stop when every "done" bean is either ai verified or broken.

Recommended result format in the bean body:

## AI Verification
- Result: passed | failed
- Timestamp: <timestamp>
- Notes: <short summary>

Beans CLI Quick Reference

# Get active beans
beans query '{ beans(filter: { excludeStatus: ["completed", "scrapped", "draft"] }) { id title status type priority } }'

# Read a bean
beans query '{ bean(id: "<id>") { title status type body } }'

# Create a bean
beans create "Title" -t task -d "Description" -s todo

# Update status
beans update <id> --status completed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.64%
按下载量换算36

Claude

27.88%
按下载量换算28

Cursor

17.82%
按下载量换算18

Gemini CLI

10.21%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills