소스 정보
- 저장소
- johnalbertini14-glitch/openclaw-skills
- 최근 소스 활동
- 2026년 2월 10일 02:02
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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