Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill skill-name명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | skill-name |
| description | | Use when this capability is needed. |
Philosophy: Default to natural language. Use scripts ONLY for deterministic operations, complex I/O, or external API integration.
[Concise example showing the most common use case - assume Claude is smart]
Example:
# Process document
python3 scripts/process.py input.pdf --output result.txt
Use this skill when:
DO NOT use when:
Use when: [Specific trigger or scenario]
Steps:
Example:
1. Check if document exists: `ls docs/*.pdf`
2. If PDF found: Extract text using `scripts/extract.py`
3. If no PDF: Search for DOCX alternatives
4. Validate output has non-zero size
Common Issues:
[Follow same pattern as Workflow 1]
For detailed information, see:
Note: Claude loads these files ONLY when needed (progressive disclosure).
Why this script is needed: [ONE of these justifications]:
Usage:
python3 scripts/script-name.py --arg value
Arguments:
--arg: DescriptionOutput:
Expected output format
Error Handling: Script handles these errors explicitly (doesn't punt to Claude):
Why needed: [Justification - e.g., "Bash validation faster than Python for simple checks"]
Usage:
./scripts/validation-script.sh file.txt
Returns:
# Unit tests
pytest tests/unit/ -v
# Integration tests
pytest tests/integration/ -v
# Specific test
pytest tests/test_specific.py::test_function -v
Current coverage: XX%
pytest --cov=scripts --cov-report=html
open htmlcov/index.html
Scenario: [Describe the situation]
Input:
[What user provides]
Process:
1. Claude reads input
2. Validates format
3. Calls script if needed: `python3 scripts/process.py`
4. Formats output
Output:
[What user gets]
[Same structure as Example 1]
This skill integrates with:
Agents that use this skill:
| Variable | Required | Default | Description |
|---|---|---|---|
VAR_NAME | No | default | What this controls |
Create ~/.config/skill-name/settings.yml:
option1: value1
option2: value2
Issue: Script fails with "Module not found"
Solution:
pip install required-package
Issue: Permission denied
Solution:
chmod +x scripts/*.sh
chmod +x scripts/*.py
Issue: Output is empty
Solution: Check input file format. Expected: [format description]
pytest -v❌ DON'T:
✅ DO:
Skill maintained by: [Team/Person] Last updated: YYYY-MM-DD Questions: Contact [channel/person]
Converted and distributed by TomeVault — claim your Tome and manage your conversions.