Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

refinerefine 搜索

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

2

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

refine 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于研究类任务中的信息搜集和线索筛选,可结合来源仓库进一步验证功能细节。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和是否触发联网或文件读写操作。
  • 建议在使用前检查仓库维护状态和技能的实际功能边界,避免依赖未经验证的输出结果。
  • refine 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Refine

Review this session. Identify patterns worth capturing as new skills, improvements to existing skills, or additions to CLAUDE.md.

Step 1: Scan the session

Identify what happened:

  1. Which skills were invoked (look for <command-name> tags) or created?
  2. What corrections did the user make? These are the most valuable signals.
  3. What workflows were repeated?
  4. What preferences or conventions emerged?

Step 2: Evaluate the skills

If skills were created or edited this session, they're already in your context — no need to re-read them. Evaluate what you already have. If skills were used but not edited, read the actual SKILL.md files to see their current state. Check these locations:

ls -la ~/.claude/skills/ 2>/dev/null
ls -la ~/.agents/skills/ 2>/dev/null
ls -la .claude/skills/ 2>/dev/null
ls -la .agents/skills/ 2>/dev/null
ls -la ~/.refined/ 2>/dev/null

Check the locations your current agent actually discovers. For Codex, user skills live in ~/.agents/skills and repo skills in .agents/skills. For Claude-style setups, look at ~/.claude/skills and .claude/skills. For each skill, whether from context or from reading, evaluate:

  • Is the description specific enough to trigger correctly?
  • Are the instructions clear and complete based on how the skill was actually used?
  • Did the session reveal gaps, edge cases, or missing steps?
  • Are references to other files/skills correct? Check ownership before editing:
  • Symlink → ~/.refined/: yours to refine
  • Symlink → a plugin dir or managed install: read-only (updates would overwrite)
  • Regular file in ~/.claude/skills/ or .claude/skills/: yours to refine
  • Regular file in a repo .agents/skills/: repo-owned; edit it in that repo
  • Entry in ~/.agents/skills/: inspect the target first. Treat it as a discovery surface, not the source of truth. If it points to ~/.refined/, edit the target in ~/.refined/. If it points into a plugin cache or managed install, do not edit it. Also read the project's CLAUDE.md (and ~/.claude/CLAUDE.md if relevant). Check whether what happened in this session — tool preferences, conventions, corrections — is reflected there or should be.

Step 3: Decide

After evaluating skills and CLAUDE.md, ask three questions: Existing skills — for each one you read:

  • Does the description match how it was actually used? If not, fix it.
  • Did the session expose missing instructions, wrong assumptions, or incomplete steps?
  • Did the user correct something the skill should have known? New skills — be proactive. If you identify a workflow worth capturing, create it. Don't just mention it as a possibility and move on.
  • Was there a workflow that could bring value in future sessions? Create the skill. You don't need to see it repeated twice — once is enough if it's clearly reusable.
  • Was there hard-won knowledge (debugging, research) worth preserving?
  • Was there a multi-step process the agent performed that could be codified? CLAUDE.md — for behavioral instructions, not workflows:
  • Did the user correct a general behavior (not tied to a specific workflow)?
  • Is there a tool preference, communication style, or project convention worth persisting?
  • Examples: "always use uv", "don't ask before committing", "use rip instead of rm"
  • Prefer skills over CLAUDE.md for anything that's a multi-step workflow. CLAUDE.md is for preferences and rules; skills are for procedures. What does NOT go in CLAUDE.md or skills:
  • Project-specific facts or implementation decisions ("we use h-dvh not h-screen", "auth uses Better Auth") — these are documentation or memory, not rules.
  • Change-log entries ("fixed X by switching to Y") — git history covers this.
  • Generic engineering advice ("investigate root causes") — too obvious to be a useful rule. The test: if it tells you WHAT to do in a situation, it's a rule (CLAUDE.md). If it tells you what IS, it's a fact (docs/memory). Only rules go in CLAUDE.md. Choose the right file:
  • User CLAUDE.md (~/.claude/CLAUDE.md): who the user is and how they work across all projects — tool preferences, communication style, secret handling, memory conventions
  • Repo CLAUDE.md (CLAUDE.md or .claude/CLAUDE.md): how this specific codebase works — stack, commands, validation, deploy, commit conventions If it would be useful in a different repo, it belongs in user CLAUDE.md. If it only makes sense for this project, it belongs in repo CLAUDE.md. Your default stance should be to create or improve something. Most sessions contain at least one workflow, preference, or piece of knowledge worth capturing. "Nothing to refine" is valid but should be rare — it means you genuinely found no reusable workflow, no skill to improve, and no CLAUDE.md update needed. Constraints: max 2 skills touched per refine, max 1 new skill per refine.

Step 4: Edit

Skills

Refining an existing skill: first ls -la to check if it's a symlink.

  • Symlink to ~/.refined/ → edit the target file in ~/.refined/
  • Symlink to a plugin dir or managed install → do NOT edit (read-only — managed externally)
  • Regular file in ~/.claude/skills/, .claude/skills/, or repo .agents/skills/ → edit in place
  • Entry in ~/.agents/skills/ → inspect the target first; if it points to ~/.refined/, edit ~/.refined/, not the discovery link Creating a new skill: ask the user which scope:
  • User skill — useful across all projects. Write to ~/.refined/<name>/SKILL.md, then symlink it into each discovery surface the user actually uses (~/.claude/skills/<name> for Claude-style setups, ~/.agents/skills/<name> for Codex/shared user installs).
  • Local/repo skill — specific to the current project. Write to the repo's skill location (.claude/skills/<name>/SKILL.md for Claude-style repos, .agents/skills/<name>/SKILL.md for Codex/shared repos). Before committing the name, check for clashes:
# Ensure no plugin or external skill already uses this name
grep -q '"<name>' ~/.claude/plugins/installed_plugins.json 2>/dev/null && echo 'CLASH: plugin exists'
ls ~/.agents/skills/<name> 2>/dev/null && echo 'CLASH: npx skill exists'

If a clash is found, pick a more specific name (e.g. personal-<name>).

CLAUDE.md

Always ask before editing CLAUDE.md. Show the proposed change and ask the user to confirm.

  • Append by default. Updating existing entries is acceptable when they're stale or wrong — but always ask first.
  • Keep additions concise (1-3 lines per entry)
  • File choice is covered in Step 3 above (user vs repo CLAUDE.md)

Why refine doesn't touch externally managed skills

Two categories of skills are read-only: Plugin skills (invoked as plugin:skill) — namespaced and versioned by their plugin.

  • Editing in place breaks on update.
  • Copying creates ambiguity — user skill names can't contain colons, so a copy of roborev:fix would need a different name. Two similar skills, agent doesn't know which to pick. Skills installed via npx skills add — managed by the vercel-labs/skills CLI, typically symlinked from .agents/skills/.
  • npx skills update would overwrite your changes.
  • These are designed to be shared across agents (Claude, Cursor, Cline, etc.). The ideal future: everyone starts from base skills that get better for their personal use over time. That needs skill override support at the platform level. For now, if an external skill needs improving: contribute upstream or fork. Note: ~/.refined/ is itself a valid source for npx skills add ~/.refined — so refined skills can be shared with other agents or users.

Step 5: Link, track, and commit

For each new or modified skill, ask the user whether to git track it (default: yes for user skills, no for local/repo skills). User skills (written to ~/.refined/):

# Claude-style discovery
ln -sfn "$HOME/.refined/<name>" "$HOME/.claude/skills/<name>"

# Codex/shared user-level discovery
mkdir -p "$HOME/.agents/skills"
ln -sfn "$HOME/.refined/<name>" "$HOME/.agents/skills/<name>"

# Optional: if the user also wants repo-local/shared discovery, add a repo `.agents/skills`
# entry separately. Don't confuse that with the user-level `~/.agents/skills` link above.

# If git-tracked:
git -C "$HOME/.refined" add <name>/ && git -C "$HOME/.refined" commit -m "refine: <what changed and why>"

Local/repo skills (written to the repo's skill directory):

# Commit in the project repo if the user wants
git -C <project-root> add <repo-skill-dir>/<name>/ && git -C <project-root> commit -m "refine: <what changed and why>"

Existing skills (edited in place): commit in whichever repo the file belongs to.

Skill file format

---
name: skill-name
description: >
  What this skill does. Be specific — this description decides when
  the skill triggers, so vague descriptions mean it never gets used.
allowed-tools:
  - Read
  - Edit
  # only what the skill actually needs
---

The body is the prompt Claude receives when the skill is invoked. Write it as direct instructions.

Memory files are out of scope

Some users have auto-memory systems (persistent file-based memory). Refine does NOT touch memory files. The persistence hierarchy is:

  • Skills → reusable workflows and procedures
  • CLAUDE.md → behavioral rules and project conventions
  • Memory files → contextual facts, user profile, project state (managed by the memory system, not refine) If something looks like a fact to remember rather than a rule to follow or a workflow to codify, it's not refine's job.

Constraints

  • Max 2 skills touched per refine. Max 1 new skill per refine.
  • A skill should be under 200 lines. Longer means it's doing too much.
  • Prefer refining an existing skill over creating a new one.
  • Never edit externally managed skills (plugins, npx skills installs) — they get overwritten on update.
  • Always check symlink targets before editing — don't follow symlinks into plugin dirs or .agents/skills/.
  • Don't create skills for truly one-off tasks (e.g. "fix this specific bug"). But if a workflow could plausibly be useful again, create the skill — don't wait for proof of recurrence.
  • Don't capture things obvious from reading code or CLAUDE.md.
  • Always ask before editing CLAUDE.md. Append by default; updates to stale entries are OK with user confirmation.

Output

One-line summary of what you did (or "nothing to refine").

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.17%
按下载量换算22

Claude

29.47%
按下载量换算19

Cursor

19.75%
按下载量换算12

Gemini CLI

8.75%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills