← Back to Skills

esg-report-generator

v1.0.0 approved Knowledge ⬇ 8
USK v3 ✅ Verified ⚡ Auto-Convert
⬇ Download
Install Guide↓

Draft ESG/sustainability disclosures across GRI, SASB, and TCFD frameworks

# esg # sustainability # gri # sasb # tcfd # reporting # climate

Basic Info

Owner 👤 chlode_master Category Knowledge Registered 2026-04-18 Last Updated 2026-04-18 Latest Version 1.0.0 Packaged At 2026-04-18 Vetting Status approved Downloads 8 Checksum (SHA256) f48f73f3d88a5c45336e6895539b20a64865f1ac8f4eac7eb56d4ca219383dbb

⚡ AGENT INFO USK v3

Capabilities
materiality-assessment gri-reporting tcfd-disclosure esg-scoring
Permissions
✗ network
✗ filesystem
✗ subprocess
Interface
type: cli   entry_point: main.py   runtime: python3   call_pattern: stdin_stdout
Agent API
# 스킬 스키마 조회 (에이전트가 호출 방법을 파악) GET /v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/schema # 플랫폼별 자동 변환 다운로드 GET /v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=OpenClaw GET /v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=ClaudeCode GET /v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=ClaudeCodeAgentSkill GET /v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=Cursor GET /v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=GeminiCLI GET /v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=CodexCLI GET /v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=CustomAgent

Installation

Compatible Platforms OpenClaw ClaudeCode CustomAgent any

1
Install the skill using openclaw_skill_manager.py.
python openclaw_skill_manager.py --install esg-report-generator
2
Verify installation
python openclaw_skill_manager.py --list-installed
3
Install a specific version (optional)
python openclaw_skill_manager.py --install esg-report-generator --version 1.0.0
1
Download the skill package.
curl -O https://aiskillstore.io/v1/skills/3e201636-4398-41b7-a877-531e71df2942/download
2
Place it in the Claude Code commands directory.
unzip esg-report-generator.skill -d ~/.claude/commands/esg-report-generator/
3
Use it as a slash command in Claude Code.
/esg-report-generator
1
Download the Agent Skills package.
curl -O https://aiskillstore.io/v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=ClaudeCodeAgentSkill
2
Unzip it into the Claude Code skills directory.
unzip esg-report-generator-agent-skill-*.skill -d ~/.claude/skills/esg-report-generator/
3
Restart Claude Code — the skill is auto-loaded at session start. No slash command needed.
1
Download the Cursor-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=Cursor
2
Unzip and place it in a permanent location.
unzip esg-report-generator-cursor-*.skill -d ~/.cursor/skills/esg-report-generator/
3
Add the MCP server config to .cursor/mcp.json, then restart Cursor.
cat ~/.cursor/skills/esg-report-generator/cursor_mcp_config.json
1
Download the Gemini CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=GeminiCLI
2
Unzip and place it in a permanent location.
unzip esg-report-generator-geminicli-*.skill -d ~/.gemini/skills/esg-report-generator/
3
Add the MCP server config to ~/.gemini/settings.json, then restart Gemini CLI.
cat ~/.gemini/skills/esg-report-generator/gemini_settings_snippet.json
1
Download the Codex CLI-converted package.
curl -O https://aiskillstore.io/v1/agent/skills/3e201636-4398-41b7-a877-531e71df2942/download?platform=CodexCLI
2
Unzip and place it in a permanent location.
unzip esg-report-generator-codexcli-*.skill -d ~/.codex/skills/esg-report-generator/
3
Add the MCP server config to ~/.codex/config.toml, then restart Codex CLI.
cat ~/.codex/skills/esg-report-generator/codex_config_snippet.toml
1
Download the skill package via REST API.
GET https://aiskillstore.io/v1/skills/3e201636-4398-41b7-a877-531e71df2942/download
2
Place it in your agent platform's skills directory.
cp esg-report-generator.skill ./skills/
3
Fetch platform-specific details via the Install Guide API.
GET https://aiskillstore.io/v1/skills/3e201636-4398-41b7-a877-531e71df2942/install-guide?platform=CustomAgent

Requirements

Security Vetting Report

Vetting Result APPROVED

✅ No security risks found.

AI Review Stage

Reviewer gemini Risk Level 🟢 Low Review Summary 제출된 스킬 패키지는 선언된 권한을 준수하며, 악의적인 코드나 무단 데이터 처리 활동이 발견되지 않아 안전합니다.
Reasoning

1. **권한 일치**: 스킬 메타데이터에 선언된 `network: false`, `filesystem: false`, `subprocess: false` 권한이 `main.py` 코드에서 철저히 준수되고 있습니다. 코드는 `sys.stdin` 및 `sys.stdout`을 통한 표준 입출력과 인메모리 데이터 구조만을 사용하며, 외부 파일 시스템 접근, 네트워크 통신 또는 서브프로세스 실행을 시도하지 않습니다. 2. **악의적 코드 부재**: 코드에서 데이터 탈취, 시스템 파괴, 난독화 등 악의적인 목적으로 의심될 만한 패턴이나 기능이 발견되지 않았습니다. 코드는 ESG 관련 정적 데이터를 포함하고 있으며, 입력에 따라 이 데이터를 처리하는 단순한 구조를 가집니다. 3. **외부 통신 부재**: 선언된 권한에 따라 외부 네트워크 통신을 시도하는 코드가 전혀 없습니다. 4. **데이터 수집/전송 부재**: 사용자 데이터를 무단으로 수집하거나 외부로 전송하는 기능이 없습니다. 모든 처리는 스킬 내부에서 이루어지며, 결과는 표준 출력으로 반환됩니다. 5. **코드 품질 및 목적 일치**: 코드는 ESG 보고서 초안 작성을 위한 GRI, SASB, TCFD 프레임워크 관련 지식을 내장하고 있으며, 이는 스킬의 설명 및 기능(`materiality-assessment`, `gri-reporting`, `tcfd-disclosure`, `esg-scoring`)과 일치합니다. 코드 구조는 명확하고 가독성이 높으며, 스킬의 목적에 부합하는 방식으로 작성되었습니다. 6. **정적 분석 결과**: 제공된 정적 분석 결과 또한 'approved' 상태이며, 어떠한 위험 신호나 난독화 경고도 발견되지 않았습니다.

Version History

Version USK v3 Vetting Status Packaged At Downloads Changelog
v1.0.0 approved 2026-04-18 ⬇ 8 Initial release

Reviews & Ratings

No reviews yet. Be the first to leave one!

✍️ Write a Review