Token导航 LogoToken导航TokenDH.com
开发只读clawhub未标认证来源可访问clear审计通过

auto-glossary汽车术语表

Agent Skill

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

总安装

2,836

周安装

117

GitHub Stars

公开资料未说明

下载量

927
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:auto-glossary(汽车术语表)
来源仓库:https://github.com/emanxchan/auto-glossary
安装命令:
openclaw skills install auto-glossary
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install auto-glossary

简介

auto-glossary 用于处理 GitHub 仓库、Issue 和 Pull Request 信息,适合在 OpenClaw 中围绕代码变更进行协作时使用。

  • 支持自动添加技术术语到术语表,适用于编码会话中的知识管理。
  • 通过 clawhub 安装,命令为 openclaw skills install auto-glossary,需结合来源仓库进一步确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前功能描述基于原始 README,实际能力以官方文档为准。

SKILL.md

name
auto-glossary
description
Automatically add technical jargon to the user's tech glossary GitHub repository when encountered during coding sessions. Use when technical terms, coding concepts, or developer jargon comes up that the user (E-man) might need to understand. The skill watches for unfamiliar terminology during coding tasks and adds it to the glossary with analogy-based explanations following the established format.

Auto-Glossary Skill

This skill automatically manages technical terminology for E-man by adding new terms to his tech glossary when encountered during coding work.

When to Use This Skill

Trigger this skill when:

  1. A technical term appears in code, error messages, or discussions that might be unfamiliar
  2. Explaining a coding concept that hasn't been glossary-ified yet
  3. Encountering jargon during debugging, reviews, or implementation
  4. The user asks "what does X mean?" or shows confusion about terminology

Term Identification

Watch for these categories during coding sessions:

  • Programming concepts (async/await, closure, currying, memoization)
  • TypeScript/JavaScript terms (generics, union types, type guards, inference)
  • Git/GitHub terms (rebase, cherry-pick, stash, squash)
  • Framework terms (hydration, SSR, CSR, middleware, route handlers)
  • Database terms (migration, indexing, normalization, transaction)
  • Architecture terms (monolith, microservices, serverless, edge)
  • Testing terms (mocking, stubbing, TDD, integration test)
  • DevOps terms (CI/CD, containerization, orchestration, deployment)
  • Security terms (authentication, authorization, encryption, hashing)
  • Performance terms (lazy loading, caching, memoization, tree-shaking)

Glossary Entry Format

Every term must follow this exact format:

### Term Name
- **Simple definition**: One sentence explanation in plain English
- **Analogy**: A relatable real-world comparison that makes the concept click
- **When you'll use it**: Practical context for when this matters
- **Related terms**: 2-5 related concepts (comma separated)
- **Example**: A concrete code or scenario example

Format Rules

  1. Simple definition: Must be jargon-free. If you need to explain the definition, it's too complex.
  2. Analogy: Should be from everyday life (cooking, driving, organizing, etc.). The user loves these.
  3. When you'll use it: Be specific about the trigger moment - "When you see X error" or "Before deploying to production"
  4. Related terms: Only include terms that are actually in the glossary or should be added soon
  5. Example: Use real code from the current project when possible, or realistic pseudo-code

Workflow

When a new term is identified:

  1. Check if term exists: Read project/tech-glossary/glossary.md to verify it's not already there
  2. Categorize: Determine which section (Git & Version Control, Development Tools, Web Development, etc.)
  3. Write the entry: Follow the format above strictly
  4. Update count: Increment "Terms covered" at the bottom
  5. Commit and push:
   cd project/tech-glossary
   git add glossary.md
   git commit -m "Add '<Term>' to glossary: <one-line description>"
   git push

Categories (for organizing entries)

Use these existing sections or create new ones:

  • Git & Version Control
  • Artificial Intelligence
  • Development Tools & Configuration
  • Web Development
  • Programming Concepts
  • Databases
  • Testing
  • DevOps & Deployment
  • Security
  • Performance & Optimization

Examples of Good Entries

Refactor (from existing glossary)

### Refactor
- **Simple definition**: Improving the *internal* structure of code without changing its *external* behavior. It's about making code cleaner, faster, or easier to read
- **Analogy**: Like rewriting a paragraph to be clearer using better words, but the meaning of the paragraph stays exactly the same. Or rearranging your kitchen so it's easier to cook, but you're still making the same meal
- **When you'll use it**: When your code works, but it's getting messy or hard to understand as you add new features
- **Related terms**: Technical Debt, Best Practices, Optimization
- **Example**: You have a long, confusing function that calculates a budget. You refactor it by breaking it into three smaller, clearly-named functions. The math doesn't change, but it's now much easier for a human to read

Type Guard (hypothetical new entry)

### Type Guard
- **Simple definition**: A check that tells TypeScript "I know what type this is" so it can give you better autocomplete and catch errors
- **Analogy**: Like showing your ID at a bar. The bouncer doesn't know you're over 21 just by looking, but once you show ID, they treat you differently. TypeScript doesn't know a variable is a string until you prove it
- **When you'll use it**: When TypeScript complains that "property doesn't exist" on a variable that could be multiple types
- **Related terms**: TypeScript, Type Inference, Union Types
- **Example**: 

function process(value: string | number) { if (typeof value === "string") { // TypeScript now knows this is a string return value.toUpperCase(); } // TypeScript knows this is a number return value.toFixed(2); }

Reference: Full Glossary Structure

See references/glossary-format.md for the complete format guide and examples.

Don't Overdo It

  • Skip obvious terms: Don't add "Variable" or "Function" - these are too basic
  • Skip one-off mentions: If a term comes up once and never again, maybe skip it
  • Prioritize recurring confusion: If the user asks about something twice, definitely add it
  • Batch related terms: If 3 related terms come up, add them all at once in one commit

After Adding a Term

Let the user know: "Added 'X' to your tech glossary with an analogy. You can check it anytime at github.com/EmanxChan/tech-glossary"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.23%
按下载量换算670

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills