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

ln-015-hex-line-uninstallerln 015 十六进制线卸载程序

Agent Skill

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

总安装

1,297

周安装

53

GitHub Stars

441

下载量

420
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ln-015-hex-line-uninstaller(ln 015 十六进制线卸载程序)
来源仓库:https://github.com/levnikolaevich/claude-code-skills
仓库路径:skills/ln-015-hex-line-uninstaller
安装命令:
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-015-hex-line-uninstaller
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-015-hex-line-uninstaller

简介

ln-015-hex-line-uninstaller 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Paths: File paths are relative to skills repo root. Locate this SKILL.md directory and go up one level for repo root.

Hex-Line Uninstaller

Type: L3 Worker Category: 0XX Shared

Removes Claude-side hex-line integration surfaces. This worker is standalone-capable but also supports managed ln-010 family transport.

MANDATORY READ: Load shared/references/coordinator_summary_contract.md, shared/references/environment_worker_runtime_contract.md, and shared/references/worker_runtime_contract.md

This worker cleans Claude-side state directly from config files and CLI state. Missing MCP connectivity is not a blocker; continue with local cleanup and verification wherever possible.

Input / Output

DirectionContent
Inputoptional dry_run, optional runId, optional summaryArtifactPath
OutputStructured summary envelope with summary_kind = env-cleanup, payload.status = completed / skipped / error, plus cleanup outcomes in changes / detail

Transport inputs:

  • standalone: omit runId and summaryArtifactPath
  • managed: pass both runId and summaryArtifactPath

Runtime

Runtime family: environment-worker-runtime

Phase profile:

  1. PHASE_0_CONFIG
  2. PHASE_1_RESOLVE_CLAUDE_STATE
  3. PHASE_2_REMOVE_HEXLINE_REGISTRATION
  4. PHASE_3_REMOVE_HEXLINE_ARTIFACTS
  5. PHASE_4_VERIFY_CLEANUP
  6. PHASE_5_WRITE_SUMMARY
  7. PHASE_6_SELF_CHECK

Runtime rules:

  • emit summary_kind=env-cleanup
  • standalone runs generate their own run_id and write the default worker-family artifact path
  • managed runs require both runId and summaryArtifactPath and must write the summary to the exact provided path
  • always write the validated summary artifact before terminal outcome

Output Contract

Always build a structured env-cleanup summary envelope per:

  • shared/references/coordinator_summary_contract.md
  • shared/references/environment_worker_runtime_contract.md

Payload fields:

  • mcp_removed
  • permissions_cleaned
  • hooks_removed
  • output_style_removed
  • verification
  • status

What It Removes

SurfaceLocationAction
MCP registrationclaude mcp list / user scopeRemove hex-line registration via claude mcp remove -s user hex-line when present
Permission entries~/.claude/settings.json and ~/.claude/settings.local.jsonRemove permissions.allow entries that target mcp__hex-line__*
Hook entries~/.claude/settings.json and ~/.claude/settings.local.jsonRemove hook entries matching the current hex-line hook signature
Output style file~/.claude/output-styles/hex-line.mdDelete file
Output style setting~/.claude/settings.json and ~/.claude/settings.local.jsonClear only if value is "hex-line"
Hook directory~/.claude/hex-line/Delete only if empty after artifact cleanup

Workflow

Phase 1: Resolve Claude State

  1. Read ~/.claude/settings.json if present
  2. Read ~/.claude/settings.local.json if present
  3. Detect:

- hex-line MCP registration in user scope - permissions.allow entries for mcp__hex-line__* - hook entries whose command points to the installed hex-line hook - outputStyle = "hex-line" - installed style file and hook directory

  1. Record exactly which owned surfaces exist before mutating anything

Phase 2: Remove Hex-Line Registration

  1. If user-scope hex-line registration exists, run:
claude mcp remove -s user hex-line
  1. If registration is already absent, report already removed
  2. Do not uninstall the npm package here. This worker owns Claude-side integration surfaces only

Phase 3: Remove Hex-Line Artifacts

  1. Update Claude settings surfaces:

- remove permissions.allow entries for mcp__hex-line__* - remove hook entries whose command contains the active hex-line hook path - remove empty hook event arrays and remove hooks only when empty - clear outputStyle only when it is exactly "hex-line"

  1. Delete ~/.claude/output-styles/hex-line.md if present
  2. Delete ~/.claude/hex-line/hook.mjs if present
  3. Delete ~/.claude/hex-line/ only when it is empty after file removal

Rules:

  • preserve all non-hex-line settings
  • never claim cache cleanup unless a concrete cache deletion step exists
  • do not touch unrelated MCP registrations or permission entries

Phase 4: Verify Cleanup

Confirm:

  • no user-scope hex-line MCP registration remains
  • no permissions.allow entry targets mcp__hex-line__*
  • no hex-line hook entry remains in managed Claude settings files
  • outputStyle is not "hex-line"
  • ~/.claude/output-styles/hex-line.md does not exist
  • ~/.claude/hex-line/hook.mjs does not exist

Notes

  • This worker removes Claude-side hex-line integration only
  • It does not remove the npm package itself
  • It is safe to run multiple times

Definition of Done

  • Claude user-scope hex-line MCP registration removed or confirmed absent
  • permissions.allow no longer contains mcp__hex-line__*
  • No hex-line hook entries remain in managed Claude settings files
  • outputStyle: "hex-line" cleared where owned
  • Installed style and hook artifacts removed
  • Structured summary returned
  • Summary artifact written to the managed or standalone runtime path

Version: 1.0.0 Last Updated: 2026-03-27

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.44%
按下载量换算149

Claude

33.42%
按下载量换算140

Cursor

17.35%
按下载量换算73

Gemini CLI

9.17%
按下载量换算39

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills