スキル一覧に戻る
AnveshJarabani

screenshot

by AnveshJarabani

all config files

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: screenshot description: Get the latest screenshot from ShareX and display it in the conversation user: true

Screenshot - Latest ShareX Screenshot

Instructions

When the user runs /screenshot, you should:

  1. Find the latest screenshot from ShareX Screenshots folder:

    C:\Users\AnveshJarabani\Downloads\sharex\Screenshots
    

    WSL path: /mnt/c/Users/AnveshJarabani/Downloads/sharex/Screenshots

  2. Use the Read tool to display the image in the conversation

  3. Show the image filename and timestamp

Implementation

# Find latest screenshot (all common image formats)
SHAREX_DIR="/mnt/c/Users/AnveshJarabani/Downloads/sharex/Screenshots"
LATEST=$(find "$SHAREX_DIR" -type f \( -name "*.png" -o -name "*.jpg" -o -name "*.jpeg" -o -name "*.gif" -o -name "*.bmp" \) -printf '%T@ %p\n' 2>/dev/null | sort -rn | head -1 | cut -d' ' -f2-)

if [ -n "$LATEST" ]; then
    echo "Latest screenshot: $(basename "$LATEST")"
    echo "Created: $(date -r "$LATEST" '+%Y-%m-%d %H:%M:%S')"
    # Then use Read tool to display it
else
    echo "No screenshots found in ShareX folder"
fi

Steps

  1. Use Bash to find the latest image file (any format: png, jpg, jpeg, gif, bmp)
  2. Show the filename and creation time
  3. Use Read tool to display the image (Read supports image files)
  4. Ask user if they want to analyze or discuss the screenshot

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です