Edith Senso Ingest
/install edith-senso-ingest
Senso Content Ingestion
Ingest documents and content into the user's Senso.ai knowledge base so it becomes searchable through Edith smart glasses.
When to use
Activate this skill when the user wants to add, upload, or ingest content into their knowledge base. Examples:
- "Add this to my knowledge base..."
- "Ingest this document..."
- "Store this information..."
- "Remember this for later..." (when referring to document-scale content, not short notes)
- "Upload this to Senso..."
- "Index this content..."
Do NOT use this skill for simple note-taking or reminders. This is for ingesting substantial content that should be searchable later.
Setup
The user must have a Senso.ai API key configured. If not, tell them:
- Sign up at https://senso.ai and create a project
- Go to Settings > API Keys and generate a new key
- Tell OpenClaw: "My Senso API key is sk-..." and store it for future use
The API key should be stored in OpenClaw's memory/config as SENSO_API_KEY.
How to ingest content
Use the exec tool to call the Senso.ai content ingestion endpoint:
curl -s -X POST "https://sdk.senso.ai/api/v1/content/raw" \
-H "Content-Type: application/json" \
-H "X-API-Key: ${SENSO_API_KEY}" \
-d '{"content": "\x3Ctext content to ingest>", "metadata": {"title": "\x3Coptional title>", "source": "\x3Coptional source>"}}'
Ingesting from a file
If the user provides a file path, read it first and then send the content:
curl -s -X POST "https://sdk.senso.ai/api/v1/content/raw" \
-H "Content-Type: application/json" \
-H "X-API-Key: ${SENSO_API_KEY}" \
-d @- \x3C\x3C'BODY'
{
"content": "\x3Cfile contents>",
"metadata": {
"title": "\x3Cfilename>",
"source": "file"
}
}
BODY
For large files, consider chunking the content into logical sections before ingesting.
Formatting responses for Edith voice output
Edith speaks responses through smart glasses speakers. Keep confirmations brief:
- Confirm success simply. Say "Done, I've added that to your knowledge base" or "Got it, that's been indexed."
- Mention what was ingested. Say "I've added the return policy document to your knowledge base" so the user knows what happened.
- No technical details. Don't mention API responses, document IDs, chunk counts, or byte sizes.
- If it fails, be clear. Say what went wrong in plain language.
Example
User: "Hey Edith, add this meeting summary to my knowledge base: We decided to launch the new product line in Q3 and increase the marketing budget by 20 percent."
Good response: "Done, I've added your meeting summary to your knowledge base."
Bad response: "I have successfully ingested 1 document containing 147 characters into your Senso.ai knowledge base. The document ID is doc_abc123 and it was chunked into 1 segment."
Error handling
- Missing API key: "You haven't set up your Senso knowledge base yet. You'll need a Senso API key. Visit senso.ai to get one, then tell me the key."
- 401 Unauthorized: "Your Senso API key seems invalid. Please check it and try again."
- Content too large: Split the content into smaller pieces and ingest each separately. Confirm with "I've added your document in multiple parts to your knowledge base."
- Network/timeout error: "I couldn't reach your knowledge base right now. Try again in a moment."
- Empty content: "There's no content to add. Tell me what you'd like to store in your knowledge base."
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install edith-senso-ingest - 安装完成后,直接呼叫该 Skill 的名称或使用
/edith-senso-ingest触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Edith Senso Ingest 是什么?
Ingest documents into your Senso.ai knowledge base through Edith smart glasses. Triggers when user wants to add content to their knowledge base. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 111 次。
如何安装 Edith Senso Ingest?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install edith-senso-ingest」即可一键安装,无需额外配置。
Edith Senso Ingest 是免费的吗?
是的,Edith Senso Ingest 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Edith Senso Ingest 支持哪些平台?
Edith Senso Ingest 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Edith Senso Ingest?
由 samdickson22(@samdickson22)开发并维护,当前版本 v1.0.0。