skills/lr/SKILL.md
Use lr through the local bridge and CLI to inspect configured hosts, test connections, run commands, transfer files, and query audit logs. Suitable for single-agent and multi-agent workflows in Codex and Pi.
npx skillsauth add adfoke/alma-linux-remote-plugin lrInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill is for Linux remote operations through the local lrt-codex bridge.
It is also the orchestration layer for single-agent and multi-agent use.
Use it when the user wants to:
This skill is intentionally thin. It does not reimplement SSH logic. It calls the existing local bridge and CLI. Platform wrappers only expose this skill or forward to the shared runtime.
hosts.yaml must exist in the project roothosts.yamluv run lrt-codex invoke list_hostsuv run lrt-codex invoke test_connection --args '{"host_name":"my-server"}'uv run lrt-codex invoke run_command --args '{"host_name":"my-server","command":"uname -a"}'uv run lrt-codex invoke upload_file --args '{"host_name":"my-server","local_path":"./a.txt","remote_path":"/tmp/a.txt"}'uv run lrt-codex invoke download_file --args '{"host_name":"my-server","remote_path":"/tmp/a.txt","local_path":"./a.txt"}'uv run lrt-codex invoke query_audit_logs --args '{"limit":10}'test_connection_batchrun_command_batchupload_file_batchdownload_file_batchuv run lrt-codex invoke ...hosts.yaml is missing, stop and ask the user to configure it first.envlrt-codex invoke returns JSON on stdoutsrc/linux_remote_tool/runtime_adapter.pytools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.