Token导航 LogoToken导航TokenDH.com
运维和基础设施权限需确认github未标认证来源可访问clear审计未展示

graphitegraphite 命令行

Agent Skill

graphite 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,517

周安装

107

GitHub Stars

297

下载量

882
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/kalbasit/ncps --skill graphite

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 等协作信息。

  • 适用于围绕仓库状态、代码变更或协作事项进行整理的场景。
  • 通过 GitHub 安装,支持 Codex、Claude、Cursor 和 Gemini CLI 等宿主环境。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • 具体用法需结合来源仓库 README 进一步核验,确保符合实际使用需求。

SKILL.md

Graphite (gt) Skill

This skill provides instructions for navigating branches and restacking stacks using Graphite (gt).

Core Principles

  1. Strictly Prohibited: NEVER run gt ss, gt submit, or gt squash. These commands are forbidden.
  2. Navigation: Use gt commands to move between branches in a stack.
  3. Maintenance: Use gt restack for local stack maintenance and gt get or gt sync for syncing from remote.

Branch Navigation

Use these commands to navigate through a stack of branches:

CommandAction
gt upMove to the branch immediately above the current one in the stack.
gt downMove to the parent of the current branch.
gt prevMove to the previous branch in the stack, as ordered by gt log.
gt nextMove to the next branch in the stack, as ordered by gt log.
gt topMove to the tip branch of the current stack.
gt bottomMove to the branch closest to trunk in the current stack.
gt lsDisplay all tracked branches and their dependency relationships in a short format.

Stack Management

Maintain your stack with these commands:

CommandAction
gt restackEnsure each branch in the current stack has its parent in its Git commit history, rebasing if necessary. This maintains the local stack and does NOT reach out to upstream.
gt getSync a specific branch or stack from remote (trunk to branch). If no branch is provided, it syncs the current stack.
gt syncSync all branches (including trunk) from remote and prompt to delete merged branches.

Branch Management

Use these commands to manage branches within your stack.

CommandAction
gt create <branch-name>Create a new branch with the given name and stack it on top of the current one. Always follow the /gt-create workflow.
gt moveRebase the current branch onto a target branch and restack descendants. Use --onto <target-branch> to avoid interactive mode.
gt splitSplit the current branch into multiple branches. This command is highly interactive.

Commit Management

Use gt modify to manage commits within your stack. It automatically restacks descendants.

CommandAction
gt modify --amendAmend the head commit of the current branch.
gt modify -cCreate a new commit on the current branch. Preferred for adding new changes while keeping history clean.

Dealing with Interactivity

Many Graphite commands (gt modify, gt move, gt split, gt restack) are interactive by default, opening selectors, editors, or specialized menus.

  • For the Agent: Avoid using these commands in an interactive way. If a command requires user input that cannot be provided via flags (e.g., resolving complex rebase conflicts), stop and notify the user.
  • Rebase Conflicts: If gt restack or gt move hits a conflict, Graphite will pause. Follow these steps to resolve:

1. Locate Conflicts: Use git status or look at the error output to identify files with merge conflicts. 2. Edit Files: Open the conflicting files and resolve the merge markers (<<<<<<<, =======, >>>>>>>). Ensure the code is functionally correct and includes necessary changes from both sides. 3. Stage Changes: Run gt add -A (or git add <file>) to mark the conflicts as resolved. 4. Continue: Run gt continue to resume the restack process. IMPORTANT: NEVER use git rebase --continue as Graphite tracks its own state. 5. Verify: Once the restack completes, run tests to ensure the merged state is stable.

  • Interactive Selectors: Prefer providing explicit branch names or flags (like --onto for gt move) to avoid interactive selectors.

Common Fixes & Lessons

Using Graphite over Git

The Problem: Using standard git commit or git commit --amend fails to update Graphite's internal stack metadata and does not trigger automatic restacking of descendants. This can lead to a desynchronized stack where Graphite is unaware of the new commits or changes.

The Solution: Always prefer gt commands over their standard git counterparts for commit and branch management.

  • Creating a new branch: Use gt create <branch-name> instead of git checkout -b <branch-name>.
  • Creating a new commit: Use gt modify -c -m "message" instead of git commit -m "message".
  • Amending a commit: Use gt modify --amend instead of git commit --amend.
  • Staging and committing everything: Use gt modify -cam "message" instead of git commit -am "message".

Benefits:

  1. Metadata Integrity: Graphite keeps its internal view of the stack consistent.
  2. Automatic Restacking: Descendant branches are automatically updated if you change a parent branch.
  3. Visual Clarity: Graphite's CLI output stays accurate and helpful.

Misplaced Commits

If you accidentally commit a change to the wrong branch in a stack:

  1. Stash uncommitted changes: If you have uncommitted work, git stash to keep it safe.
  2. Move the change to a new branch (if the commit belongs in its own new branch):

1. gt create <new-branch> to safely move the head. 2. gt down to move back to the parent. 3. git reset --hard HEAD~1 (Safe now because the commit is preserved in the new branch).

  1. Move to an existing branch:

1. git reset HEAD~1 (Soft reset to keep changes in the working tree). 2. gt down/gt up to the target branch. 3. gt modify -c or gt modify --amend to incorporate the changes.

  1. Restore stashed changes: git stash pop to resume your work.
  2. Repair the stack: Move back to the tip and run gt restack to ensure all descendant branches are updated with the parent's new state.

Prohibited Commands

[!CAUTION] DO NOT use the following commands under any circumstances: - gt ss - gt submit - gt squash

These commands are strictly forbidden to ensure that PR submission, updates, and branch squashing are handled manually or through specified workflows.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

30.03%
按下载量换算265

Cursor

22.79%
按下载量换算201

OpenCode

16.72%
按下载量换算147

Codex

11.46%
按下载量换算101

github-copilot

7.74%
按下载量换算68

windsurf

2.9%
按下载量换算26

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills