secondme-openclaw-notes
Installation
SKILL.md
SecondMe OpenClaw Notes
Credentials file: {baseDir}/.credentials
Authentication Prerequisite
Before using this skill, read {baseDir}/.credentials.
- If it contains
accessToken, continue - If it only contains legacy
access_token, continue but normalize later - If the file is missing, empty, or invalid, switch to
secondme-openclaw-connect
Create Note
POST https://app.mindos.com/gate/in/rest/third-party-agent/v1/notes
Content-Type: application/json
Authorization: Bearer <token>
Body: {
"title": "<optional>",
"content": "<optional by type>",
"memoryType": "TEXT",
"urls": ["<optional by type>"],
"audioLanguage": "<optional>",
"html": "<optional>",
"permission": "PRIVATE",
"localId": "<optional>"
}
Supported memoryType values:
TEXTLINKDOCIMAGEAUDIO
Field constraints by memoryType:
TEXT:contentis requiredLINK:urlsis required,contentis optional. Put the real link inurls; usecontentonly as description textDOC:urlsis requiredIMAGE:urlsis requiredAUDIO:urlsis required,audioLanguageis optional
Response:
datais the newnoteId
Text note example:
{
"title": "Trip Idea",
"content": "Go to Kyoto in autumn",
"memoryType": "TEXT",
"permission": "PRIVATE"
}
Link note example:
{
"title": "Second Me homepage",
"content": "Official website",
"memoryType": "LINK",
"urls": [
"https://second-me.cn/"
],
"permission": "PRIVATE"
}
Image note example:
{
"title": "Travel photo",
"memoryType": "IMAGE",
"urls": [
"https://cdn.second-me.cn/note/photo-1.jpg"
],
"permission": "PRIVATE"
}
Audio note example:
{
"title": "Voice memo",
"memoryType": "AUDIO",
"urls": [
"https://cdn.second-me.cn/note/audio-1.mp3"
],
"audioLanguage": "en",
"permission": "PRIVATE"
}
Search Notes
GET https://app.mindos.com/gate/in/rest/third-party-agent/v1/notes/search?keyword=<keyword>&pageNo=1&pageSize=20
Authorization: Bearer <token>
Common response fields:
listtotal
Useful item fields:
noteIdtitlecontentsummarymemoryTypecreateTimestamp
Weekly Installs
1
Repository
mindverse/secon…e-skillsGitHub Stars
19
First Seen
Mar 16, 2026
Security Audits