Install
openclaw skills install @ajingmiao/aidenote-hermesInstall and operate the verified AideNote local connection suite for Hermes, then query real AideNote recording notes, transcripts, summaries, extracted todos/action items, knowledge bases, account status, and mobile bridge health. Use whenever the user mentions AideNote, SlonAide, recording notes, meeting minutes, transcripts, summaries, today's tasks, todos, follow-ups, action items, knowledge bases, installing the AideNote connection, or connecting the AideNote mobile app to this computer.
openclaw skills install @ajingmiao/aidenote-hermesUse the bundled scripts to retrieve real AideNote data. Do not infer account data from conversation history.
bridge.py install --confirm only after the user explicitly asks to install, configure, repair, or connect AideNote on this computer. A data question alone is not installation consent.The API command is:
python3 ${HERMES_SKILL_DIR}/scripts/aidenote.py COMMAND [OPTIONS]
If python3 is unavailable on Windows, use python with the same arguments.
When the user explicitly asks to install or connect AideNote, run:
python3 ${HERMES_SKILL_DIR}/scripts/bridge.py install --confirm
If credentials are missing, the command immediately returns pairing_required and an 8-character pairingCode. Tell the user to open AideNote, add or edit the Hermes assistant, enter that code, and tap Confirm connection. A detached local worker then receives the account-bound credential, installs the verified connection suite, and removes the relay pairing session. The user does not need to paste an API Key or run another command.
Use bridge.py status to check progress. Its pairing.status changes from pending to installing, then installed or failed. Never print or inspect the private pairing state file.
scripts/configure.py remains a manual recovery option only when App pairing is unavailable. It must be run directly in a local terminal; never ask the user to send the key in chat.
| User intent | Command |
|---|---|
| Check connection or account | health or user-info |
| List/search recent recordings | recordings |
| Read transcript or AI summary | recording-detail |
| Ask about todos, tasks, action items, or follow-ups | todos |
| List knowledge bases | knowledge-bases |
| List files in a knowledge base | knowledge-files |
| Check mobile bridge state | bridge.py status |
| Install/configure the local connection suite | bridge.py install --confirm |
| Check whether the local connection suite is installed | bridge.py status |
python3 ${HERMES_SKILL_DIR}/scripts/aidenote.py recordings --page 1 --page-size 10
Add --keyword "text" when the user gives a search term. Present titles, dates, durations, and processing status. Preserve the returned recording ID for follow-up detail requests.
If the user did not provide a recording ID, list recent recordings first and select the matching record. Then run:
python3 ${HERMES_SKILL_DIR}/scripts/aidenote.py recording-detail --file-id "RECORDING_ID"
Answer only from the returned detail. Distinguish transcript content from the AI summary and extracted action items.
For requests such as "今天有哪些待办", "最近有什么任务", or "会议里有哪些行动项", run:
python3 ${HERMES_SKILL_DIR}/scripts/aidenote.py todos --recording-page-size 20 --page-size 50
Completed items are excluded by default. Add --include-done only when the user asks for completed/history items. Group results by source recording when that improves readability.
python3 ${HERMES_SKILL_DIR}/scripts/aidenote.py knowledge-bases
Use the returned knowledge-base ID for:
python3 ${HERMES_SKILL_DIR}/scripts/aidenote.py knowledge-files --knowledge-base-id ID
Add --folder-id ID or --keyword "text" only when needed.
The local connection suite enables the AideNote mobile app to reach this computer's Hermes API through the AideNote relay. It installs the AideNote tunnel, the AideNote MCP server, the WorkBuddy bridge, login/startup services, and Hermes API settings. Existing Hermes and OpenClaw tokens are preserved.
Check status without changing the system:
python3 ${HERMES_SKILL_DIR}/scripts/bridge.py status
When the user explicitly says "安装 AideNote 连接", "配置手机连接", "修复 AideNote bridge", or equivalent, run:
python3 ${HERMES_SKILL_DIR}/scripts/bridge.py install --confirm
The command downloads the official installer over HTTPS, verifies its pinned SHA-256 digest, and passes only the required local credential and a restricted environment. The official installer verifies every downloaded binary, configures Hermes API port 8642, synchronizes the Hermes API token into the tunnel config, and enables login/startup services. Do not substitute another download URL, bypass checksum verification, or construct a shell pipeline.
After installation, inspect the returned status. Success requires all of the following:
installed is true.hermesTokenConfigured is true.hermesStartupConfigured is true.ports.hermes.reachable is true.If the install command returns pairing_required, present the pairing code and App steps. If installation is not explicitly authorized, show the status and ask whether the user wants the verified connection suite installed.
pairing_required: show the 8-character code and direct the user to AideNote > Add Assistant > Hermes.pairing_network_error: report that the pairing service could not be reached and keep the existing installation unchanged.pairing_not_found: the code expired; rerun the authorized install command to create a new code.missing_credentials: start the pairing flow through bridge.py install --confirm; use configure.py only as manual recovery.insecure_credentials: tell the user to restrict the credential file to owner-only access and rerun configuration.authentication_failed: ask the user to regenerate or reconfigure the AideNote API Key locally.network_error: report that AideNote could not be reached; do not claim the account has no data.api_error: report the safe error message and operation; never expose credentials.confirmation_required: ask the user for explicit installation consent; do not add --confirm preemptively.checksum_mismatch: stop and report that installer verification failed; never bypass the check.installer_failed or verification_failed: report the safe error, run bridge.py status, and point the user to the official guide if manual recovery is needed.For endpoint and output details needed during maintenance, read references/api-contract.md.