PluginBench
Skill
Pass
Audit score 90

ljg-word-flow

lijigang/ljg-skills

Deep-dive word analysis + infograph card generation in one command.

What is ljg-word-flow?

ljg-word-flow combines semantic word analysis with visual infograph creation. Run it when you need both detailed word breakdown and a PNG card for one or more English words—triggered by keywords like 'word card', 'word flow', or '词卡'.

  • Extracts semantic analysis for each word using ljg-word
  • Generates PNG infograph cards using ljg-card -i from the analysis
  • Processes multiple words in parallel (serial A→B per word)
  • Outputs markdown analysis and saves PNG files to ~/Downloads/
  • Chains ljg-word output directly into ljg-card -i for consistency

How to install ljg-word-flow

npx skills add https://github.com/lijigang/ljg-skills --skill ljg-word-flow
Prerequisites
  • ljg-word skill must be installed
  • ljg-card skill must be installed
  • Write access to ~/Downloads/ directory
Claude Code
Cursor
Windsurf
Cline

How to use ljg-word-flow

  1. 1.Pass one or more English words separated by spaces to the skill
  2. 2.The skill extracts all words from your input
  3. 3.For each word, ljg-word generates semantic analysis (displayed as markdown)
  4. 4.ljg-card -i then creates a PNG infograph using that analysis
  5. 5.PNG files are saved to ~/Downloads/ with the word as filename
  6. 6.Review the summary report showing all generated cards and their locations

Use cases

Good for
  • Create visual study cards for vocabulary learning with deep semantic context
  • Generate infographs for presentation or documentation of key concepts
  • Batch-process multiple related words to build a visual glossary
  • Produce both written analysis and visual representation for language learners
  • Create marketing or educational materials combining word meaning with design
Who it's for
  • Language learners and educators
  • Content creators needing visual vocabulary aids
  • Students preparing study materials
  • Technical writers documenting terminology
  • Anyone building visual glossaries or concept cards

ljg-word-flow FAQ

Can I process multiple words at once?

Yes. Pass multiple words separated by spaces (e.g., 'Serendipity Resilience Entropy'). Each word is processed in parallel, but analysis and card generation happen serially within each word.

What triggers this skill?

Use keywords like 'word card', 'word flow', '词卡', or provide English words requesting both analysis and visual output.

Where are the PNG files saved?

All generated infograph cards are saved to ~/Downloads/ with the word as the filename (e.g., ~/Downloads/Obstacle.png).

What if ljg-word or ljg-card fails?

The skill requires both ljg-word and ljg-card -i to be installed and working. Ensure both dependencies are available before running.

Can I use non-English words?

The skill is designed for English words. Input should be English words for accurate semantic analysis and card generation.

Full instructions (SKILL.md)

Source of truth, from lijigang/ljg-skills.


name: ljg-word-flow description: "Word flow: deep-dive word analysis + infograph card in one go. Takes one or more English words, runs ljg-word (generates deep semantics analysis) then ljg-card -i (generates infograph PNG). Use when user says '词卡', 'word card', 'word flow', or provides English words wanting both analysis and visual card." user_invocable: true version: "1.0.1"

ljg-word-flow: 词卡

一条命令完成:解词 → 铸信息图。支持多词并行。

模式

强制 NATIVE 模式。 本 workflow 是纯 skill 管道(ljg-word → ljg-card -i),不需要 Algorithm 的七步流程。直接按下方执行步骤调用 skill,不走 OBSERVE/THINK/PLAN/BUILD/EXECUTE/VERIFY/LEARN。

参数

直接传入一个或多个英文单词,空格分隔。

/ljg-word-flow Obstacle
/ljg-word-flow Serendipity Resilience Entropy

执行

1. 收集单词列表

从用户消息中提取所有英文单词。

2. 处理每个单词

对每个单词,串行执行两步:

步骤 A — 解词(ljg-word):

调用 Skill tool 执行 ljg-word,传入单词。在对话中输出 Markdown 解析结果。

步骤 B — 铸信息图(ljg-card -i):

以步骤 A 的解析内容为输入,调用 Skill tool 执行 ljg-card -i。生成 PNG 文件到 ~/Downloads/

3. 多词并行

多个单词时,每个单词启动一个 Agent subagent 并行处理(每个 subagent 内部 A→B 串行)。

4. 汇总报告

════ 词卡完成 ═══════════════════════
📖 {Word1}
   🖼️ ~/Downloads/{Word1}.png

📖 {Word2}
   🖼️ ~/Downloads/{Word2}.png
...

关键约束

  • 先解词后铸卡,顺序不可逆
  • ljg-word 和 ljg-card -i 各自的质量标准不变
  • 信息图内容来自解词结果,不是字典释义