Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

gitwhy-context-savinggitwhy 上下文保存

Agent Skill

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

总安装

675

周安装

29

GitHub Stars

公开资料未说明

下载量

237
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gitwhy-cli/gitwhy --skill gitwhy-context-saving

简介

gitwhy-context-saving 用于查找、检索和筛选相关信息,适合在关键词或任务场景下快速定位候选结果。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境中的研究检索任务。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

GitWhy — Context Layer for Git

Save, retrieve, and share the reasoning behind AI-generated code — tied to commits.

Workflows: See WORKFLOWS.md for when/how to save, retrieve, and push. Troubleshooting: See TROUBLESHOOTING.md for common errors and diagnostics.

Two Ways to Use GitWhy

GitWhy works via MCP tools (if available) or CLI commands (always available). Both are equivalent — use whichever works in your environment.

MCP ToolCLI CommandPurpose
gitwhy_statusgit why logCheck saved contexts and pending commits
gitwhy_savegit why save --file context.mdSave structured context
gitwhy_getgit why get <id>Retrieve context by ID
gitwhy_searchgit why search "query"Search contexts with hybrid full-text search (ranked results with snippets)
gitwhy_listgit why tree / git why logBrowse domain/topic structure
gitwhy_syncgit why push <context-id>Upload to cloud (private)
gitwhy_publishgit why push <context-id> --shareShare with team
gitwhy_post_prgit why post-pr [context-id...]Post to GitHub PR

MCP fallback rule: If an MCP tool fails or is unavailable, inform the user and use the equivalent CLI command instead. Every MCP operation has a CLI equivalent.

Context Format (XML Input)

When saving context, wrap content in <context> XML tags. The CLI renders this into rich markdown for storage.

<context>
  <!-- Required -->
  <title>Short title of what was done</title>
  <story>
    Organize by phases. Write in first-person engineering journal style.

    Phase 1 — Setup:
    What user asked, what you did, challenges faced, how you resolved them.
    Include back-and-forth with the user where it shaped the outcome.

    Phase 2 — Implementation:
    Technical details, decisions made during coding, problems solved.
  </story>
  <reasoning>
    Why you chose this approach.

    <decisions>
      - RS256 over HS256 — allows key rotation without redeploying
      - 24h token expiry — balances security vs UX
    </decisions>

    <rejected>
      - Session cookies — requires server-side session store
      - OAuth2 external provider — overkill for internal service
    </rejected>

    <tradeoffs>
      - No refresh tokens in v1 — simplifies MVP but means 24h hard limit
    </tradeoffs>
  </reasoning>
  <files>
    src/auth/middleware.ts — new — Token verification middleware
    src/routes/login.ts — modified — Added token signing on login
    package.json — modified — Added jsonwebtoken dependency
  </files>

  <!-- Optional -->
  <agent>claude-code (claude-opus-4)</agent>
  <tags>auth, jwt, middleware</tags>
  <tools>MCP: nia, sequential-thinking</tools>
  <verification>All 14 tests passing. Build successful.</verification>
  <risks>No rate limiting on login endpoint yet.</risks>
</context>

Tag Requirements

TagRequiredNotes
<title>YesShort title of the work done
<story>YesPhase-organized engineering journal. First-person, chronological.
<reasoning>YesWhy this approach. Nest <decisions>, <rejected>, <tradeoffs> inside.
<files>YesOne per line. Flexible format: path — status — desc or just path
<agent>OptionalAgent name and model
<tags>OptionalComma-separated keywords for discovery
<tools>OptionalMCPs, CLI tools, resources used
<verification>OptionalTest results, build status
<risks>OptionalOpen questions, follow-up items

Context ID, repository, branch, date, domain/topic, and commits are auto-populated by the CLI.

Quick Start

  1. Check status: gitwhy_status (MCP) or git why log (CLI)
  2. Developer says: "Save this session with GitWhy"
  3. You generate context in <context> XML tags using the template above
  4. Save context:

- MCP: Call gitwhy_save(markdown="<context>...</context>") - CLI: Write content to file, then run git why save --file context.md - CLI (pipe): echo '<context>...</context>' | git why save

  1. GitWhy parses XML, renders rich markdown, generates context ID, stores locally
  2. Context ID is returned — use it for retrieval later

To retrieve past context:

  • By ID: gitwhy_get(id="ctx_a1b2c3d4") or git why get ctx_a1b2c3d4
  • By search: gitwhy_search(query="authentication") or git why search "auth" — supports repo, domain, and limit filters
  • Browse tree: gitwhy_list() or git why tree

To share with team:

  • Sync to cloud: gitwhy_sync or git why push <context-id>
  • Publish: gitwhy_publish(ids=...) or git why push <context-id> --share
  • Post to PR: gitwhy_post_pr or git why post-pr [context-id...]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.5%
按下载量换算91

Claude

29.13%
按下载量换算69

Cursor

17.14%
按下载量换算41

Gemini CLI

8.96%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/gitwhy-cli/gitwhy --skill gitwhy-context-saving 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills