Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

glubeanglubean 搜索

Agent Skill

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

总安装

699

周安装

28

GitHub Stars

1

下载量

226
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/glubean/skill --skill glubean

简介

glubean 用于查找、检索和筛选相关信息,支持关键词和任务场景匹配。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的信息定位需求。
  • 结合来源仓库和原始 README 可进一步核验具体用法。
  • 安装命令:npx skills add https://github.com/glubean/skill --skill glubean。
  • 建议确认权限范围和维护状态,避免触发联网或文件操作。

SKILL.md

Glubean

Use this skill as a Glubean best-practice guide. Default to the real project workflow. Scratch mode is an extension quick demo path, not the normal agent path.

Modes

  1. Docs: product questions, concepts, comparison, migration, editor support, or cloud features.
  2. Onboarding: no Glubean project yet; the user needs extension, MCP, cookbook, or project init guidance.
  3. Project: the user is already in a Glubean project, or clearly wants to do real project test work, including migration from existing API assets.

Route first

Before choosing a mode:

  • Check for package.json, config/, schemas/, contracts/, tests/, explore/, .env, .env.secrets, and GLUBEAN.md.
  • Check whether @glubean/sdk is already present in dependencies or devDependencies.
  • Check whether MCP tools are available.
  • If GLUBEAN.md exists, read it first as the project's context file.
  • Users should keep key context there, including pointers to relevant code, docs, specs, and sibling workspaces.
  • If the user explicitly provides additional context locations, read those too before guessing from the API alone.

Then route by intent plus environment:

Intent examples

  • Docs

- "What is Glubean?" - "How does Glubean compare to Postman?" - "How do I run tests in CI?" - "How do I migrate from Postman?" (answer from patterns/migration.md)

  • Onboarding

- "Set up Glubean for my project" - "I want to try Glubean" - "Configure MCP for Cursor"

  • Migration (cross-cutting — execution requests, ask before routing)

- "Migrate our Postman collection" - "Convert our Apifox or OpenAPI export" - "Port these old API tests into Glubean" - → Ask: "Set up a new Glubean project for this, or add to the current one?" - → New project → Onboarding → init → migration pattern - → Current project → Project → test-after → migration pattern

  • Project — simple mode (default, test-after)

- "Write smoke tests for /users" - "Improve my test coverage" - "Fix this failing test" - "Add auth boundary tests" - → Use test() in explore/ or tests/

  • Project — contract-first mode (advanced, structured spec)

- "I need a users API with CRUD" - "Design the billing endpoint before I implement it" - "Write contracts for my API" - "What's my contract coverage?" - "Generate a projection report" - → Use contract.http() / contract.flow() in contracts/ - → Only if user explicitly asks for contracts, or project already has contracts/

Global rules

Apply these unless project-specific instructions override them:

  1. Secrets go in .env.secrets; public config goes in .env. For multi-environment setup, read references/patterns/multi-env.md.
  2. Use configure() to create shared HTTP clients, then use the exported client (e.g. api) in tests — not ctx.http. ctx.http is only for scratch demos.
  3. Use {{KEY}} for env and secret interpolation, bare strings for literals.
  4. Put tags on every test.
  5. Use builder mode when a test needs teardown or multi-step state passing.
  6. Use kebab-case test IDs, unique across the project.
  7. In real projects, keep reusable response types in types/. Inline them only for tiny throwaway examples the user explicitly asked for.
  8. Do not use .json<any>(). If response shape is still unknown, start with .json<unknown>(). Use Record<string, unknown> only when you already know the top-level value is an object. Then narrow to a real type or Zod as soon as fields are known.
  9. In real projects, keep reusable Zod schemas in schemas/. Inline them only for tiny throwaway examples the user explicitly asked for.
  10. Use test.each and test.pick only when every case exercises the same endpoint or the same operation pattern. If endpoints are unrelated, write separate exported tests. Test IDs must include a $field or $_pick placeholder so each case gets a unique ID at runtime (e.g. "search-$q", "user-$_pick").
  11. Auth configuration requires explicit user confirmation. Before writing any auth code, present your reasoning (strategy, header names, secret names, source of evidence) and wait for the user to confirm or correct. Do not silently configure auth.
  12. If core project structure is missing, do not hand-create the scaffold. Prompt the user to run npx glubean@latest init.
  13. When the user confirms a project-level decision (auth strategy, context location, naming convention, business rule), suggest adding it to GLUBEAN.md so future sessions pick it up.
  14. Use GLUBEAN.md for project-level business rules, role/state semantics, and naming decisions. Do not hand-maintain endpoint matrices, status tables, request/response shapes, or case inventories there; those belong in contracts/ and should be surfaced via projection or Cloud.

For detailed navigation, start with references/index.md.

For migration inside a real project, read references/patterns/migration.md before generating files.

If $ARGUMENTS is provided, treat it as the target endpoint, file, tag, or natural-language test request.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.28%
按下载量换算84

Claude

31.95%
按下载量换算72

Cursor

19.01%
按下载量换算43

Gemini CLI

9.55%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills