Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

re-visualize-logic重新可视化逻辑

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

195

周安装

17

GitHub Stars

公开资料未说明

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/caldiaworks/caldiaworks-marketplace --skill re-visualize-logic

简介

re-visualize-logic 用于辅助界面设计、视觉规范和交互体验优化。

  • 适合让 Agent 根据产品场景整理页面结构、生成 UI 方案或检查视觉一致性。
  • 使用时需结合现有品牌、设计系统和用户任务,避免堆砌装饰元素。
  • 涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出和对齐表现。
  • 该技能适用于前端界面重构与用户体验改进场景。

SKILL.md

Logic Visualization — Reverse Engineering Phase 2

Convert source code into Mermaid flowcharts with line-number traceability. This skill reads its targets from manifest.json (populated by Phase 1) and processes each component's methods.

Three Principles

1. Code is Truth

  • Document the ACTUAL code flow, not idealized versions
  • Include dead code or seemingly redundant logic
  • If code appears buggy, document as-is and note in Question List

2. Traceability to Line

  • Every node in a Mermaid diagram MUST include a line number: "Action (L{line})"
  • If a line number cannot be determined, exclude that node

3. Behavior over Intent

  • Focus on observable actions: method calls, DB operations, network I/O, state mutations
  • Do NOT add implied steps not present in code

Execution

Step 1: Load Manifest and Determine Targets

Read docs/reverse/{analysis}/manifest.json.

Verify:

  • phase1.status is "verified" — if not, report error and stop
  • phase1.targets_for_phase2 contains entries

Determine which components to process:

  • If component argument is provided, process only that component
  • If omitted, process all entries in phase2.remaining
  • If phase2.remaining is empty and phase2.completed has entries, all components are done

Set phase2.status to "in_progress" in the manifest.

Detect language from manifest.language and load references/{language}.md if it exists.

Step 2: Read Target Code

For each target component from the manifest:

With Serena:

mcp__serena__find_symbol(
    name_path_pattern="{method_name}",
    relative_path="{file}",
    include_body=true,
    depth=0
)

Without Serena:

  • Use Read to load the source file
  • Use Grep to locate method boundaries

For each method, identify:

  • Control flow: if/else, switch/case, for/while, try/catch
  • Data operations: variable assignments, transformations
  • Side effects: database operations, network I/O, file I/O, logging, state mutations

Record the line number for each element.

Step 3: Build Flowchart

Mermaid syntax rules (prevent parse errors):

  • No special characters in text: use value not 0 not value!= 0
  • No array/generic syntax: use byte array not byte[]
  • No method call parentheses: use Method param1 (L50) not Method(param1)
  • No comparison operators in conditions: use |status not OK| not |status!= OK|
  • No brackets in text: use lastConnect index (L60) not _lastConnect[index]
  • Always suffix line numbers: (L{number})

Diagram structure by complexity:

  • Simple (< 50 lines): Single flowchart
  • Medium (50-150 lines): Flowchart with subgraphs
  • Complex (> 150 lines): Multiple diagrams (one per major section)
  • If > 30 nodes in a single diagram, split into multiple diagrams

Verify line numbers before finalizing:

  1. Re-read source code using Read tool
  2. Confirm each line number is accurate
  3. If uncertain, use range: (L40-45)

Step 4: Document Side Effects

For each method, catalog:

Database operations:

OperationLineEntity/TableMethodPurpose

External communication:

TypeLineTargetDataPurpose

State mutations:

VariableLineOperationNew ValueScope

Logging:

LevelLineMessage TemplateContext

Step 5: Generate Output

Write to docs/reverse/{analysis}/02-logic-{component}.md:

# Logic Flow: {component}

**Analysis Date**: {YYYY-MM-DD}
**Source File**: [{file}]({file})
**Target Method**: `{method}` at Line {start}-{end}
**Complexity**: {simple / medium / complex}

## Source Code

**Source**: [{file}:{line}]({file}:{line})

// Line {start}-{end} from {file} {code}


## Logic Flowchart

flowchart TD ...


## Node-to-Line Mapping

| Node | Description | Source Line | Code Snippet | Notes |
| --- | --- | --- | --- | --- |
| {id} | {description} | L{line} | `{code}` | {notes} |

## Side Effects Summary

{tables from Step 4}

## Question List

### Suspected Issues

- **{description}** — [{file}:{line}](https://github.com/caldiaworks/caldiaworks-marketplace/blob/HEAD/skills/re-visualize-logic/%7Bfile%7D:%7Bline%7D)

### Unclear Logic

- **{description}** — [{file}:{line}](https://github.com/caldiaworks/caldiaworks-marketplace/blob/HEAD/skills/re-visualize-logic/%7Bfile%7D:%7Bline%7D)

Step 6: Update Manifest

After each component is processed:

  • Add entry to phase2.completed: {"component": "{name}", "output": "02-logic-{name}.md", "verification": null}
  • Remove from phase2.remaining
  • Add entry to phase2.targets_for_phase3: {"component": "{name}", "logic_diagram": "02-logic-{name}.md", "source_file": "{file}"}

After all components are processed:

  • Set phase2.status to "completed"
  • Update updated timestamp

Validation Before Completion

  • [ ] Every Mermaid node has a line number (L{num})
  • [ ] No special characters in Mermaid text
  • [ ] All line numbers verified against source code
  • [ ] Node-to-line mapping table is complete
  • [ ] Side effects are documented
  • [ ] Mermaid diagram parses without errors
  • [ ] manifest.json is updated with completed components and Phase 3 targets

Prohibited Actions

  • Do NOT add nodes for implied logic not in code
  • Do NOT simplify or omit bad code — document as-is
  • Do NOT use special characters in Mermaid text
  • Do NOT guess line numbers — verify or use range
  • Do NOT modify source code files

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.61%
按下载量换算55

Claude

27.13%
按下载量换算38

Cursor

17.9%
按下载量换算25

Gemini CLI

10.26%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills