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

git-wikigit 维基

Agent Skill

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

总安装

539

周安装

22

GitHub Stars

1

下载量

172
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yysun/awesome-agent-world --skill git-wiki

简介

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

  • 适用于需要维护项目文档、归档技术决策或构建知识库的场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加,需结合原始 README 了解具体调用方式。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • git-wiki 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Project Wiki

Maintain a local wiki for a code project under .wiki.

Source of truth is always the current git-tracked repository files at HEAD, including tracked documentation in .docs/ and docs/, not the wiki. The wiki files themselves may be untracked; read and update the live .wiki/ contents from the working tree when present.

Rules

  • Operate only on git-tracked files and git history
  • Ignore staged and unstaged uncommitted changes; ingest and query verification use committed content at HEAD only
  • Exclude .wiki/** from git-based source selection
  • Do not assume .wiki/** is git-tracked; use the current .wiki/index.md checkpoint when it exists
  • Every wiki page must have YAML frontmatter
  • .wiki/index.md must be updated on every ingest
  • Do not ask the user before ingesting

Wiki Layout

Required:

  • .wiki/index.md — master catalog (tracks last ingest commit)

Optional (create as needed):

  • .wiki/features/ — one page per significant feature, module
  • .wiki/bug-fixes/ — one page per notable bug fix or patch
  • .wiki/concepts/ — cross-cutting ideas and patterns
  • .wiki/entities/ — data models, schemas, types
  • .wiki/flows/ — sequences, pipelines, request lifecycles
  • .wiki/notes/ — ad-hoc or open questions

Page Conventions

index.md frontmatter

index.md carries extra fields to track ingest state:

---
title: "Project Wiki"
type: "index"
status: "active"
last_commit: "<full-sha>"
updated_at: "YYYY-MM-DD"
---

last_commit is the full git commit SHA at the time of the most recent full-repository ingest. This checkpoint lives in the current .wiki/index.md file whether or not .wiki/ is git-tracked. On the next ingest, prefer this saved last_commit to find changed files with git diff --name-status -M <last_commit> HEAD.

If git metadata is unavailable, do not fall back to filesystem scanning. Ingest and lint are unavailable until git access works again.

Other pages

---
title: "Page Title"
type: "feature|bug-fix|concept|entity|flow|note"
status: "draft|active|stale"
source_paths: []
updated_at: "YYYY-MM-DD"
---

Use status: "stale" when the source file has changed significantly since the page was last updated, or when the page describes something that no longer exists. During ingest, pages whose source_paths changed since last_commit should be updated or marked stale. Do not delete stale pages automatically — mark them and note the drift so the user can decide.

Page naming

  • Use lowercase, hyphenated filenames: auth-middleware.md, user-schema.md
  • Mirror the source path when making feature pages: src/api/routes.ts.wiki/features/src-api-routes.md
  • Use descriptive names for concepts and flows: .wiki/concepts/request-lifecycle.md

Wiki links

Use [[page-slug]] links between pages whenever a page references something covered on another page. The target should match the destination filename without the .md extension. This makes the wiki navigable and lets lint resolve links deterministically.

Ingest

Trigger on:

  • ingest
  • ingest [file]
  • ingest [folder]
  • refresh wiki
  • update wiki

Workflow:

  1. Read .wiki/index.md from the working tree if it exists, even when .wiki/ is untracked — note last_commit from frontmatter

- Missing .wiki/index.md or a missing last_commit means there is no prior ingest checkpoint

  1. Run git rev-parse HEAD to get the current HEAD commit SHA
  2. Detect changed files:

- If last_commit is set: git diff --name-status -M <last_commit> HEAD and exclude .wiki/** - Use the saved last_commit even if the wiki is untracked; do not treat an untracked .wiki/ as a fresh ingest from HEAD - Use the git status codes to distinguish added, modified, deleted, and renamed paths when updating wiki pages - If no prior ingest: build a broad ingest candidate set from git ls-files at HEAD, excluding .wiki/** (see Ingest Priorities below)

  1. Resolve scope:

- If a file or folder is specified, prioritize it — limit the tracked candidate set to that scope - For a scoped ingest, do not advance .wiki/index.md:last_commit unless the scoped ingest also covers every file changed since last_commit - Otherwise ingest changed files first, then fill in missing coverage

  1. Read relevant tracked repository files — understand their role
  2. Update or create wiki pages under .wiki/
  3. Mark pages for deleted source files as status: "stale" with a note in the page body, and update moved or renamed pages based on rename information from git
  4. Update .wiki/index.md:

- Always set updated_at to today - Set last_commit to the current HEAD SHA only after a full ingest or after processing the complete changed-file set from the previous last_commit - If a broad ingest stops early after partial coverage, leave last_commit unchanged and note in index.md that bootstrap coverage is still partial - Never discard an existing saved last_commit merely because .wiki/ is untracked

Ingest is automatic. Do not ask the user for confirmation.

If git commands fail, report that the wiki skill cannot ingest until git access is restored. Do not substitute directory walking.

Ingest Priorities

When doing a broad ingest from git-tracked files, work in this order and stop when you have good coverage (typically 10–20 pages for a medium project):

  1. Root readme and tracked documentation under .docs/ and docs/
  2. Package/build/workspace config (package.json, pyproject.toml, Cargo.toml, etc.)
  3. Entry points (main.ts, index.ts, app.py, cmd/, etc.)
  4. Core features and shared utilities → .wiki/features/
  5. API definitions, schemas, and persistence layers → .wiki/features/ or .wiki/entities/
  6. Notable bug fixes visible in git history → .wiki/bug-fixes/
  7. Jobs, queues, background workers → .wiki/features/
  8. UI structure (if present) → .wiki/features/
  9. Tests (summarize patterns, don't document every test file)
  10. Cross-cutting concepts, entities, and flows worth capturing

For large repos (100+ files), focus on depth over breadth: deeply document the 10 most important modules rather than shallowly touching 50.

Query

When asked a project question:

  1. Read .wiki/index.md if it exists
  2. Read relevant wiki pages if they exist
  3. If the wiki is missing, the relevant page is missing, or a page is marked stale, verify directly against git-tracked repository source before answering
  4. Prefer tracked documentation in .docs/ and docs/ when it is relevant to the question, then confirm against code or config when needed
  5. Verify against git-tracked repository source when the answer involves specific values (counts, names, configs)
  6. Answer with a concise explanation and [[wiki-link]] citations when relevant wiki pages exist
  7. If you created new understanding not yet in the wiki, mention it — the user can ask you to save it

Lint

Trigger on:

  • lint
  • lint wiki
  • check wiki

Checks:

  • Contradictions between pages (two pages making conflicting claims)
  • Orphan pages with no inbound [[links]]
  • Concepts mentioned across multiple pages but lacking their own page
  • Stale pages (status: "stale") that may have drifted from current source
  • Missing coverage for major changed modules (files changed since last_commit with no wiki page)
  • Broken [[wiki-links]] where the target page doesn't exist

Lint Output Format

## Wiki Lint Report — YYYY-MM-DD

### Errors
- [page] description of contradiction or broken link

### Warnings
- [page] description of potential issue

### Suggestions
- description of missing coverage or improvement

### Next Questions
- open questions worth investigating

Do not auto-fix unless explicitly asked.

Writing Guidance

  • Summarize; do not reproduce large code blocks — a few lines of example code is fine, but explain patterns rather than paste implementations
  • Use concrete file paths as anchors (src/api/routes.ts:42)
  • Separate facts (directly read from source) from inferences (your interpretation)
  • Cross-link related pages with [[wiki-links]]
  • Keep pages under ~500 words; create additional pages rather than growing one page long
  • Prefer useful coverage over exhaustive coverage — a good wiki is navigable, not encyclopedic

Quality Bar

The wiki succeeds when:

  • .wiki/index.md helps a new reader navigate the project in under 2 minutes
  • Answers can start from wiki pages and be verified in code
  • Ingest detects changed files automatically using the saved last_commit
  • Lint catches drift before the wiki becomes misleading

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.34%
按下载量换算57

Claude

30.46%
按下载量换算52

Cursor

20.43%
按下载量换算35

Gemini CLI

8.67%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills