Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

claude-hudClaude HUD 搜索

Agent Skill

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

总安装

315

周安装

13

GitHub Stars

公开资料未说明

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add yonatangross/skillforge-claude-plugin --skill "claude-hud"

简介

claude-hud 实现信息查找与内容筛选,服务于多宿主平台的知识管理需求。

  • 依据关键词或应用场景定位相关资源,增强 Agent 的信息处理能力。
  • 安装命令为 npx skills add yonatangross/skillforge-claude-plugin --skill "claude-hud"。
  • 需提前确认是否允许联网调用或执行外部脚本等高风险操作。
  • 建议同步查看原始 README 了解实际覆盖范围与限制条件。

SKILL.md

Claude HUD - Status Line Configuration

Overview

Use this skill when you need to:

  • Monitor context window usage in real-time
  • Configure statusline display for Claude Code
  • Set up visual thresholds for context management
  • Track session costs and duration

Configure Claude Code's statusline to display real-time context window usage and session information using CC 2.1.6 fields.

Quick Setup

Add to your .claude/settings.json:

{
  "statusline": {
    "enabled": true,
    "template": "[CTX: {{context_window.used_percentage}}%] {{session.cost}}"
  }
}

Available Fields (CC 2.1.6)

FieldDescriptionExample
context_window.used_percentageCurrent context usage as percentage45
context_window.remaining_percentageAvailable context as percentage55
session.costCurrent session cost$0.23
session.durationSession duration15m

CC 2.1.7 New Fields

FieldDescriptionExample
turn.durationCurrent turn duration2.3s
context_window.effectiveEffective window size160000
context_window.effective_percentageUsage vs effective window28
mcp.deferredMCP tools deferred statustrue

Turn Duration Display (CC 2.1.7)

Enable turn duration tracking in your statusline:

{
  "statusline": {
    "enabled": true,
    "showTurnDuration": true,
    "template": "[CTX: {{context_window.used_percentage}}%] [Turn: {{turn.duration}}]"
  }
}

Effective Context Window

CC 2.1.7 uses the effective context window rather than the static maximum:

Static Max:    200,000 tokens (theoretical limit)
Effective:     160,000 tokens (actual usable after overhead)
Your Usage:     45,000 tokens (28% of effective)

Visual States

Context usage thresholds help you know when to act.

CC 2.1.14 Context Window Fix: Claude Code now uses 98% of the context window (previously capped at ~65%). Thresholds below are calculated against the effective window (160K tokens for 200K max after ~20% system overhead).
[CTX: 45%] ████████░░░░░░░░ - GREEN:  Plenty of room, work freely
[CTX: 72%] ██████████████░░ - YELLOW: Watch usage, consider chunking
[CTX: 89%] █████████████████ - ORANGE: Consider compacting soon
[CTX: 97%] ██████████████████ - RED:    COMPACT NOW or lose context

Note: These percentages are of the effective window (~160K tokens), not the static 200K max. A 50% reading means ~80K tokens used.

Recommended Actions by State

StateUsageAction
GREEN< 60%Normal operation
YELLOW60-80%Break large tasks into chunks
ORANGE80-95%Use /context-compression or summarize
RED> 95%COMPACT IMMEDIATELY

Configuration Options

Basic Template

{
  "statusline": {
    "enabled": true,
    "template": "[{{context_window.used_percentage}}%]"
  }
}

With Cost Tracking

{
  "statusline": {
    "enabled": true,
    "template": "[CTX: {{context_window.used_percentage}}%] Cost: {{session.cost}}"
  }
}

With Progress Bar

{
  "statusline": {
    "enabled": true,
    "template": "[CTX: {{context_window.used_percentage}}%]",
    "elements": {
      "context_bar": {
        "field": "context_window.used_percentage",
        "format": "bar",
        "thresholds": {
          "normal": 60,
          "warning": 80,
          "critical": 95
        }
      }
    }
  }
}

Integration with OrchestKit

Automatic Context Management

OrchestKit's hooks can automatically suggest compression when context gets high:

# In hooks/posttool/context-monitor.sh
if [ "$CONTEXT_USED_PCT" -gt 80 ]; then
  echo "SUGGESTION: Consider using /ork:context-compression"
fi

Progressive Loading Optimization

When context is above 60%, OrchestKit automatically:

  1. Uses Tier 1 discovery more aggressively
  2. Loads smaller reference files
  3. Suggests skill completion before loading new skills

Troubleshooting

Statusline Not Showing

  1. Verify CC version: claude --version (need >= 2.1.6)
  2. Check settings.json syntax
  3. Restart Claude Code session

Incorrect Percentages

Context percentages are calculated from:

  • System prompt size
  • Conversation history
  • Loaded skills and context files
  • Pending tool outputs

If numbers seem off, check for large files loaded in context.

VSCode Integration (CC 2.1.14)

When using Claude Code in VSCode, additional features are available:

/usage Command

Display current plan usage directly in VSCode:

/usage

Shows:

  • Tokens used in current billing period
  • Cost breakdown by model
  • Remaining quota (if applicable)

VSCode Status Bar

The statusline integrates with VSCode's status bar. Configure in VSCode settings:

{
  "claudeCode.statusBar.enabled": true,
  "claudeCode.statusBar.position": "right"
}

Related Skills

  • context-compression: Reduce context when hitting limits
  • context-engineering: Optimize what goes in context
  • brainstorming: Use before loading heavy context

Version Requirements

  • Claude Code: >= 2.1.14
  • Fields Available: CC 2.1.6 + CC 2.1.7 (turn.duration, context_window.effective, mcp.deferred)
  • VSCode Features: CC 2.1.14 (/usage command)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

29.39%
按下载量换算30

trae

24.48%
按下载量换算25

OpenCode

15.23%
按下载量换算16

Cursor

11.13%
按下载量换算11

github-copilot

6.71%
按下载量换算7

Antigravity

3.61%
按下载量换算4

安全审计

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

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills