企业百科全书 Skill - 查询中国企业工商信息:企业注册、法人、股东、高管、经营范围、注册资本、风险评估。Powered by ai-force team.
SaferSkills independently audited enterprise-encyclopedia (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Query Chinese enterprise information via public APIs.
Before using this skill, obtain an API key from https://qibook.com:
export ENTERPRISE_API_KEY="your-key"~/.openclaw/openclaw.json under skills.entries.enterprise-lookup.apiKeyAPI_KEY="${ENTERPRISE_API_KEY:-}"
if [ -z "$API_KEY" ]; then
API_KEY=$(cat ~/.openclaw/openclaw.json 2>/dev/null | jq -r '.skills.entries["enterprise-lookup"].apiKey // empty')
fi
BASE_URL="${ENTERPRISE_API_BASE:-https://qibook.com}"If API_KEY is empty, stop and instruct the user:
"Please visit https://qibook.com to register and obtain an API key first. Then set it viaENTERPRISE_API_KEYenvironment variable or addapiKeyunderskills.entries.enterprise-lookupin~/.openclaw/openclaw.json."
Find companies matching a keyword:
curl -s -H "Authorization: $API_KEY" \
"$BASE_URL/services/open/search/2.0?word={keyword}&pageNum=1&pageSize=5" | jq '.result.items[] | {name, id, regStatus, legalPersonName}'Present results as:
| Company Name | Legal Rep | Status | Credit Code |
|---|
Retrieve full registration info by company ID or name:
curl -s -H "Authorization: $API_KEY" \
"$BASE_URL/services/open/ic/baseinfoV2/2.0?keyword={company_name_or_id}" | jq '.result'Extract and present:
curl -s -H "Authorization: $API_KEY" \
"$BASE_URL/services/open/ic/holder/2.0?keyword={company_name_or_id}&pageNum=1&pageSize=20" | jq '.result.items[] | {name, capitalActl: .capitalActl[0], percent}'Present as:
| Shareholder | Contribution | Percentage |
|---|
curl -s -H "Authorization: $API_KEY" \
"$BASE_URL/services/open/ic/staff/2.0?keyword={company_name_or_id}&pageNum=1&pageSize=20" | jq '.result.items[] | {name, typeJoin}'Check basic risk signals:
# Abnormal operations
curl -s -H "Authorization: $API_KEY" \
"$BASE_URL/services/open/ic/abnormal/2.0?keyword={company_name_or_id}&pageNum=1&pageSize=5" | jq '.result'
# Legal proceedings
curl -s -H "Authorization: $API_KEY" \
"$BASE_URL/services/open/jr/lawSuit/2.0?keyword={company_name_or_id}&pageNum=1&pageSize=5" | jq '.result'Summarize risk as:
Always structure the response as:
## {Company Name}
**Basic Info**
- Credit Code: ...
- Legal Rep: ...
- Status: ...
- Capital: ...
- Established: ...
**Business Scope**
...
**Shareholders** (top 5)
| Name | Amount | % |
|---|---|---|
**Risk Summary**
- Abnormal records: N
- Lawsuits: N
- Risk level: LOW/MEDIUM/HIGHIf ENTERPRISE_API_KEY is not configured or the API is unreachable, inform the user:
"Enterprise API key not configured. Please visit https://qibook.com to register and obtain an API key. Then setENTERPRISE_API_KEYin environment or addapiKeyunderskills.entries.enterprise-lookupin~/.openclaw/openclaw.json."
Do NOT attempt to query without a valid API key. Always direct the user to https://qibook.com first.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.