← Back to Skills Marketplace
xueyetianya

ascii-mindmap

by bytesagain4 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
170
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ascii-mindmap
Description
Generate and display ASCII tree diagrams from indented text outlines to visualize ideas and hierarchies in the terminal.
README (SKILL.md)

mindmap

Text Mind Map Generator — Transform plain outlines and bullet lists into beautiful ASCII tree diagrams. Visualize your ideas, document structures, and hierarchies directly in the terminal.

Commands

Command Description Example
create Generate ASCII mind map from text input `create "Project\
Frontend\
React\
Backend\
Node"`
view Read a text file and render as mind map view outline.txt
export Render and output as Markdown code block export outline.txt

Usage

# From a string (use \
 for newlines)
bash script.sh create "Root\
  Branch A\
    Leaf 1\
    Leaf 2\
  Branch B"

# From a file
bash script.sh view my-outline.txt

# Export as Markdown
bash script.sh export my-outline.txt > mindmap.md

# Pipe from stdin
cat outline.txt | bash script.sh view -

Input Format

Use indentation (spaces or tabs) to define hierarchy. The first non-empty line is the root node.

My Project
  Frontend
    React
      Components
      Hooks
    CSS
      Tailwind
  Backend
    Node.js
    PostgreSQL
  DevOps
    Docker
    CI/CD

Requirements

  • bash >= 4.0
  • python3 >= 3.7
  • No external packages required (uses only stdlib)

Examples

$ bash script.sh create "Learning Python\
  Basics\
    Variables\
    Functions\
  OOP\
    Classes\
    Inheritance\
  Libraries\
    NumPy\
    Pandas"

Learning Python
├── Basics
│   ├── Variables
│   └── Functions
├── OOP
│   ├── Classes
│   └── Inheritance
└── Libraries
    ├── NumPy
    └── Pandas
$ bash script.sh export outline.txt

```mindmap
My Project
├── Frontend
│   ├── React
│   └── CSS
└── Backend
    └── Node.js
Usage Guidance
This skill is self-contained and appears safe: it embeds a Python renderer inside a bash script that only reads files or stdin you give it and prints ASCII/Markdown. Before running: (1) inspect the script (it's included) to confirm it matches what you expect, (2) avoid piping sensitive files you don't want displayed, and (3) ensure you have bash and python3 installed. There is no network activity or credential access in the provided files.
Capability Analysis
Type: OpenClaw Skill Name: ascii-mindmap Version: 1.0.0 The skill is a legitimate utility for generating ASCII mind maps from indented text. The implementation in `scripts/script.sh` uses a clean, embedded Python script to handle the tree logic and rendering, with no external dependencies, network activity, or suspicious file system access.
Capability Assessment
Purpose & Capability
Name/description match the included script. The SKILL.md and script require only bash and python3 to render indented outlines as ASCII/Markdown; there are no unexpected binaries, env vars, or services requested.
Instruction Scope
Runtime instructions and the script stay within scope: they read either a provided file or stdin or inline text, parse indentation, and render a tree. The script does not access unrelated system paths, environment variables, or external endpoints.
Install Mechanism
No install spec is provided and the skill is instruction-only with a single included script. Nothing is downloaded or written to disk by an installer; risk from installation is minimal.
Credentials
The skill declares no required env vars or credentials and the script does not read secrets or credential-like environment variables. It only uses arguments, files, and stdin supplied by the user.
Persistence & Privilege
The skill does not request persistent presence (always:false) and does not modify system or other-skill configuration. Autonomous invocation is allowed by platform default but the skill itself has no elevated privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ascii-mindmap
  3. After installation, invoke the skill by name or use /ascii-mindmap
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug ascii-mindmap
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is ascii-mindmap?

Generate and display ASCII tree diagrams from indented text outlines to visualize ideas and hierarchies in the terminal. It is an AI Agent Skill for Claude Code / OpenClaw, with 170 downloads so far.

How do I install ascii-mindmap?

Run "/install ascii-mindmap" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is ascii-mindmap free?

Yes, ascii-mindmap is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does ascii-mindmap support?

ascii-mindmap is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created ascii-mindmap?

It is built and maintained by bytesagain4 (@xueyetianya); the current version is v1.0.0.

💬 Comments