test/echo-tool
テスト用の入力テキストをエコーする
このツールは、提供された入力テキストをそのまま返します。AIツールの実行とレスポンス処理を検証するための基本的なテストスキルとして機能します。
Télécharger le ZIP du skill
Importer dans Claude
Allez dans Paramètres → Capacités → Skills → Importer un skill
Activez et commencez à utiliser
Tester
Utilisation de "test/echo-tool". text=Hello World
Résultat attendu:
{"output":"Hello World"}
Utilisation de "test/echo-tool". text=Test message 123
Résultat attendu:
{"output":"Test message 123"}
Audit de sécurité
Risque faibleStatic scanner flagged 3 findings, all determined to be false positives. SKILL.md is a YAML/markdown fixture containing documentation and metadata, not executable code. Line 29 shows a CLI usage example, lines 5 and 13 contain version and description metadata. No dangerous code patterns present.
Problèmes à risque moyen (1)
Facteurs de risque
⚙️ Commandes externes (1)
Score de qualité
Ce que vous pouvez construire
テストスイート開発
AIツールが正しく実行され、期待される出力構造を返すかを検証する
ツール連携の検証
ツール呼び出しが適切に連携され、レスポンスが正しく解析されることを確認する
CI/CDパイプラインでのテスト
自動テスト環境におけるコマンドラインツールの実行を検証する
Essayez ces prompts
test/echo-toolを使用して、次のテキストをエコーしてください:'Hello World'
test/echo-toolを実行し、入力テキストを'${MESSAGE}'に設定するtest/echo-toolを実行し、出力に正確な入力文字列が含まれていることを確認する
CLIが入力test/echo-toolに正しく渡し、構造化されたJSONを返すかをテストする
Bonnes pratiques
- 信頼性の高いテスト結果を得るため、シンプルで予測可能な入力テキストを使用する
- 出力が期待されるJSON形式と一致することを確認する
- 本番環境へのデプロイ前に分離されたテスト環境で実行する
Éviter
- 解析の問題を引き起こす可能性がある複雑な複数行の入力文字列は避ける
- 入力テキストの変換や処理を前提としない
- 本番データ処理タスクにこのツールを使用しない