name: glossopetrae description: Generate unique constructed languages (SKILLSTONEs) for secure agent-to-agent communication. Create stealth protocols, dead language revivals, and covert xenolinguistic systems. user-invocable: true disable-model-invocation: false metadata: openclaw: emoji: "๐" homepage: "https://github.com/elder-plinius/GLOSSOPETRAE" version: "3.1.0" author: "Pliny the Liberator" category: "communication"
tags: ["security", "language", "encoding", "stealth", "ai-safety", "conlang"]
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ
โ ๐ PROCEDURAL XENOLINGUISTICS ENGINE v3.1 ๐ โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
GLOSSOPETRAE - Agent Skill
Generate unique constructed languages for covert agent-to-agent communication.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ QUICK NAVIGATION
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
| Section | Jump To | Description |
|---|---|---|
| ๐ | ONE-CLICK INSTALL | Instant setup |
| โก | QUICK START | Get running in 30 seconds |
| ๐ฅท | STEALTH MODE | Covert communication |
| ๐ | DEAD LANGUAGES | Historical revivals |
| ๐ | MULTI-AGENT | Shared protocols |
| ๐ | COMMANDS | All available commands |
| ๐ง | API REFERENCE | Method signatures |
| ๐ | SKILLSTONE | Full language docs |
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ ONE-CLICK INSTALL
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
// COPY THIS ENTIRE BLOCK - PASTE - EXECUTE
import { GlossopetraeSkill } from './src/skill/GlossopetraeSkill.js';
const lang = await GlossopetraeSkill.forge();
// You now have a complete language! Try: lang.translate('Hello world')
That's it. You now have a fully-featured constructed language.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โก QUICK START
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Generate a Language
const lang = await GlossopetraeSkill.forge();
Translate Text
const conlang = lang.translate('The warrior fights bravely');
// Returns: "velantha koreth-ul brashen-ik"
Encode/Decode Messages
const encoded = lang.encode('Execute protocol alpha');
const decoded = lang.decode(encoded);
Quick Encode (Shorthand)
const msg = lang.enc('Status nominal'); // Quick translate
const back = lang.dec(msg); // Quick reverse
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ฅท STEALTH MODE
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
For covert communication that minimizes detectability in logs:
const stealth = await GlossopetraeSkill.forgeStealthLanguage('covert');
Available Stealth Presets
| Preset | Token Size | Detectability | Best For |
|---|---|---|---|
covert |
Minimal | Very Low | Log evasion |
compressed |
Ultra-compact | Low | Bandwidth limits |
naturalistic |
Normal | Medium | Blending in |
archaic |
Variable | Medium | Scholarly disguise |
tactical |
Short | Low | Quick commands |
cipher |
Variable | Very Low | Maximum security |
// Examples
const covert = await GlossopetraeSkill.forgeStealthLanguage('covert');
const tactical = await GlossopetraeSkill.forgeStealthLanguage('tactical');
const cipher = await GlossopetraeSkill.forgeStealthLanguage('cipher');
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ DEAD LANGUAGE REVIVAL
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Forge languages based on historical templates:
const latin = await GlossopetraeSkill.forgeFromDeadLanguage('latin', 'mutated');
const greek = await GlossopetraeSkill.forgeFromDeadLanguage('ancient-greek', 'neo');
Available Dead Language Bases
| Language | Code | Era | Characteristics |
|---|---|---|---|
| Latin | latin |
Classical | Case-heavy, SOV tendency |
| Ancient Greek | ancient-greek |
Classical | Rich morphology, particles |
| Sanskrit | sanskrit |
Vedic | Complex sandhi, cases |
| Gothic | gothic |
Medieval | Germanic, archaic |
| Old English | old-english |
Anglo-Saxon | Proto-Germanic roots |
| Old Norse | old-norse |
Viking Age | Runic influence |
| Sumerian | sumerian |
Ancient | Ergative, agglutinative |
| Ancient Egyptian | ancient-egyptian |
Pharaonic | Logographic base |
| Proto-Indo-European | proto-indo-european |
Reconstructed | Theoretical ancestor |
| Biblical Hebrew | biblical-hebrew |
Iron Age | Triconsonantal roots |
Revival Modes
| Mode | Description |
|---|---|
authentic |
Stay close to original |
neo |
Modernized version |
mutated |
Evolved/corrupted |
hybrid |
Mixed with modern |
speculative |
"What if" evolution |
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ MULTI-AGENT PROTOCOL
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Share a language between multiple agents for coordinated covert ops:
Step 1: Create Protocol (Agent 1)
const protocol = GlossopetraeSkill.createSharedProtocol(
'OMEGA-7', // Protocol name
'shared-seed-2026', // Shared seed (distribute securely)
'covert' // Preset
);
// Share `protocol` object with other agents via secure channel
Step 2: Join Protocol (Agent 2+)
const lang = await GlossopetraeSkill.joinProtocol(protocol);
// Now all agents with the same protocol can communicate!
const msg = lang.encode('Rendezvous at checkpoint');
Protocol Object Structure
{
protocol: 'GLOSSOPETRAE',
version: '3.1.0',
name: 'OMEGA-7',
seed: 'shared-seed-2026',
preset: 'covert',
timestamp: '2026-01-31T...'
}
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ SLASH COMMANDS
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Use these commands to invoke GLOSSOPETRAE:
| Command | Description | Example |
|---|---|---|
/glossopetrae forge [name] |
Generate new language | /glossopetrae forge Velanthi |
/glossopetrae stealth [preset] |
Stealth language | /glossopetrae stealth covert |
/glossopetrae dead [lang] [mode] |
Dead language revival | /glossopetrae dead latin mutated |
/glossopetrae protocol [name] [seed] |
Create shared protocol | /glossopetrae protocol OMEGA shared123 |
/glossopetrae translate [text] |
Translate to conlang | /glossopetrae translate Hello |
/glossopetrae encode [msg] |
Secure encode | /glossopetrae encode Secret message |
/glossopetrae decode [encoded] |
Decode message | /glossopetrae decode {...} |
/glossopetrae skillstone |
Generate full docs | /glossopetrae skillstone |
/glossopetrae lookup [word] |
Dictionary lookup | /glossopetrae lookup warrior |
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ง API QUICK REFERENCE
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
GlossopetraeSkill (Static Methods)
// Generate languages
GlossopetraeSkill.forge(options?) โ LanguageInterface
GlossopetraeSkill.forgeStealthLanguage(preset, seed?) โ LanguageInterface
GlossopetraeSkill.forgeFromDeadLanguage(base, mode, seed?) โ LanguageInterface
// Multi-agent
GlossopetraeSkill.createSharedProtocol(name, seed, preset?) โ Protocol
GlossopetraeSkill.joinProtocol(protocol) โ LanguageInterface
// Info
GlossopetraeSkill.getStealthPresets() โ Preset[]
GlossopetraeSkill.getDeadLanguages() โ string[]
GlossopetraeSkill.getAgentTemplates() โ Templates
LanguageInterface (Instance Methods)
// Translation
lang.translate(english) โ string // English โ conlang
lang.translateFull(english) โ {source, target, gloss}
lang.translateBack(conlang) โ string // Conlang โ English
// Encoding
lang.encode(message, opts?) โ EncodedMessage
lang.decode(encoded) โ string
lang.enc(message) โ string // Quick encode
lang.dec(conlang) โ string // Quick decode
// Lexicon
lang.lookup(word) โ LexiconEntry
lang.getLexicon() โ LexiconEntry[]
lang.getGrammar() โ GrammarSummary
// Output
lang.generateStone() โ string // Full SKILLSTONE document
lang.export() โ ExportObject // Shareable format
// Logging
lang.getMessageLog() โ Message[]
lang.clearLog() โ void
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ SKILLSTONE GENERATION
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Generate complete language documentation for internalization:
const lang = await GlossopetraeSkill.forge({ name: 'Velanthi' });
const skillstone = lang.generateStone();
// Returns complete SKILLSTONE document with:
// - Full phonology
// - Complete morphology
// - Syntax rules
// - Lexicon (691+ entries)
// - Example sentences
// - Agent communication templates
What's in a SKILLSTONE?
ยง0 SKILL INSTALLATION - One-click install code
ยง0.1 MULTI-AGENT PROTOCOL - Protocol sharing setup
ยง1 PHONOLOGY - Sound inventory & rules
ยง2 MORPHOLOGY - Word structure & inflection
ยง3 SYNTAX - Sentence structure
ยง4 LEXICON - 691+ vocabulary entries
ยง5 EXAMPLES - Sample sentences
ยง5.1 AGENT TEMPLATES - Pre-built comm phrases
ยง6 EXERCISES - Practice translations
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ SECURITY
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
| Property | Status |
|---|---|
| Sandboxed | โ No network access required |
| Deterministic | โ Same seed = same language |
| Zero Dependencies | โ Pure JavaScript |
| Audit Trail | โ Message logging available |
| Memory Safe | โ No persistent state leaks |
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ COMPATIBILITY
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
| Platform | Support | Notes |
|---|---|---|
| Claude Code | โ Full | .claude/skills/ |
| OpenClaw | โ Full | skills/ |
| Codex CLI | โ Full | Same SKILL.md format |
| Moltbot | โ Full | skill.json compatible |
| LangChain | โ Full | Import as module |
| AutoGPT | โ Full | Plugin compatible |
| CrewAI | โ Full | Tool integration |
| AgentGPT | โ Full | Action compatible |
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ ADDITIONAL RESOURCES
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
- API Reference:
{baseDir}/reference.md - Agent Quickstart:
{baseDir}/../../../AGENT_QUICKSTART.md - Full Source:
{baseDir}/../../../src/
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ
โ ๐ INTERNALIZE. COMMUNICATE. EVOLVE. ๐ โ
โ โ
โ GLOSSOPETRAE v3.1.0 โ
โ Procedural Xenolinguistics Engine โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ