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

driftdrift 问题管理

Agent Skill

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

总安装

336

周安装

14

GitHub Stars

49

下载量

112
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

drift 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息定位的场景。
  • 通过关键词搜索和来源线索筛选目标信息。
  • 安装命令:npx skills add https://github.com/fiberplane/drift --skill drift。
  • 建议确认权限范围和维护状态后再使用。

SKILL.md

Drift

drift binds markdown docs to code and lints for staleness.

Why this matters for agents

When you change code without updating the docs that describe it, those docs become stale. Stale docs get loaded as context in future sessions and produce wrong code based on wrong descriptions. This compounds — each session that trusts a stale doc makes things worse. drift makes the anchor explicit and enforceable so this feedback loop breaks.

Relink gate

drift link refuses to restamp a stale anchor without explicit review. When a target's signature has drifted, drift link prints both sides — the doc section (spec) and the current code — then exits 1.

This means you cannot blindly relink. You must review the doc prose and confirm it is still accurate. Use:

drift link docs/auth.md --doc-is-still-accurate

After you change code

Find which docs reference the files you touched:

drift refs src/auth/login.ts

Or check all docs at once:

drift check

If a doc is stale because of your change:

  1. Run drift link <doc-path> — it will print the doc section and current code side by side, then refuse
  2. Read both sides to understand what's out of sync
  3. Update the doc's prose to reflect what you changed
  4. Run drift link <doc-path> --doc-is-still-accurate — succeeds now that you've reviewed
  5. Verify: drift check

Do not skip this. Leaving a doc stale is worse than leaving it unwritten.

After you change a doc

Refresh all anchors in the doc to snapshot current state:

drift link docs/my-doc.md

This updates provenance on all bindings in drift.lock for that doc, including inline @./ references.

When you create new code

If the new code is covered by an existing doc, add an anchor:

drift link docs/auth.md src/auth/new-handler.ts

If the new code deserves its own doc, write one and link it:

drift link docs/new-feature.md src/feature/index.ts
drift link docs/new-feature.md src/feature/types.ts#Config

When you delete or rename code

If a bound file is deleted or renamed, drift check will report it as STALE with "file not found". Remove the stale anchor:

drift unlink docs/auth.md src/auth/old-handler.ts

If you renamed the file, unlink the old path and link the new one:

drift unlink docs/auth.md src/auth/old-name.ts
drift link docs/auth.md src/auth/new-name.ts

Update the doc prose to reflect the rename.

When you refactor

Refactors that move code between files or rename symbols can break multiple docs at once. Run drift check after refactoring to find all affected docs, then update each one.

When drift check fails in CI

Someone changed bound code without updating docs. Read the lint output to see which docs are stale and why, update the doc prose, then drift link to refresh provenance.

Anchor syntax

Bindings in drift.lock:

docs/auth.md -> src/auth/login.ts sig:a1b2c3d4e5f6a7b8
docs/auth.md -> src/auth/provider.ts#AuthConfig sig:c3d4e5f6a7b8a1b2
docs/overview.md -> docs/auth.md#authentication sig:b3c4d5e6f7a8b9c0

Anchors can target code files, code symbols (file#Symbol), or doc headings (doc.md#heading-slug). Heading fragments use GitHub-style slugs (lowercase, hyphens).

drift link writes bindings to drift.lock with content signatures (sig:<hex>). Content signatures are AST fingerprints of the target, so staleness detection works without querying VCS history. This means drift link works on uncommitted files — no need to commit first.

When relinking a stale anchor, drift link refuses and prints both sides (doc section and current code) so you can review the change. Pass --doc-is-still-accurate to confirm the doc doesn't need updates.

drift lint also checks all markdown links ([text](path.md)) in drift-managed docs for existence — broken links are reported as BROKEN without needing a lockfile entry.

Cross-repo docs (origin)

Docs installed from other repos (like this skill) carry origin: on their bindings in drift.lock so drift check skips their anchors in consumer repos. If you're writing a doc that will be distributed to other repos, add origin to prevent false positives:

docs/skill.md -> src/main.ts sig:a1b2c3d4e5f6a7b8 origin:github:your-org/your-repo

Staleness

drift check reads bindings from drift.lock and exits 1 if any anchor is stale. Use drift check --changed <path> to scope checking to docs whose targets match a given path prefix — useful in CI when you know which files changed. For supported languages (TypeScript, Python, Rust, Go, Zig, Java), comparison is syntax-aware — formatting-only changes won’t trigger staleness. Stale reports include git blame-style context (who last touched the line of interest, which commit, subject) so you can see what changed.

For --format json, the payload is schema_version: drift.check.v1 (see the repo’s docs/check-json-schema.md). There, blame.date is the committer date in ISO 8601 strict form, not author date — use it when you need a stable time ordering after rebases. The summary includes verification_state (none | partial | full) describing how many docs were actually checked versus skipped (e.g. origin mismatch).

Reasons:

  • changed after doc — file/symbol content differs from provenance snapshot
  • file not found — bound file no longer exists
  • symbol not found — bound symbol no longer exists in the file

drift lint is an alias for drift check.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.8%
按下载量换算40

Claude

30.61%
按下载量换算34

Cursor

20.66%
按下载量换算23

Gemini CLI

10.63%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills