ワンクリックで
sns
View the newest screenshot(s) from the user's Screenshots folder. Use when user says SNS, SNS2, SNS3, or asks to see a screenshot.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
View the newest screenshot(s) from the user's Screenshots folder. Use when user says SNS, SNS2, SNS3, or asks to see a screenshot.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
GDScript coding standards for The Sparkling Farce. Use when writing or reviewing code for style compliance.
Where to place game content vs platform code. Use when creating new files or moving existing code.
Run the project test suite. Use when user mentions "diagnostics", "run level 1 diagnostics", or asks to run tests.
Core development philosophy - fix platform code, not mod content. Load when making decisions about what to fix or implement.
Correct patterns for accessing game resources via ModLoader registry. Use when loading characters, items, abilities, or any mod content.
Reference for preferred UNIX tools over LLM processing. Use when processing JSON, text, searching files, or doing batch operations.
| name | sns |
| description | View the newest screenshot(s) from the user's Screenshots folder. Use when user says SNS, SNS2, SNS3, or asks to see a screenshot. |
The user uses SNS (Screenshot Navigation System) to share screenshots with you.
| Command | Action |
|---|---|
SNS | View the 1 newest screenshot |
SNS2 | View the 2 newest screenshots |
SNS3 | View the 3 newest screenshots |
~/Pictures/Screenshots/# Find newest screenshot
ls -t ~/Pictures/Screenshots/*.png | head -1
# Find 2 newest
ls -t ~/Pictures/Screenshots/*.png | head -2
# Find 3 newest
ls -t ~/Pictures/Screenshots/*.png | head -3
-t) to get newest first