소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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.