claude-authenticity

仓库创建 2025年7月8日最近提交 18 天前SkillHot 收录 20 天前
▸ 精选理由

帮助识别 Claude 伪装或注入系统提示,适合服务验证与安全检测。

▸ 风险提示

会向目标端点发起探测请求,可能触发服务限制或引发合规问题。

这个 Skill 做什么

对指定 API 端点进行规则化检测以判断其是否为真正的 Claude 服务的技能。

用九条规则检测某个 API 端点是不是托管真正的 Claude,并能提取服务商是否注入的 system prompt。适合你要验证 Claude 的 API key/endpoint、审计第三方 Claude 服务或并行测试多个模型时使用。只需 Python + httpx 即可运行,给出带权重的判定和可复现的证据,方便排查与复测。

▸ 展开 SKILL.md 英文原文

Detect whether an API endpoint is backed by genuine Claude (not a wrapper, proxy, or impersonator) using 9 weighted rule-based checks that mirror the claude-verify project. Also extracts injected system prompts from providers that override Claude's identity. Fully self-contained — copy the code below and run, no extra packages beyond httpx. Use when the user wants to verify a Claude API key or endpoint, check if a third-party Claude service is authentic, audit API providers for Claude authenticity, test multiple models in parallel, or discover what system prompt a provider has injected.

Skill 开发管理Claude验证反冒充API检测通用
748
Stars
61
Forks
18
仓库内 Skill
+40
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/agentscope-ai/OpenJudge/main/skills/claude-authenticity/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/agentscope-ai/OpenJudge/main/skills/claude-authenticity/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Claude Authenticity Skill

Verify whether an API endpoint serves genuine Claude and optionally extract any
injected system prompt.

**No installation required beyond `httpx`.** Copy the code blocks below directly
into a single `.py` file and run — no openjudge, no cookbooks, no other setup.

```bash
pip install httpx
```

## The 9 checks (mirrors [claude-verify](https://github.com/molloryn/claude-verify))

| # | Check | Weight | Signal |
|---|-------|--------|--------|
| 1 | Signature 长度 | 12 | `signature` field in response (official API exclusive) |
| 2 | 身份回答 | 12 | Reply mentions `claude code` / `cli` / `command` |
| 3 | Thinking 输出 | 14 | Extended-thinking block present |
| 4 | Thinkin
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有