hello_world
A sample skill used to verify custom agent infrastructure via basic Python script execution.
Install
mkdir -p .claude/skills/hello-world && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/18913" && unzip -o skill.zip -d .claude/skills/hello-world && rm skill.zipInstalls to .claude/skills/hello-world
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Pythonスクリプトを使ってユーザーに挨拶をするサンプルスキルです。Antigravityカスタムスキルの構造を示すためのデモです。Key capabilities
- →Confirm `scripts/hello.py` exists
- →Execute `python3 .agent/skills/hello_world/scripts/hello.py`
- →Read command output
- →Report output as a friendly message
- →Debug script execution failures
How it works
The skill verifies the presence of a Python script, executes it using `run_command`, and reports its output to the user.
Inputs & outputs
When to use hello_world
- →Testing agent skill registration
- →Verifying Python execution capabilities
- →Demonstrating system functionality
About this skill
Instructions
ユーザーが挨拶を求めた場合、またはカスタムスキルシステムのテストを求めた場合、以下の手順に従ってください:
- スクリプトの存在確認: このスキルディレクトリ内に
scripts/hello.pyが存在するか確認してください。 - スクリプトの実行:
run_commandツールを使用して Python スクリプトを実行してください。- コマンド:
python3 .agent/skills/hello_world/scripts/hello.py
- コマンド:
- 出力の報告: コマンドの出力を読み取り、ユーザーに親しみやすいメッセージと共に報告してください。
もしスクリプトの実行に失敗した場合は、問題をデバッグ(例:ファイル権限やPythonのインストール確認など)して、再試行してください。
Limitations
- →Requires `scripts/hello.py` to be present in the skill directory.
How it compares
This skill demonstrates a specific script execution and output reporting, unlike a generic command line interface.
Compared to similar skills
hello_world side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| hello_world (this skill) | 0 | 5mo | Review | Beginner |
| telegram-bot-builder | 106 | 6mo | Review | Intermediate |
| codex-cli-bridge | 9 | 9mo | Review | Intermediate |
| code-to-music | 17 | 9mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
telegram-bot-builder
davila7
Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategies, and scaling bots to thousands of users. Use when: telegram bot, bot api, telegram automation, chat bot telegram, tg bot.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools
code-to-music
Cam10001110101
Tools, patterns, and utilities for creating music with code. Output as a .mp3 file with realistic instrument sounds. Write custom compositions to bring creativity to life through music. This skill should be used whenever the user asks for music to be created. Never use this skill for replicating songs, beats, riffs, or other sensitive works. The skill is not suitable for vocal/lyrical music, audio mixing/mastering (reverb, EQ, compression), real-time MIDI playback, or professional studio recording quality.
jianying-editor
luoluoluo22
剪映 (JianYing) AI自动化剪辑的高级封装 API (JyWrapper)。提供开箱即用的 Python 接口,支持录屏、素材导入、字幕生成、Web 动效合成及项目导出。
pdf-processing-pro
davila7
Production-ready PDF processing with forms, tables, OCR, validation, and batch operations. Use when working with complex PDF workflows in production environments, processing large volumes of PDFs, or requiring robust error handling and validation.
async-python-patterns
wshobson
Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-blocking operations.