ソース情報
- リポジトリ
- openclaw/wacli
- ソースの最終更新活動
- 2026年5月9日 03:31
- 検出された SKILL.md の言語
- 英語
- スター
- 2,707
- フォーク
- 334
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/openclaw/wacli --skill wacliコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | wacli |
| description | wacli: WhatsApp linked devices, stores, sync/auth/send, repo/release work. |
Use this for wacli repo work and local WhatsApp linked-device stores. Prefer read-only commands for inspection unless the user explicitly asks to auth, sync, send, mutate chats/groups, or release.
~/Projects/wacli./dist/wacli after pnpm buildwacli~/.wacli/config.yaml~/.wacli~/.wacli/accounts/<name><store>/wacli.db<store>/session.db--read-only or WACLI_READONLY=1 for inspection.--json for parsing.session.db directly.wacli.db; named accounts are isolated stores.List accounts and store paths:
wacli accounts list --json
Inspect one account without connecting:
wacli --account me doctor --read-only --json
wacli --account me auth status --read-only --json
Use --account NAME for normal multi-account work. Use --store DIR only for one-off legacy/manual store debugging.
Prefer CLI first:
wacli --account me messages list --read-only --json --limit 20
wacli --account me messages search --read-only --json "query"
wacli --account me chats list --read-only --json
For DB health or aggregate checks, use SQLite read-only where possible:
sqlite3 "$HOME/.wacli/accounts/me/wacli.db" "pragma integrity_check;"
sqlite3 "$HOME/.wacli/accounts/me/wacli.db" \
"select count(*) from messages;
select count(*) from messages_fts;"
Useful consistency checks:
select count(*) from (
select chat_jid, msg_id, count(*) c
from messages
group by chat_jid, msg_id
having c > 1
);
select count(*)
from messages m
left join chats c on c.jid = m.chat_jid
where c.jid is null;
select count(*) from messages where revoked = 0 and deleted_for_me = 0;
select count(*) from messages_fts;
auth pairs and then bootstraps sync. sync never shows QR and requires an authenticated store.
Common commands:
wacli --account me auth
wacli --account me sync --once
wacli --account me sync --follow
wacli --account me sync --once --events 2>events.ndjson
Interactive TTY sync progress should be concise; warnings must remain visible. --events must keep stderr as NDJSON.
Read docs before coding when behavior changes:
pnpm -s docs:list || bin/docs-list || true
Focused tests first, then full gate:
go test ./internal/app
go test ./internal/store
pnpm docs:site && pnpm format:check && pnpm lint && pnpm test && pnpm build && git diff --check
User-facing changes need docs and CHANGELOG.md. Use committer with explicit file paths.
Read docs/release.md before release work. Release is tag-driven; verify workflow state with gh run list/view. If a release workflow is cancelled or partially failed, state exactly which jobs completed and which did not.