ソース情報
- リポジトリ
- bobbyroylee/smiteless
- ソースの最終更新活動
- 2026年7月17日 01:38
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/bobbyroylee/smiteless --skill verifyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | verify |
| description | How to build, run, and visually verify Smiteless changes on this machine. |
Dev-run any window directly (imports resolve via the path inserts in each entry file):
cd C:\Users\bobby\smiteless
python ui\smitesettings.py # settings (single-instance mutex "Global\SmitelessSettings")
python ui\smiteprofile.py # profile/home
python smiteless_main.py <cmd> # overlay|widget|settings|profile|phase|login <name>|accounts|...
Health check: python tools\selftest.py (needs network + the League client for the LCU line).
AHK syntax check (must use PowerShell — Git Bash mangles the /switches into paths):
$ahk = "$env:LOCALAPPDATA\Programs\AutoHotkey\v2\AutoHotkey64.exe"
Start-Process $ahk -ArgumentList '/ErrorStdOut','/Validate','<script>.ahk' -Wait -PassThru -NoNewWindow
# exit 0 = clean; the plain `& $ahk` form does not surface the exit code
GUI evidence: windows are Tk. Find by title (FindWindowW(None, "Smiteless Settings")),
scroll with WM_MOUSEWHEEL SendMessage, capture with PrintWindow(PW_RENDERFULLCONTENT) +
GetDIBits so it works while occluded. Never SetForegroundWindow / SetCursorPos clicks —
the user is often mid-game fullscreen. Synthetic WM_LBUTTONDOWN/UP PostMessage at client
coords works on Tk without stealing focus.
Frozen build: dist\build.ps1 → run build\pyi\SmitelessApp\SmitelessApp.exe <cmd> to
verify the shipped artifact. Full release: dist\make-release.ps1 -Version X.Y.Z
(+0.0.1 bumps, CHANGELOG entry first — it feeds the in-app Patch Notes).
Destructive paths: anything that kills the Riot/League clients (lolaccounts.switch)
or fires LCU POSTs mid-queue — don't drive live; test the engine functions and refusal
paths instead.