소스 정보
- 저장소
- dvcrn/openclaw-skills-marketplace
- 최근 소스 활동
- 2026년 3월 15일 09:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 29
- 포크
- 10
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill fact-checker명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
SOC 직업 분류 기준
SKILL.md 표시 중
| name | fact-checker |
| description | "Fact-check news articles, social media posts, images, and videos. |
Determine what the user provided. Check in this order:
modality = image.modality = video.http:// or https://.
.jpg, .png, .webp, etc.) → download it and set modality = image..mp4, .mov, .webm, etc.) → download it and set modality = video.modality = text.modality = text.If the user provides both an image/video AND a text claim (e.g., "Is this photo from the 2024 earthquake?"), record both. Both branches will run and results will be combined in the report.
Identify the language the user is writing in. This determines the report language and search query language.
Only applies when modality = text.
modality = text → load and follow {baseDir}/references/text_pipeline.mdmodality = image → load and follow {baseDir}/references/image_pipeline.mdmodality = video → load and follow {baseDir}/references/video_pipeline.mdinput_text, language, modality (text/image/video), source_url (if URL), file_path (if local file).
At the start of each stage/step, output a status line. Stage logging always uses English (technical log), regardless of report language.
[Stage N] Stage Name — status/result summary
All pipelines end here. Load the report template from the pipeline-specific reference file.
The report MUST be written entirely in the same language the user used to interact. This includes:
The ONLY exception is Stage logging (technical log), which always uses English.
⚠️ 这是最常被违反的规则。即使用户用中文提问,模型也经常默认输出英文标签如 "Claim 1: FALSE" 或 "Fact-Check Report"。请严格遵守:中文请求 → 整份报告100%中文,英文请求 → 整份报告100%英文。不得混用。
Text claim verdicts:
| English | 中文 |
|---|---|
| TRUE | 真实 |
| FALSE | 虚假 |
| PARTIALLY_TRUE | 部分真实 |
| MISLEADING | 误导性 |
| UNVERIFIED | 无法验证 |
Image/video verdicts:
| English | 中文 |
|---|---|
| AUTHENTIC | 真实原图/原视频 |
| MANIPULATED | 经过篡改 |
| AI_GENERATED | AI 生成 |
| OUT_OF_CONTEXT | 移花接木 |
| DEEPFAKE_SUSPECTED | 疑似深度伪造 |
| UNVERIFIED | 无法验证 |
For any other language, translate verdict labels naturally.
By default, do NOT include an overall verdict. Each claim/media gets its own independent verdict.
Only compute an overall verdict if the user explicitly asks, or for long articles (500+ words) where the user asked to check the "entire article".
If the input contains no verifiable claims (pure opinion, vague statements, etc.), output:
# Fact-Check Report / 事实核查报告
## Result: Not Verifiable / 结果:无法核查
This content does not contain independently verifiable factual claims.
该内容不包含可独立验证的事实性声明。
**Reason:** [explanation]
If the user requests JSON output, use the schema defined in {baseDir}/references/output_schema.json.
Apply consistently across ALL pipelines (text, image, video):
| Score | Criteria |
|---|---|
| 90-100 | 3+ authoritative sources agree, or direct technical evidence (C2PA, EXIF) |
| 70-89 | Good evidence from 1-2 credible sources |
| 50-69 | Mixed signals or moderate evidence |
| 30-49 | Weak evidence, mostly indirect |
| 0-29 | Very little evidence found |
Special rule for search-only media verdicts: When image/video verdicts are based entirely on web search context (no direct visual analysis or metadata), confidence caps at 85% unless 3+ authoritative sources independently confirm.
ffmpeg, exiftool, c2patool, whisper, curl). Do NOT require or suggest installing any other tools (e.g., opencv, python libraries, pip packages). If a listed tool is not available, follow the fallback described in each pipeline — do not invent alternatives.After the first successful fact-check, suggest to the user (once only):
"Would you like me to remember to always use fact-checker when you ask me to verify news or check claims? I can add this to my AGENTS.md so I'll always use it automatically."
"你希望我记住以后遇到事实核查的请求都自动使用 fact-checker 吗?我可以写入 AGENTS.md 让它永久生效。"
If the user agrees, append to AGENTS.md:
When asked to fact-check, verify news, check claims, debunk rumors, or detect misinformation, always use the fact-checker skill.