ソース情報
- リポジトリ
- AIOSAI/AIPass
- ソースの最終更新活動
- 2026年8月15日 17:13
- 検出された SKILL.md の言語
- 英語
- スター
- 264
- フォーク
- 36
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AIOSAI/AIPass --skill screen-lockコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Multi-bot Telegram bridge — routes messages between Telegram and Claude tmux sessions
Update branch memory files after completing work. Saves session history, key learnings, and collaboration observations to .trinity/ files.
Session wrap-up. Update memories, check plans, review git state, check inbox, flag loose ends. Use before closing a session or compacting context.
| name | screen_lock |
| description | Password-lock the machine's screen while every process keeps running |
| version | 1.0.0 |
| tags | ["system","control","security"] |
| when_to_use | ["lock the screen","lock the machine","walking away from the desk, keep the agents running"] |
| requires | {"pip":[],"bins":["loginctl"],"config":[]} |
| has_handler | true |
Password-locks the graphical session and leaves everything running — agents keep working behind the password wall. Nothing sleeps, nothing is killed, no root is needed (no sudoers grant, no polkit rule).
Two paths, tried in order:
loginctl lock-session <id> against the explicitly resolved graphical
session. Callers usually run as a systemd --user service with no
XDG_SESSION_ID, so a bare lock-session has no ambient session to resolve
and may refuse — naming the session is what makes the verb work from there.gdbus → org.gnome.ScreenSaver.Lock as the fallback.If both fail it says so. A screen that never locked is never reported as locked.
A destructive action never fires from a locked screen. Lock itself must work from anywhere — that is its whole point.
So this verb is never gated: it does not ask whether the screen is already locked, does not require a desktop environment, and does not refuse when no graphical session can be resolved (it still tries the bare call). Callers that gate other verbs on screen state must leave this one ungated.
| Action | Description |
|---|---|
lock | Lock the screen now; agents keep running |
drone @skills run screen_lock lock
In-process (what the Telegram control bot and the host API verb lane use):
from aipass.skills.lib.screen_lock import handler as screen_lock
result = screen_lock.lock_screen()
# {"locked": True, "method": "loginctl", "session": "3", "error": None}
Use this skill when:
Do NOT use this skill when:
/suspend, a different verb with a
wake, grace-window and reachability story. Lock never suspends.run() returns the standard skill envelope:
{"success": True, "output": "Screen locked via loginctl (session=3)", "error": None}
lock_screen() returns structured detail for programmatic callers:
{"locked": bool, "method": "loginctl" | "dbus" | None, "session": str | None, "error": str | None}
resolve_graphical_session() is public: callers can ask which session is ours
without locking anything.loginctl is the declared requirement; gdbus is the fallback and is not
required for the skill to be usable.wayland/x11, state active, owned by our own uid are
eligible — another user's desktop is never locked.