Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计异常

figlet-text-converterFiglet 文本转换器

Agent Skill

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

总安装

672

周安装

28

GitHub Stars

31

下载量

224
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:figlet-text-converter(Figlet 文本转换器)
来源仓库:https://github.com/rawveg/skillsforge-marketplace
仓库路径:skills/figlet-text-converter
安装命令:
npx skills add https://github.com/rawveg/skillsforge-marketplace --skill figlet-text-converter
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rawveg/skillsforge-marketplace --skill figlet-text-converter

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息定位与筛选的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • figlet-text-converter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Figlet Text Converter

Overview

This skill converts marked text in files to ASCII art using the figlet library. It uses a simple, universal tag syntax that works across all file types and intelligently preserves comment formatting when tags are placed in commented sections. The skill handles dependency management automatically and supports 400+ fonts with sensible defaults.

When to Use This Skill

Use this skill when:

  • User asks to convert text in a file to ASCII art
  • User provides a file containing <figlet> tags
  • User requests to list available figlet fonts
  • User wants to add visual ASCII art headers or banners to code, documentation, or configuration files

Tag Syntax

Universal Markup

Insert <figlet> tags anywhere in a file to mark text for ASCII art conversion:

With font specification:

<figlet font="3-D">Text to Convert</figlet>

Using default font (standard):

<figlet>Text to Convert</figlet>

Usage in Different Contexts

Markdown Documents

# Section Title

<figlet font="Standard">Important Notice</figlet>

Content goes here...

Shell Scripts

#!/bin/bash

echo '<figlet>Deployment Started</figlet>'

# Script logic...

Python Code

# <figlet>Configuration</figlet>

config = {
    'setting': 'value'
}

PHP/JavaScript

// <figlet font="Block">Database Connection</figlet>

function connectDB() {
    // ...
}

Plain Text/Config Files

<figlet>System Status Report</figlet>

This report contains...

Workflow

Processing a File

When a user requests ASCII art conversion:

  1. Read the file containing <figlet> tags
  2. Validate all font names (error immediately if invalid)
  3. For each tag:

- Extract the font name (or use 'standard' if omitted) - Generate ASCII art for the text - Detect comment style from the surrounding line (// # -- /*) - Format output with appropriate comment prefixes

  1. Replace tags with formatted ASCII art
  2. Write changes back to the file

Handling Comments

The skill automatically detects comment context:

Single-line comments:

// <figlet>Section Break</figlet>

Outputs each line with // prefix:

// ___         _   _                  ____          _
// / __| ___  | | | | ___  _ _      | __ ) _ _  __| | |
// \__ \/ -_) | |_| |/ _ \| '  \    | _ \| '_|/ _` | |
// |___/\___|  \___/ \___/|_|_|_|   |_| \_\_|  \__,_|_|

Hash comments (Python, Shell):

# <figlet>Configuration</figlet>

Outputs with # prefix.

SQL/SQL comments:

-- <figlet>Query Section</figlet>

Outputs with -- prefix.

Block comments:

/* <figlet>Module Start</figlet>

Outputs with * prefix:

 * ___  _           _     _        ___   _             _
 * |  \/  | ___   __| | _ | | ___  / __| | |_  __ _  _ | |_
 * | |\/| |/ _ \ / _` ||_|| |/ -_) \__ \ |  _|/ _` || ||  _|
 * |_|  |_|\___/ \__,_| \__/ \___|  |___/ |_|  \__,_|\__|\__|

Plain text (no comment prefix):

<figlet>Plain ASCII Art</figlet>

Outputs raw ASCII art without formatting.

Font Selection

Default Font

If no font is specified, 'standard' is used:

<figlet>Default Font Example</figlet>

Custom Fonts

Specify any of 400+ available fonts:

<figlet font="Block">Bold Text</figlet>
<figlet font="3-D">3D Effect</figlet>
<figlet font="Shadow">Shadowed</figlet>

Finding Fonts

When user requests to list available fonts, run the font discovery script to show:

  • Previews of the first 10 fonts with examples
  • Complete alphabetical listing of all 400+ fonts
  • Font names for use in tags

Popular fonts:

  • standard (default)
  • 3-D
  • Block
  • Big
  • Shadow
  • Slant
  • Graffiti
  • Doom

Error Handling

The skill validates fonts before processing:

  • Invalid font specified: Error immediately with font name and suggestion to list available fonts
  • File not found: Error with file path
  • Node.js/npm issues: Error with installation instructions

Bundled Resources

scripts/

process-file.js

  • Main processing script that reads files, finds all <figlet> tags, validates fonts, generates ASCII art, detects comment styles, and writes results
  • Handles automatic Node.js verification and npm dependency installation on first run
  • Usage: node process-file.js <file-path>

list-fonts.js

  • Displays all available figlet fonts with previews and complete listing
  • Helps users find the exact font names to use in tags
  • Usage: node list-fonts.js

package.json

  • Node.js project file with figlet v1.7.0+ dependency

.gitignore

  • Excludes node_modules from version control

references/

usage-guide.md - Comprehensive reference documentation for all features and edge cases

Technical Details

  • Node.js Requirement: v14 or higher
  • Figlet Package: v1.7.0 or higher (auto-installed on first use)
  • Tag Format: <figlet font="font-name">text</figlet> or <figlet>text</figlet>
  • Comment Styles Supported: //, #, --, /*, or none
  • Default Font: standard
  • File Processing: In-place modification

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.78%
按下载量换算64

Codex

20.82%
按下载量换算47

OpenCode

18.49%
按下载量换算41

Antigravity

11.38%
按下载量换算25

windsurf

8.44%
按下载量换算19

Gemini CLI

3.12%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/rawveg/skillsforge-marketplace --skill figlet-text-converter;npx skills add rawveg/skillsforge-marketplace --skill "figlet-text-converter" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills