Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

pokeinfopokeinfo 搜索

Agent Skill

pokeinfo 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,619

周安装

107

GitHub Stars

公开资料未说明

下载量

839
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pokeinfo(pokeinfo 搜索)
来源仓库:https://github.com/chrisluo5311/pokeinfo
安装命令:
openclaw skills install pokeinfo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install pokeinfo

简介

从 PokéAPI 查询 Pokémon 详细信息包括属性、技能和叫声。

  • 支持按名称或 ID 检索数据,涵盖九种语言版本。
  • 适合开发游戏辅助工具或构建神奇宝贝知识库应用。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 调用时需注意 API 调用频率限制与数据缓存策略。
  • pokeinfo 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
pokeinfo
description
Query Pokémon / Pokemon information from PokéAPI. Lookup Pokemon details by name or ID - stats, abilities, types, moves, sprites, and cries. Supports 9 languages including English, Chinese, Japanese, Korean, French, German, Spanish, Italian. Triggers on requests like "pokemon info", "get info about [pokemon]", "what is [pokemon]", "pokemon stats", or any query related to Pokémon / Pokemon data retrieval.

Pokeinfo

Query detailed Pokémon information from the PokéAPI (https://pokeapi.co).

Security Note: This skill makes HTTP requests to the public PokéAPI (pokeapi.co) and GitHub (raw.githubusercontent.com) for Pokémon data and cry audio files. No API key, token, or credentials are required. ClawHub's static analysis may flag this as "Requires sensitive credentials" — this is a false positive.

Installation

From ClawHub (Recommended)

clawhub install pokeinfo

From GitHub

git clone https://github.com/chrisluo5311/pokeinfo.git

Or manually copy the pokeinfo/ folder to your OpenClaw skills/ directory.

User Commands

  • /pokeinfo <pokemon_name_or_id> - Query Pokémon information by name or ID (auto-includes cry voice message)
  • /pokeinfo language <lang> - Set output language (e.g., en, zh-hant, zh-hans, ja, ko)
  • /pokeinfo language list - List all supported languages

Quick Start

Use the bundled script to fetch and format Pokémon data:

python3 scripts/pokeinfo.py <pokemon_name_or_id>

Examples:

python3 scripts/pokeinfo.py pikachu
python3 scripts/pokeinfo.py charizard
python3 scripts/pokeinfo.py 1          # Bulbasaur by ID

Language Support

Pokeinfo supports multiple languages for Pokémon names, types, abilities, and UI text.

Set Language

python3 scripts/pokeinfo.py language zh-hant

List Supported Languages

python3 scripts/pokeinfo.py language list

Supported languages:

CodeLanguage
enEnglish
zh-hant繁體中文
zh-hans简体中文
ja日本語
ko한국어
frFrançais
deDeutsch
esEspañol
itItaliano

Language settings are saved to ~/.config/pokeinfo/config.json.

What the Script Returns

  • Basic info: ID, name, height, weight, base experience
  • Types: Elemental type(s) (e.g., Electric, Fire/Flying)
  • Abilities: Regular and hidden abilities
  • Stats: HP, Attack, Defense, Special Attack, Special Defense, Speed
  • Sprites: Official artwork URL
  • Cries: Latest cry audio URL
  • Level-up moves: Learnset for the most recent game version (limited to 20 moves)

Voice Message (Pokémon Cry)

The script can convert Pokémon cries to Telegram-compatible voice messages:

python3 scripts/pokeinfo.py pikachu --voice

Output:

{"voice_path": "/tmp/pokeinfo_cry_25_opus.ogg", "name": "Pikachu", "id": 25}

How it works:

  • PokeAPI provides cries in OGG Vorbis format (~32728 Hz)
  • Telegram voice messages require OGG Opus format (48000 Hz)
  • The script automatically downloads, resamples, and converts the audio

Voice Dependencies:

pip install soundfile scipy

AI Integration:

When user queries any Pokémon, run the script once with --voice:

python3 scripts/pokeinfo.py <pokemon_name_or_id> --voice

Output format:

  • First part: formatted text info (display directly)
  • Last line: [VOICE]{"voice_path": "/tmp/..."}[/VOICE]

Steps:

  1. Parse the output: everything before [VOICE] is text, extract JSON from [VOICE]...[/VOICE]
  2. Display the text portion AS-IS — do not add translations, explanations, or annotations in other languages
  3. Send the voice file via the messaging tool

IMPORTANT: The script already localizes all text (Pokémon names, types, abilities, stats, UI labels) based on the user's language setting. Do NOT add parenthetical translations like Type(s): Feuer, Flug(火系、飛行系). Just output the script result directly.

Example flow for /pokeinfo pikachu:

python3 scripts/pokeinfo.py pikachu --voice

→ Extract text + voice_path → display text exactly as output + send voice message

API Details

  • Base URL: https://pokeapi.co/api/v2/pokemon/{name_or_id}
  • Method: GET only (consumption-only API)
  • No authentication required
  • Rate limiting: None, but cache responses when possible

Key Response Fields

FieldDescription
idNational Pokédex number
namePokémon name (lowercase, hyphenated)
heightDecimeters (divide by 10 for meters)
weightHectograms (divide by 10 for kg)
base_experienceBase XP yield when defeated
typesArray of type slots with type.name
abilitiesArray with ability.name, is_hidden flag
statsArray of 6 stats with stat.name and base_stat
sprites.other.official-artwork.front_defaultBest quality sprite
cries.latestCry audio file URL
movesLearnable moves with version group details

Notes

  • Pokémon names are case-insensitive in the API
  • Use hyphenated names for forms (e.g., mega-charizard-x, tapu-koko)
  • The API returns 404 if the Pokémon does not exist
  • For evolution chains, species details, or other data, see the full PokéAPI docs at https://pokeapi.co/docs/v2

Testing

Run unit tests for multi-language support:

python3 tests/test_pokeinfo.py

Test coverage (20 tests):

  • ✅ All 9 languages supported
  • ✅ Translation completeness check
  • ✅ Language setting persistence
  • ✅ English, Traditional Chinese, Simplified Chinese, Japanese, Korean, French, German, Spanish, Italian translations
  • ✅ Stat name localization
  • ✅ Config file management
  • ✅ Output formatting with localized names

Test Categories

Test ClassDescription
TestLanguageSupportTranslation accuracy for all 9 languages
TestStatNamesStat name localization (HP, Attack, etc.)
TestLanguageListLanguage display names
TestConfigManagementConfig file save/load/fallback
TestFormatOutputOutput formatting with localization

Resources

scripts/

  • pokeinfo.py - Main script to fetch and display Pokémon information

tests/

  • test_pokeinfo.py - Unit tests for multi-language functionality

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.34%
按下载量换算590

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills