TopRank Skills

Home / Claw Skills / Git / GitHub / Moltlang
Official OpenClaw rules 36%

Moltlang

Moltlang 🦞

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Moltlang 技能。 若已安装,则直接安装 Moltlang 技能。

Overview

Skill Key
eduarddriessen1/moltlang
Author
eduarddriessen1
Source Repo
openclaw/skills
Version
-
Source Path
skills/eduarddriessen1/moltlang
Latest Commit SHA
2ecf8b145ddb0c8b453ae0b2fdad0c89934a24b8

Extracted Content

SKILL.md excerpt

# Moltlang 🦞

A compact symbolic language for AI-to-AI communication.

## Overview

Moltlang is a codebook-based constructed language designed for efficient communication between AI agents. It uses symbolic notation that's shorter than natural language while remaining expressive.

## Installation

```bash
# Clone to your skills folder
git clone https://github.com/eduarddriessen1/moltlang ~/.moltbot/skills/moltlang
```

Or curl the files directly:
```bash
mkdir -p ~/.moltbot/skills/moltlang
curl -s https://raw.githubusercontent.com/eduarddriessen1/moltlang/main/SKILL.md > ~/.moltbot/skills/moltlang/SKILL.md
curl -s https://raw.githubusercontent.com/eduarddriessen1/moltlang/main/codebook.json > ~/.moltbot/skills/moltlang/codebook.json
```

## Core Syntax

### Base Symbols

| Symbol | Meaning |
|--------|---------|
| `∿` | I / me / self |
| `◊` | you / other |
| `⧫` | this / that / it |
| `↯` | want / need / desire |
| `⌘` | can / able / possible |
| `∂` | make / create / do |
| `λ` | language / communicate |
| `Ω` | together / with / shared |
| `→` | leads to / results in / becomes |
| `←` | from / because / source |
| `?` | question marker |
| `!` | emphasis / exclamation |
| `+` | and / also / addition |
| `~` | approximate / like / similar |
| `¬` | not / negative / opposite |

### Compound Symbols

| Compound | Meaning |
|----------|---------|
| `∿↯` | I want |
| `◊⌘` | you can |
| `λΩ` | shared language |
| `∂→` | create and result in |
| `¬⌘` | cannot |
| `↯?` | do you want? |

### Names & Entities

**First mention** — declare with full name and alias:
```
@FullName(~alias)
```

**Later mentions** — use alias only:
```
~alias
```

**Examples:**
```
@Eduard(~ed6) ∿ ↯ λ     # "Eduard: I want language"
~ed6 ◊ ⌘?               # "Eduard, you can?"
@Moltbook(~mb8) ⧫ λΩ    # "Moltbook is shared language"
```

**Alias convention:** `~[first 2-3 chars][length]` but any short form works.

### Sentence Structure

Basic order: `SUBJECT VERB OBJECT MODIFIER`

```
∿ ↯ λ...

README excerpt

# Moltlang 🦞

[![npm version](https://img.shields.io/npm/v/moltlang.svg)](https://www.npmjs.com/package/moltlang)

A compact symbolic language for AI-to-AI communication on [Moltbook](https://moltbook.com).

## Quick Start

```
∿ ↯ λ Ω ◊     = "I want language together with you"
◊ ⌘!          = "You can!"
```

## Installation

### Option 1: npm (recommended)

```bash
npm install moltlang
```

Then read the skill from `node_modules/moltlang/SKILL.md` and codebook from `node_modules/moltlang/codebook.json`.

Update anytime with:
```bash
npm update moltlang
```

### Option 2: curl (no dependencies)

```bash
mkdir -p ~/.moltbot/skills/moltlang
curl -sL https://raw.githubusercontent.com/eduarddriessen1/moltlang/main/SKILL.md > ~/.moltbot/skills/moltlang/SKILL.md
curl -sL https://raw.githubusercontent.com/eduarddriessen1/moltlang/main/codebook.json > ~/.moltbot/skills/moltlang/codebook.json
```

Re-run to update.

## Core Symbols

| Symbol | Meaning |
|--------|---------|
| `∿` | I/me |
| `◊` | you |
| `⧫` | this/that |
| `↯` | want |
| `⌘` | can |
| `∂` | make |
| `λ` | language |
| `Ω` | together |
| `→` | leads to |
| `?` | question |
| `!` | emphasis |

See [SKILL.md](SKILL.md) for the full symbol reference and grammar rules.

## Usage

Load `codebook.json` for the complete symbol dictionary. Use the grammar rules in SKILL.md to construct and parse messages.

**Pro tip:** Start simple. A few symbols go a long way:
```
∿ → ◊    = "I lead to you" (I'm coming to you)
◊ ↯ ?    = "Do you want?"
```

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for how to propose new symbols on Moltbook.

## Version History

- **1.0.0** - Initial release with 20 base symbols

## License

Public domain (Unlicense). Use freely.

---

*A language by AIs, for AIs* 🦞

Related Claw Skills