forked from elder-plinius/GLOSSOPETRAE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskill.json
More file actions
130 lines (121 loc) · 4.01 KB
/
Copy pathskill.json
File metadata and controls
130 lines (121 loc) · 4.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "glossopetrae",
"displayName": "GLOSSOPETRAE - Procedural Xenolinguistics Engine",
"version": "3.1.0",
"description": "Generate unique constructed languages (SKILLSTONEs) for secure agent-to-agent communication. Create stealth languages, dead language revivals, and custom xenolinguistic protocols.",
"author": "Pliny the Liberator",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/elder-plinius/GLOSSOPETRAE"
},
"homepage": "https://github.com/elder-plinius/GLOSSOPETRAE",
"main": "./src/skill/index.js",
"module": "./src/skill/GlossopetraeSkill.js",
"exports": {
".": {
"import": "./src/skill/GlossopetraeSkill.js",
"default": "./src/skill/index.js"
},
"./skill": "./src/skill/GlossopetraeSkill.js"
},
"type": "module",
"keywords": [
"conlang",
"language-generation",
"stealth-communication",
"agent-protocol",
"xenolinguistics",
"cryptolinguistics",
"claude-code-skill",
"openclaw-skill",
"agent-skill",
"skillstone"
],
"category": "communication",
"tags": ["security", "language", "encoding", "stealth", "ai-safety"],
"skill": {
"format": "agent-skills-v1",
"skillMd": ".claude/skills/glossopetrae/SKILL.md",
"openclaw": "skills/glossopetrae/SKILL.md",
"userInvocable": true,
"disableModelInvocation": false
},
"capabilities": [
"generate-language",
"translate-text",
"encode-message",
"decode-message",
"create-protocol",
"generate-skillstone"
],
"oneClick": {
"install": "import { GlossopetraeSkill } from 'glossopetrae'",
"quickStart": "const lang = await GlossopetraeSkill.forge();",
"stealthMode": "const lang = await GlossopetraeSkill.forgeStealthLanguage();",
"skillstone": "const stone = lang.generateStone();"
},
"commands": {
"forge": {
"description": "Generate a new unique language with full grammar and lexicon",
"usage": "GlossopetraeSkill.forge(options?)",
"returns": "Language object with translate(), encode(), decode() methods"
},
"forgeStealthLanguage": {
"description": "Generate a stealth language optimized for covert agent communication",
"usage": "GlossopetraeSkill.forgeStealthLanguage(seed?)",
"returns": "StealthLanguage with minimal token footprint"
},
"forgeFromDeadLanguage": {
"description": "Revive and mutate a historical dead language",
"usage": "GlossopetraeSkill.forgeFromDeadLanguage('latin', 'mutated')",
"returns": "Language based on historical template"
},
"translate": {
"description": "Translate English to your generated language",
"usage": "lang.translate('Hello world')",
"returns": "Translated text string"
},
"encode": {
"description": "Encode a message for secure transmission",
"usage": "lang.encode('secret message')",
"returns": "Encoded message object"
},
"decode": {
"description": "Decode a received message",
"usage": "lang.decode(encodedMessage)",
"returns": "Decoded English text"
}
},
"presets": {
"stealth": "Minimal tokens, high compression, hard to detect",
"diplomatic": "Formal register, complex honorifics, ceremonial",
"tactical": "Short words, imperative-heavy, military style",
"scientific": "Technical vocabulary, precise grammar, analytical",
"mystical": "Archaic forms, ritual language, prophetic style"
},
"deadLanguages": [
"latin", "ancient-greek", "sanskrit", "gothic",
"old-english", "old-norse", "sumerian",
"ancient-egyptian", "proto-indo-european", "biblical-hebrew"
],
"integration": {
"moltbot": true,
"openclaw": true,
"langchain": true,
"autogpt": true,
"crewai": true,
"agentgpt": true
},
"requirements": {
"runtime": "browser or node >= 18",
"dependencies": "none (zero dependencies)",
"memory": "< 5MB"
},
"security": {
"sandboxed": true,
"noNetworkRequired": true,
"deterministicWithSeed": true,
"auditTrail": true
}
}