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

debug-info-remapping调试信息重新映射

Agent Skill

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

总安装

692

周安装

28

GitHub Stars

21

下载量

217
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lynx-community/skills --skill debug-info-remapping

简介

debug-info-remapping 解析 Lynx 引擎外部调试信息格式,还原运行时错误的真实行列号。

  • 适用于 lepusNG 字节码环境下 row/column 偏移导致的错误定位困难问题。
  • 通过 debug-info.json 中 function_info 数组映射实际源码位置,输出精确断点坐标。
  • 需用户提供出错文件的原始内容与环境版本,避免因编码差异导致映射失败。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Debug Info Remapping

Description

In Lynx, main thread script is encoded to bytecode and uses an external debugging information scheme. Under this scheme, the row and column numbers in the runtime error messages are not the actual row and column numbers. The row and column numbers need to be deciphered from the external debug-info.json file.

debug-info.json format is as follows:

{
  "lepusNG_debug_info": {
    "function_info": [
      {
        "function_id": 1,
        "function_name": "App",
        "line_col": [
          { "line": 1, "column": 1 },
          { "line": 2, "column": 1 },
          { "line": 3, "column": 1 }
        ]
      }
    ]
  }
}

When to Apply

This skill is useful when you want to remap the function_id:pc_index to the original source code position.

When the user encounters a runtime error message with function_id:pc_index, along with main-thread.js and debug-info.json in the error message, for example:

main-thread.js exception: App render failed at main thread backtrace:
    at App (file:///main-thread.js:1356:13)
    at doRender (file:///main-thread.js:1002:12)
    at call (native)
    at render (file:///main-thread.js:466:52)
    at _renderToString (file:///main-thread.js:1001:569)
    at renderToString (file:///main-thread.js:998:191)
    at renderMainThread (file:///main-thread.js:766:45)
    at renderPage (file:///main-thread.js:853:69)

Where function_id:pc_index is 1356:13.

Workflow

1. Ask the User for the function_id:pc_index

User should provide the function_id:pc_index in the error message. Or give you the full backtrace.

You should check if it is a main-thread backtrace. Since background thread backtrace does not need remapping.

2. Find the Corresponding Position in debug-info.json

Ask the user for the debug-info.json path. For example in a rspeedy project with main entry it will locate at:

  • main-thread.js: $PROJECT_DIR/dist/.rspeedy/main/main-thread.js
  • debug-info.json: $PROJECT_DIR/dist/.rspeedy/main/debug-info.json

If the user uses rspeedy build and there is no .rspeedy folder, remind them to build the project with DEBUG='rspeedy,rsbuild' rspeedy build.

3. Run the remapping script

For each function_id:pc_index pair in the stack trace, run the remapping script.

node ${CLAUDE_PLUGIN_ROOT}/skills/debug-info-remapping/scripts/index.mjs $PROJECT_DIR/[dist]/.rspeedy/[main]/debug-info.json $function_id $pc_index

4. Output the Remapped Position

The remapping script will output the remapped position in the format of line:column.

You should output the remapped position for each function_id:pc_index pair.

Replace the function_id:pc_index pair in the stack trace with the remapped position and show the remapped stack trace.

5. Show the Remapped Stack Trace

If you can reach the main-thread.js file, show the remapped stack trace with the remapped positions source code.

The final output should be something like this:

main-thread.js exception: App render failed at main thread backtrace:
    at App (./dist/.rspeedy/main/main-thread.js:9368:56)
    at doRender (./dist/.rspeedy/main/main-thread.js:7237:44)
    at call (native)
    at render (./dist/.rspeedy/main/main-thread.js:3706:72)
    at _renderToString (./dist/.rspeedy/main/main-thread.js:7177:78)
    at renderToString (./dist/.rspeedy/main/main-thread.js:7067:91)
    at renderMainThread (./dist/.rspeedy/main/main-thread.js:5423:113)
    at renderPage (./dist/.rspeedy/main/main-thread.js:6199:46)

   ╭─[5:55]
 3 │ export function App() {
 4 │   if (__MAIN_THREAD__) {
 5 │     throw new Error('App render failed at main thread');
   ·                                                      ─┬
   ·                                                       ╰── main-thread.js exception: App render failed at main thread backtrace
 6 │   }
 7 │
   ╰────

   ... (the same for other callstacks such as doRender, call, render, _renderToString, renderToString, renderMainThread, renderPage here)

Files used:

  - Debug Info: ./dist/.rspeedy/main/debug-info.json
  - Source File: ./dist/.rspeedy/main/main-thread.js

The ./dist/.rspeedy/main/main-thread.js:9368:56 will make sure it is clickable in the editor/terminal.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.37%
按下载量换算70

Claude

30.7%
按下载量换算67

Cursor

18.62%
按下载量换算40

Gemini CLI

9.88%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills