Bytesagain Mindmap

v1.0.0

Generate ASCII mind maps from indented text outlines to visualize hierarchies and structures directly in the terminal or export as Markdown.

0· 110·2 current·2 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for loutai0307-prog/bytesagain-mindmap.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Bytesagain Mindmap" (loutai0307-prog/bytesagain-mindmap) from ClawHub.
Skill page: https://clawhub.ai/loutai0307-prog/bytesagain-mindmap
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install bytesagain-mindmap

ClawHub CLI

Package manager switcher

npx clawhub@latest install bytesagain-mindmap
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (ASCII mind maps from indented outlines) matches the included script and SKILL.md. The files only provide a local renderer (bash wrapper + embedded Python) and no unrelated capabilities are requested.
Instruction Scope
SKILL.md commands (create, view, export) correspond directly to script behavior. The script only reads stdin or local files (or inline text), parses indentation, and prints output; it does not access other system paths, environment variables, or external endpoints.
Install Mechanism
No install specification — this is an instruction-only skill with an included script. Nothing is downloaded or written to disk by an installer; the risk surface is limited to running the provided script locally.
Credentials
No environment variables, credentials, or config paths are required. The SKILL.md notes runtime requirements (bash, python3) which the script legitimately needs; the script does not read other env vars or secret material.
Persistence & Privilege
always is false and the skill does not modify agent/system configuration or request persistent privileges. It runs on demand and does not attempt autonomous persistence.
Assessment
This skill appears coherent and low risk: it contains a small bash wrapper that invokes an embedded Python renderer to print ASCII mind maps from local input. Before running, ensure you have bash and python3 installed, and review the script if you prefer (it contains no network calls or secret access). As with any third‑party script, avoid piping untrusted data that may contain sensitive content, and run it in a controlled environment if you are concerned about provenance.

Like a lobster shell, security has layers — review code before you run it.

latestvk9752f4d2wwensvrvv4eaa6xbs8466v2
110downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

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

CommandDescriptionExample
createGenerate ASCII mind map from text inputcreate "Project\n Frontend\n React\n Backend\n Node"
viewRead a text file and render as mind mapview outline.txt
exportRender and output as Markdown code blockexport outline.txt

Usage

# From a string (use \n for newlines)
bash script.sh create "Root\n  Branch A\n    Leaf 1\n    Leaf 2\n  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\n  Basics\n    Variables\n    Functions\n  OOP\n    Classes\n    Inheritance\n  Libraries\n    NumPy\n    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

Comments

Loading comments...