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

webup-statuslinewebup 状态行

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

3

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/webup/skills-cc --skill webup-statusline

简介

用于处理 GitHub 仓库状态和协作流程管理。

  • 适合跟踪 Issue、Pull Request 等事项的进展。
  • 支持代码变更信息的汇总与可视化展示。webup-statusline 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 从指定仓库安装并参考原始 README 文档配置使用。
  • 注意权限范围及是否允许修改文件或执行命令。

SKILL.md

Status Line Generator

Generate a custom Claude Code status line script with your choice of columns and a color theme. Installs directly to ~/.claude/settings.json.

How It Works

Claude Code supports custom status lines via a shell script configured in ~/.claude/settings.json. The script receives session JSON on stdin (model, context window, workspace, vim, worktree, etc.) and prints formatted text to stdout.

This skill generates a bash script tailored to your preferences and installs it automatically.

Script Directory

Important: All scripts are located in the scripts/ subdirectory of this skill.

Agent Execution Instructions:

  1. Determine this SKILL.md file's directory path as SKILL_DIR
  2. Script path = ${SKILL_DIR}/scripts/<script-name>.mjs
  3. Replace all ${SKILL_DIR} in this document with the actual path

Script Reference:

ScriptPurpose
scripts/generate.mjsGenerate and install status line script from chosen options

Prerequisites

  • jq — required by the generated status line script to parse JSON input from Claude Code
  • Bun — required to run the generator. Use npx -y bun if not installed globally.

Usage

# Preview generated script
npx -y bun ${SKILL_DIR}/scripts/generate.mjs --elements model,context,effort,git,dir --theme gruvbox

# Generate and install
npx -y bun ${SKILL_DIR}/scripts/generate.mjs --elements model,context,effort,git,dir --theme dracula --install

Options

FlagDefaultDescription
--elements <list>model,context,cost,effort,style,git,dirComma-separated columns to display
--theme <name>gruvboxColor theme — see table below
--effort-icon <preset>arrow () for iconic themes, none otherwiseOverride the effort prefix icon. Presets: arrow, bolt, flash, reason, dot, none. A raw character is also accepted.
--installoffWrite script to ~/.claude/scripts/statusline.sh and update settings.json

Columns

ColumnDescriptionData source
modelActive model name (e.g. "Opus 4.7")model.display_name
contextProgress bar + percentage — color changes with remaining capacitycontext_window.remaining_percentage
costSession API spend formatted as $X.XX in gold — hidden when rounds to $0.00cost.total_cost_usd from input JSON
effortReasoning effort level — color changes with leveleffortLevel in ~/.claude/settings.local.json~/.claude/settings.json
styleOutput style name (e.g. Explanatory, Learning) — hidden when "default"output_style.name from input JSON
gitGit branch name (yellow when dirty)worktree.branch → git CLI
dirRepo basename (original repo when in a worktree)worktree.original_repo_dirworkspace.current_dir
worktreeBold worktree:<id> label (hidden outside a worktree)worktree.name → parent-dir basename via git CLI
vimVim mode indicator (hidden when inactive)vim.mode

Color-changing elements

context — bar fill + percentage color scale with remaining capacity:

RemainingColorMeaning
> 50%greenplenty of context
20–50%yellowwatch out
< 20%rednearly full — compact soon

effort — value + optional prefix icon color by level:

LevelColor
max, xhigh, highbold red
mediumyellow
low, xlow, minimalgreen
other / unsetdim (or hidden when completely unset)

Themes

ThemeVibeIcons rendered in bar
gruvboxWarm retro, muted model · effort · style · dir · worktree · git · vim
draculaModern dark, high saturation model · effort · style · dir · worktree · git · vim
robbyrussellClassic oh-my-zshno prefix icons — colors + labels only
minimalDefault terminal colorsno prefix icons — plain text

The context column intentionally skips a prefix icon — the colored progress bar is already visually rich. The effort prefix () is baked into iconic themes and can be overridden with --effort-icon.

Effort icons

Pass --effort-icon <preset> to swap the glyph in front of the effort value. Presets:

PresetGlyphNotes
arrowElectric arrow — default, narrow
boltϟGreek koppa — narrow lightning
flashClassic lightning — wide in emoji-presentation fonts
reasonTherefore
dotFilled circle
none(hidden)Drop the icon entirely

You can also pass any raw character as --effort-icon <char>.

Worktree behavior: When inside a git worktree (detected via the input JSON's worktree.* fields or via git rev-parse --git-common-dir fallback), the worktree column shows a bold worktree:<id> label using the parent dir name (e.g. ~/.codex/worktrees/46a6/clawmasterworktree:46a6). The git column prefers worktree.branch from the input JSON; the dir column prefers worktree.original_repo_dir so the repo identity stays stable across worktrees.

Invocation

This skill can be invoked with or without arguments:

  • No args (/webup-statusline): Interactive prompt via AskUserQuestion to pick columns and theme.
  • With args (/webup-statusline dracula): NLP parse for theme and column preferences.

Arg parsing (natural language)

The args string is free-form text. Use NLP to extract:

  1. theme — match against: gruvbox, robbyrussell, minimal, dracula. Recognize aliases (暗黑=dracula, 极简=minimal, 复古=gruvbox, レトロ=gruvbox).
  2. elements — look for mentions of: model, context/进度/コンテキスト, effort/推理强度/努力度, git/分支/ブランチ, dir/目录/ディレクトリ, worktree/工作树/ワークツリー, vim.

Unspecified fields use defaults: model,context,effort,git,dir columns, gruvbox theme.

Workflow

  1. If no args provided: Use AskUserQuestion to ask 2 questions in a single prompt. AskUserQuestion caps each question at 4 options, so offer curated presets for columns rather than an exhaustive toggle list. If the user picks "Other", interpret their free text as a comma-separated column list (or a natural-language description that maps to one). Q1 — Column preset (single): Which columns to display? Offer these 3 curated presets — AskUserQuestion will auto-append an "Other" option that lets the user type a free-text column list or description. If the user picks the auto-added "Other", treat their free text as a comma-separated column list, or as a natural-language description to map to columns. Fall back to Default if parsing is ambiguous. Q2 — Theme (single): Color theme? If args provided: Parse theme and columns from args. Skip the prompt.

- "Everything (Recommended)" — model,context,cost,effort,style,git,dir,worktree (all columns that have a useful signal today; vim is excluded because most users don't use vim keybindings) - "Default" — model,context,effort,style,git,dir (balanced — drops cost and worktree; matches the skill's default flag value) - "Essentials" — model,context,git,dir (lean; no effort, no style, no cost) - "Dracula" — modern dark, purple/pink/cyan (Recommended) - "Gruvbox Dark" — warm retro palette, 24-bit true color - "Robbyrussell" — classic oh-my-zsh style, no icons - "Minimal" — no decoration, dim separators only

  1. Map user selections to script flags:

- Column preset → expand to the preset's canonical --elements list: - Everythingmodel,context,cost,effort,style,git,dir,worktree - Defaultmodel,context,effort,style,git,dir - Essentialsmodel,context,git,dir - Other (auto-added by AskUserQuestion) → parse the user's free text; keep only recognized column names (model,context,cost,effort,style,dir,worktree,git,vim). If parsing is ambiguous, fall back to Default. - Theme → --theme value (one of gruvbox, dracula, robbyrussell, minimal)

  1. Run the generator with --install: npx -y bun ${SKILL_DIR}/scripts/generate.mjs --elements <list> --theme <theme> --install
  2. Tell user to restart Claude Code to see the new status line.

Output Examples

Dracula (all columns), remaining=49%, cost=$0.42, effort=high, output style=Explanatory, inside a worktree:

◈ Opus 4.7 | [■■■■■■■■■■□□□□□□□□□□] 51% | $0.42 | ↯ high | ❋ Explanatory | ⌂ clawmaster | ⊕ worktree:46a6 | ⎇ feat/xyz

(bar yellow — 49% remaining; $0.42 gold session spend next to the bar; effort "high" bold red; purple ❋ Explanatory sits between effort and dir; context carries no prefix icon — the bar is already visual enough)

Gruvbox Dark (model + context + effort + dir + git), remaining=88%, effort=medium:

✦ Opus 4.7 | [■■□□□□□□□□□□□□□□□□□□] 12% | ↯ medium | ⌂ skills-cc | ⎇ main

(bar green — 88% remaining; effort "medium" yellow)

Minimal (model + effort + dir + git), effort=low:

Claude Opus 4.7 · low · skills-cc · main

(no prefix icons in minimal; effort "low" green)

Notes

  • Generated script is saved to ~/.claude/scripts/statusline.sh
  • Running the skill again overwrites the existing script — just re-run to change theme or columns
  • The script uses jq to parse JSON input — make sure it's installed
  • Git dirty detection uses --no-optional-locks to avoid interfering with other git operations

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.32%
按下载量换算35

Claude

26.9%
按下载量换算27

Cursor

18.22%
按下载量换算18

Gemini CLI

9.58%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills