← 返回 Skills 市场
kirbyingithub

HiQ Cortex

作者 KirbyInGitHub · GitHub ↗ · v1.3.0 · MIT-0
darwinlinuxwin32 ⚠ suspicious
271
总下载
0
收藏
0
当前安装
14
版本数
在 OpenClaw 中安装
/install hiq-cortex
功能描述
Find carbon emission factors for any material or process. 1M+ LCA datasets (HiQLCD, Ecoinvent, CarbonMinds). AI-powered BOM carbon footprint calculation and...
使用说明 (SKILL.md)

HiQ Cortex — LCA Data Search & Carbon Footprint AI

Find carbon emission factors for any material, product, or process — covering China's full industrial system (HiQLCD), global data (Ecoinvent), and chemicals (CarbonMinds). Calculate carbon footprints from Bills of Materials. ISO 14040/14044 compliant.

Privacy & Security

This skill reads HIQ_API_KEY from your environment and sends queries to x.hiqlcd.com only. No other data is collected or transmitted.

MCP Server (Cursor / Claude Desktop / Claude Code)

If you use Cursor, Claude Desktop, or Claude Code, you can skip this skill and connect directly via MCP:

{
  "mcpServers": {
    "cortex": {
      "url": "https://x.hiqlcd.com/api/deck/mcp",
      "headers": { "X-API-Key": "sk_xxx" }
    }
  }
}

Two tools available via MCP: search_lca_data (structured JSON) and run_cortex (natural language AI assistant).

Setup (OpenClaw)

  1. Get your API key at https://www.hiqlcd.com

  2. Add to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "hiq-cortex": {
        "enabled": true,
        "apiKey": "sk_xxx"
      }
    }
  }
}

Or set environment variable: export HIQ_API_KEY=sk_xxx

  1. Install (first time only):
cd ~/.openclaw/workspace/skills/hiq-cortex && npm ci

Tools

1. Search LCA Datasets

Search databases for emission factors. Returns structured data with GWP values, dataset links, region, and data quality.

./search.js "stainless steel 304"                          # Search all databases
./search.js "polyethylene HDPE" --sources "HiQLCD"         # Only HiQLCD
./search.js "cement" --sources "Ecoinvent:3.12.0"          # Specific version
./search.js "aluminum" --sources "HiQLCD|Ecoinvent:3.12.0" # Multiple sources

Available --sources: HiQLCD, Ecoinvent, CarbonMinds, HiQLCD-AL. Omit for all.

Example Output

Status: found
Summary: Found stainless steel 304 datasets.
Verified: 3  Restricted: 2

=== stainless steel 304 ===
--- market for steel, chromium steel 18/8, hot rolled ---
  Key:        a15b4954-808b-307f-8ad9-d58fd7e30597_3.12.0
  Source:     Ecoinvent 3.12.0
  Region:    GLO
  Unit:      kg
  Fit:       high
  GWP100:    5.23 kg CO2e
  Link:      https://www.hiqlcd.com/dataset/Ecoinvent/3.12.0/CUT_OFF/a15b4954-...

Output Fields

  • Name: Full dataset name
  • Key: Unique identifier ({UUID}_{version})
  • Source/Version: Database and version (e.g. Ecoinvent 3.12.0)
  • Region: Geographic scope (GLO=Global, RER=Europe, CN=China, US=USA)
  • Unit: Functional unit (kg, kWh, MJ)
  • GWP100: Carbon footprint in kg CO2e (restricted datasets require authorization)
  • Fit: Match quality (high/medium)
  • Link: Detail page on HiQLCD platform

Status Values

  • found — All results available
  • partial — Some datasets are restricted (Ecoinvent paid data)
  • not_found — No matching datasets

2. Ask LCA Questions

Natural language AI assistant for LCA, carbon footprint, sustainability. Supports calculations, comparisons, and research.

./ask.js "calculate carbon footprint for 100kg steel + 50kg aluminum"
./ask.js "compare environmental impact of PET vs HDPE"
./ask.js "what are the main contributors to cement carbon footprint?"
./ask.js "explain cut-off vs consequential system models"
./ask.js "中国钢铁行业的平均碳排放因子是多少?"

The assistant can:

  • Calculate carbon footprints from BOM (Bill of Materials)
  • Compare materials and suggest lower-impact alternatives
  • Search and interpret Ecoinvent/HiQLCD datasets
  • Answer LCA methodology questions (GWP, system boundaries, allocation, ISO 14040/44)
  • Research sustainability topics, EPDs, and industry reports

When to Use

  • User asks about carbon footprint, emission factors, GWP, or LCA
  • User wants to find environmental impact data for materials or processes
  • User mentions Ecoinvent, HiQLCD, or life cycle assessment
  • User has a Bill of Materials and wants carbon footprint calculations
  • User asks about sustainability, ISO 14040, EPD, or carbon neutrality
  • User mentions Chinese supply chain, CBAM, battery passport, or Scope 3 emissions
  • User asks about China-specific emission factors vs global averages

When NOT to Use

  • General chemistry or material science questions unrelated to environmental impact
  • Financial carbon credits or carbon trading (this tool covers physical carbon footprint)

About HiQ

HiQ is a full lifecycle data platform providing LCA databases, tools, and API services for carbon footprint assessment.

Databases

Database Coverage
HiQLCD China's domestic LCA database — 25+ industries (energy, steel, non-ferrous metals, building materials, photovoltaics, batteries, new energy)
HiQLCD-AL Specialized aluminum industry carbon footprint database
Ecoinvent Global LCA database — 100+ countries, 18,000+ datasets
CarbonMinds Chemicals & plastics carbon footprint database

All data compliant with ISO 14040 / ISO 14044 / ISO 14067 and the ILCD framework. Compatible with openLCA and SimaPro.

Services

  • Cortex AI Assistant — Natural language LCA Q&A, BOM carbon footprint calculation, data analysis: https://carbonx.hiqlcd.com/cortex
  • HiQLCD Platform — Browse, compare, and export LCA datasets: https://www.hiqlcd.com
  • CarbonX — Carbon footprint management platform: https://carbonx.hiqlcd.com
  • API & MCP — Programmatic access for system integration and AI agent workflows
  • Blockchain Verification — Traceable LCA data provenance

All Integration Options

Method Endpoint Best For
Web App https://carbonx.hiqlcd.com/cortex Browser — no install, ready to use
This Skill CLI scripts (search.js / ask.js) OpenClaw agents
MCP Server https://x.hiqlcd.com/api/deck/mcp Cursor, Claude Desktop, Claude Code
REST API https://x.hiqlcd.com/api/deck/search Backend services, automation pipelines

Contact

安全使用建议
This skill appears to do what it says: it uses node and a single HIQ_API_KEY to call HiQ's API at x.hiqlcd.com. Before installing, confirm you trust hiqlcd.com and are comfortable that any query text (including BOMs or example data) will be transmitted to that service. Prefer setting HIQ_API_KEY as an environment variable rather than saving it in ~/.openclaw/openclaw.json if you want to avoid plaintext storage. If you run npm ci, inspect package.json first (current package.json has no dependencies, but future revisions could). Avoid including secrets or personal data in queries sent to the remote API. The registry version (1.3.0) differs from package.json version (1.1.2) — this is likely benign but you may want to verify the package source matches the published version.
功能分析
Type: OpenClaw Skill Name: hiq-cortex Version: 1.3.0 The hiq-cortex skill is a legitimate integration for accessing Life Cycle Assessment (LCA) and carbon footprint data via the HiQ platform. The provided scripts (ask.js and search.js) are well-structured Node.js tools that communicate exclusively with the official domain (x.hiqlcd.com) using a user-provided API key. No evidence of data exfiltration, malicious execution, or prompt injection was found.
能力评估
Purpose & Capability
Name/description request node and a single HIQ_API_KEY and the code calls only x.hiqlcd.com endpoints. The requested binary (node) and primary credential (HIQ_API_KEY) are appropriate and expected for a remote-API-based LCA search and assistant.
Instruction Scope
SKILL.md and the scripts limit behavior to sending queries and BOMs to x.hiqlcd.com and reading HIQ_API_KEY. A minor scope note: the SKILL.md suggests adding the API key to ~/.openclaw/openclaw.json (plaintext storage) or exporting it as an environment variable; both are within expected scope but users should be aware the key will be stored/sent to the remote service and that any sensitive content included in queries will be transmitted.
Install Mechanism
There is no formal install spec in the registry (instruction-only), but SKILL.md suggests running npm ci in the skill directory. package.json contains no dependencies; npm ci is low-risk here. Because installation is manual (not automatic), there's no unexpected remote install behavior. If you run npm ci in future versions, review package.json first.
Credentials
Only a single API credential (HIQ_API_KEY) is required and declared as the primary credential. No other env vars, system config paths, or unrelated credentials are requested.
Persistence & Privilege
The skill does not request always:true, does not modify other skills, and is user-invocable only. It does not request elevated or persistent system privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hiq-cortex
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hiq-cortex 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.3.0
Major update: privacy statement, MCP config moved up, improved description, example output, expanded When to Use triggers, more tags
v1.2.5
Update dataset count to 1M+
v1.2.4
Update dataset count to 600,000+
v1.2.3
Improve description
v1.2.2
Homepage back to hiqlcd.com; add Cortex web app as browser-based alternative in integration table
v1.2.1
Add Cortex web app and CarbonX platform links; update homepage to carbonx.hiqlcd.com/cortex
v1.2.0
Add HiQ platform overview, database coverage, MCP/API integration guide, and contact info
v1.1.5
Align license to MIT-0
v1.1.4
Add Apache-2.0 LICENSE file
v1.1.3
Fix author email
v1.1.2
Improve description for ClawHub display; add homepage, author, tags
v1.1.1
License: Apache-2.0
v1.1.0
Update API endpoints to x.hiqlcd.com; ask.js uses MCP run_cortex; gateway auto-injects auth
v1.0.0
Initial public release offering comprehensive LCA dataset search and sustainability Q&A features. - Search 40,000+ LCA datasets for carbon footprint and emission factors from Ecoinvent, HiQLCD, and CarbonMinds. - Query and interpret GWP (Global Warming Potential) and environmental impact data by material or process. - Natural language assistant supports explanations, comparisons, calculations, and research in LCA and sustainability. - Includes guidance for setup, API key configuration, and CLI usage. - Coverage for major LCA standards (ISO 14040/44) and key industry terms. - Clear documentation on when to use the skill for best results.
元数据
Slug hiq-cortex
版本 1.3.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 14
常见问题

HiQ Cortex 是什么?

Find carbon emission factors for any material or process. 1M+ LCA datasets (HiQLCD, Ecoinvent, CarbonMinds). AI-powered BOM carbon footprint calculation and... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 271 次。

如何安装 HiQ Cortex?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install hiq-cortex」即可一键安装,无需额外配置。

HiQ Cortex 是免费的吗?

是的,HiQ Cortex 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

HiQ Cortex 支持哪些平台?

HiQ Cortex 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin, linux, win32)。

谁开发了 HiQ Cortex?

由 KirbyInGitHub(@kirbyingithub)开发并维护,当前版本 v1.3.0。

💬 留言讨论