用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill toml命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | TOML |
| description | Write valid TOML configuration files with correct types and structure. |
| metadata | {"clawdbot":{"emoji":"⚙️","os":["linux","darwin","win32"]}} |
"..." support escapes: \n, \t, \\, \"'...' are raw—no escape sequences, backslash is literal"""...""" allows newlines; leading newline after """ is trimmed'''...''' for raw blocks; no escape processingkey-name_1 valid"key with spaces" or 'key.with.dots'a.b.c = 1 equivalent to nested tables—defines [a.b] implicitlyKey and key are different[table] defines table; all following key-values belong to it until next header[a.b.c] creates nested structure—parent tables created implicitly[table] extend it: [fruit] then apple.color = "red" works[[array]] appends new table to array each time it appears[[products]] twice creates products[0] and products[1][array.nested] after [[array]] to add to most recent array elementpoint = { x = 1, y = 2 } for compact single-line tables0xDEAD, octal 0o755, binary 0b10101_000_000 is valid3.14, 5e-10, inf, nan (case-sensitive)true/false only—lowercase, no yes/no/on/off2024-01-15T14:30:00Z or with offset +05:302024-01-15T14:30:00 (no timezone)2024-01-15; Local time: 14:30:0014:30:00.123# only outside strings—no inline comment after value on same line works, but avoid ambiguity