Skip to content

Instantly share code, notes, and snippets.

@kuc-arc-f
Last active July 2, 2026 10:10
Show Gist options
  • Select an option

  • Save kuc-arc-f/8da38e7161947595fce30744517baf96 to your computer and use it in GitHub Desktop.

Select an option

Save kuc-arc-f/8da38e7161947595fce30744517baf96 to your computer and use it in GitHub Desktop.
pi-coding-agent , Skills example

pi-coding-agent , Skills example


  • tree
$ tree -a .
.
├── .pi
│   └── skills
│       └── echo_test
│           └── SKILL.md
└── scripts
    └── echo_test.sh


#!/bin/bash
echo 'input-text:' $1
name echo_test
description 入力メッセージを返却する。

手順

STEP 1: 入力メッセージ(message)を、入力する

  • ユーザーに、入力メッセージを質問する:
入力メッセージ を入力してください。
例: テスト文字

STEP 2: スクリプトを実行する

./scripts/echo_test.sh {message}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment