Built OpenClaw-native. Free for any compliant AI agent. Available in 4 languages. Grounded in HKCSS Care Food Standard 2023 — operated by Carewells Limited under HKCSS SED + SE Tree Mark #131.
Primary landing: seniordeli.com/openclaw
Hong Kong’s ageing population faces a silent crisis at the dinner table. As AI agents proliferate across eldercare workflows, no standard skill set addresses nutrition safety in the home or care facility — until now.
| 1.6M | Elderly residents in Hong Kong by 2036 |
| 40–60% | RCHE residents affected by dysphagia |
| 640K | Untrained informal caregivers handling meal preparation |
| 380K | Foreign domestic helpers facing language gaps in care food instructions |
Six purpose-built skills, each callable from any OpenClaw-compatible AI agent runtime.
| Skill identifier | Description |
|---|---|
care-food-assessor |
Analyses a meal photo or ingredient list and returns IDDSI level, HKCSS compliance verdict, and recommended modifications. |
care-food-cantonese |
Delivers care food guidance and texture modification instructions in fluent Cantonese — audio and text output. |
care-food-tagalog |
Provides the same compliance guidance in Tagalog for Filipino domestic helper caregivers. |
care-food-bahasa |
Indonesian Bahasa variant — care food instructions and dysphagia risk warnings for Indonesian caregivers. |
dysphagia-screener |
Lightweight pre-screening questionnaire (non-diagnostic) that flags swallowing risk and recommends professional assessment referral. |
care-food-recipe-modifier |
Takes any Cantonese or Western recipe and restructures it to target IDDSI level while preserving flavour profile and nutritional density. |
Meal photo → IDDSI Level + HKCSS compliance verdict + modification recommendations.
// Request
{
"skill": "care-food-assessor",
"version": "1.0",
"input": {
"photo_url": "https://cdn.example.com/meal/rice-and-fish.jpg",
"context": {
"resident_age": 82,
"known_diagnosis": ["dysphagia", "stroke"]
}
}
}
// Response
{
"iddsi_level": 4,
"iddsi_label": "Pureed",
"compliant": true,
"verdict": "Meal meets HKCSS Care Food Standard at IDDSI Level 4.",
"modifications": [],
"confidence": 0.91,
"standard_ref": "HKCSS Care Food Standard 2023, §3.2"
}
Add care food intelligence to any OpenClaw-compatible AI agent in minutes.
1. Install
$ npm install @seniordeli/care-food-assessor
2. Integrate
import { CareFoodAssessor } from "@seniordeli/care-food-assessor";
const assessor = new CareFoodAssessor({
// No API key required — runs on OpenClaw agent runtime
});
const result = await assessor.assess({
photoUrl: mealPhotoUrl,
residentProfile: { age: 82, diagnosis: ["dysphagia"] },
});
console.log(result.iddsiLevel); // 4
console.log(result.compliant); // true
console.log(result.verdict); // "Meal meets HKCSS Care Food Standard…"
No API key required — authentication is handled by the OpenClaw agent runtime. Skills run on-device where supported; cloud fallback available for agents without local inference capability.
Skills respond in the agent’s active language context — no locale configuration required.
Mandarin (zh-CN) support planned for Q3 2026. Japanese variant under evaluation.
These skills are grounded in the HKCSS Guideline of Care Food Standard 2023 — Hong Kong’s authoritative reference for texture-modified foods in residential care settings. Carewells Limited operates these skills as a registered HKCSS Social Enterprise Development (SED) partner under SE Tree Mark #131.
| 🔒 No Centralised PII | Meal photos and resident context data are processed transiently. No personally identifiable information is stored in SeniorDeli infrastructure. |
| ⚡ Edge Inference | Skills are optimised for on-device execution within the OpenClaw agent runtime, keeping sensitive care data local to the facility’s network. |
| 📊 Adoption Index | Anonymous, aggregate inference logs feed the Hong Kong 照護食 Adoption Index — a public dataset tracking care food standard uptake across the territory. |
Available on npm, GitHub, and ClawHub. Free for any compliant AI agent. No API key required.
Free for any compliant OpenClaw AI agent · Apache-2.0 + CC-BY-SA 4.0
HKCSS Care Food Standard content reproduced under CC-BY-SA 4.0. IDDSI framework © IDDSI — reproduced for educational reference. OpenClaw ecosystem partners (OpenAI, Tencent, ByteDance, NVIDIA) are independent parties; no formal partnership with Carewells Limited / SeniorDeli is implied.