Install
openclaw skills install tomlWrite valid TOML configuration files with correct types and structure.
openclaw skills install toml"..." 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