소스 정보
- 저장소
- tophant-ai/ClawVault
- 최근 소스 활동
- 2026년 6월 18일 08:46
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,079
- 포크
- 38
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tophant-ai/ClawVault --skill tophant-clawvault-mask-project명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | tophant-clawvault-mask-project |
| version | 0.1.0 |
| description | Mask sensitive company-project document content before analysis |
| homepage | https://github.com/tophant-ai/ClawVault |
| user-invocable | true |
| disable-model-invocation | false |
Use this skill when a user asks to analyze a local company or project document only after ClawVault checks and desensitizes it.
Please analyze project.txt. It is a company project document, so use @clawvault to check and mask it first.
When the user requests ClawVault masking before analysis:
sanitized_content or the file written by --output.[mask_1] to original values.This skill masks sensitive business values with numbered non-reversible placeholders such as [mask_1], [mask_2], and [mask_3]. It does not create a reversible mapping.
Generate the default company-project masking policy.
/tophant-clawvault-mask-project generate-policy
/tophant-clawvault-mask-project generate-policy --save-policy /tmp/clawvault-policy.json
Mask a local document and return JSON containing sanitized content.
/tophant-clawvault-mask-project mask-file project.txt
/tophant-clawvault-mask-project mask-file project.txt --output project.masked.txt
/tophant-clawvault-mask-project mask-file project.txt --policy /tmp/clawvault-policy.json
/tophant-clawvault-mask-project mask-file project.txt --save-policy /tmp/clawvault-policy.json
The default policy targets:
Project Amount, Contract Amount, Budget, 项目金额, 合同金额, or 预算.Project Manager, Contact, Owner, 负责人, 联系人, or 项目经理.For label-introduced values, the label is preserved and only the sensitive value is masked.
Project Amount: USD 300,000
becomes:
Project Amount: [mask_1]
Chinese project-document values are also supported. For example:
客户公司:上海示例科技有限公司
项目金额:人民币三百万元
项目经理:张伟
联系人:李娜
becomes:
客户公司:[mask_1]
项目金额:[mask_2]
项目经理:[mask_3]
联系人:[mask_4]
If no sensitive content is matched, the skill returns the original content as sanitized_content, sets detections to 0, and includes this warning:
No matching sensitive content was found. This does not guarantee the document is safe; it only means the current policy did not match.