SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/CodySwannGT/lisa --skill lisa-openclaw-setupコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
This skill should be used for any non-trivial request — features, bugs, stories, epics, spikes, or multi-step tasks. It accepts a ticket URL (Jira, Linear, GitHub), a file path containing a spec, or a plain-text prompt. It assembles an agent team, breaks the work into structured tasks, and manages the full lifecycle from research through implementation, code review, deploy, and empirical verification.
any non-trivial request —…
This skill should be used for any non-trivial request — features, bugs, stories, epics, spikes, or multi-step tasks. It accepts a ticket URL (Jira, Linear, GitHub), a file path containing a spec, or a plain-text prompt. It assembles an agent team, breaks the work into structured tasks, and manages the full lifecycle from research through implementation, code review, deploy, and empirical verification.
| name | lisa-openclaw-setup |
| description | Set up OpenClaw as the… |
Verify the OpenClaw runtime prerequisites and record a minimal, placeholder-safe pointer in
.lisa.config.json so the connect skills have what they need. This skill writes only setup-level
pointers — never tokens, channel/topic/group ids, bot handles, or route tables. Those live in
~/.openclaw/openclaw.json (OpenClaw's own machine-local source of truth) and are written by the
connect skills, never committed.
This SKILL.md is self-contained and runs identically under Claude Code and Codex. There is no command/argument layer in Codex, so do not rely on one.
OpenClaw is a locally-hosted multi-agent gateway. A CLI (openclaw, usually at
~/.local/bin/openclaw) manages a config file (~/.openclaw/openclaw.json) that defines agents,
chat-channel bindings (Telegram groups/topics, Slack channels), and routing. A long-running
gateway process delivers chat messages to agents and back. Agents reach other agents internally
via sessions_spawn rather than by messaging each other on the chat platform.
Gather (ask only for what is missing):
telegram or slack0600 local token files). Capture only its type and a reference, never a value.The facilitator and specialists are staff roles. A companion plugin (lisa-wiki) scaffolds a
staff role's "brain" (a wiki/staff/<id>.md doc page plus a dual-runtime subagent at
.claude/agents/<id>.md and .codex/agents/<id>.toml) from a config.staff[] entry. This plugin
wires that role to a chat surface — the "body".
If config.staff[] (in .lisa.config.json) has no entries yet, tell the user to define their staff
first:
/lisa:add-role <Role> (e.g. /lisa:add-role Chief of Staff).$lisa-wiki:lisa-wiki-add-role with the role.Only auto-delegate if that skill is actually available in the active runtime; otherwise just print the exact next step and stop.
Resolve a usable openclaw binary, in order:
~/.local/bin/openclawopenclaw on PATHIf none is found, stop and tell the user to install OpenClaw and re-run. Record the resolved path for
the config's configPath/CLI discovery only if it is non-standard.
Confirm ~/.openclaw/openclaw.json exists and is valid JSON. Do not print token values found
inside it. If it is missing, instruct the user to initialize OpenClaw (its own init flow creates the
file) before continuing.
Confirm a token-storage mechanism is configured. Acceptable: the OpenClaw-configured secret provider,
an OS keychain entry, or 0600-permissioned local token files outside the repo. Capture the provider
type and a non-secret reference only.
The connect skills depend on three OpenClaw behaviors. Probe for them and fail closed (warn loudly, do not silently proceed) if any is missing:
sessions_spawn — internal agent-to-agent dispatch (how the facilitator consults specialists).thread_ts; Telegram supergroup + forum topic + root message_id), and
replies in that thread continue the same session, so concurrent threads don't share short-term
context.channels.telegram.accounts.<account-id>.groups.<group-id>.topics.<topic-id>.agentId routes group
messages as an explicit topic route instead of dropping them as a non-default account fallback.NO_REPLY sentinel — after an agent sends a message with the platform message tool, returning
exactly NO_REPLY as its assistant final prevents the gateway from posting a duplicate loose
message.Probe via the OpenClaw CLI/version and a non-mutating validate, e.g.:
openclaw --version
openclaw config validate
If a capability cannot be confirmed, record it as an unmet prerequisite. The connect skills must refuse to create routes that would post duplicates or leak cross-thread context.
Update only the openclaw section of .lisa.config.json. Parse the existing JSON, preserve all
other keys and formatting as much as practical, and write structurally (never string-splice). Shape:
{
"openclaw": {
"defaultPlatform": "telegram",
"facilitatorAgentId": "<facilitator-agent-id>",
"secretProvider": {
"type": "<secret-provider-type>",
"ref": "<secret-provider-ref>"
},
"configPath": "~/.openclaw/openclaw.json"
}
}
Rules for this section:
defaultPlatform: "telegram" or "slack".facilitatorAgentId: the default facilitator/chief id only — not per-surface routing.secretProvider: a pointer only; never token material.configPath: optional; default ~/.openclaw/openclaw.json. Set only for non-standard installs.~/.openclaw/openclaw.json.Finish with: resolved CLI path, config-file status, secret-provider type/ref, each capability probe
result (pass / warn / unknown), the openclaw section written, and the exact next command/skill
(lisa-openclaw-connect-staff or lisa-openclaw-connect-repo-topic).
lisa-openclaw-connect-staff, lisa-openclaw-connect-repo-topic. Staff "brains" come from the
lisa-wiki plugin's add-role.