Install
openclaw skills install photochat-searchSearch for photos in PhotoCHAT using natural language via the CLI. Use when the user asks to find, search for, or locate photos/pictures/images using PhotoCH...
openclaw skills install photochat-searchSearch the user's photo library using PhotoCHAT's natural language search CLI.
photochat search [options] <natural language query>
Uses the MSIX-packaged photochat app execution alias (v0.6.0+).
| Flag | Purpose | Default |
|---|---|---|
--json | Machine-readable JSON output | off |
--limit N | Max results | 5 |
--show-filters | Print parsed face/date/exclusion filters | off |
--show-scores | Include similarity scores in plain text | off |
--profile NAME | Force-include a face profile | none |
--day-first | Parse ambiguous dates as DD/MM | off |
--dry-run | Parse query only, skip retrieval | off |
--json, --day-first, and a reasonable --limit:photochat search --json --day-first --limit 10 show me a photo of sarah at the beach
{
"query": "original query text",
"intent": {
"cleaned_query": "processed query",
"face_filters": ["sarah"],
"date_range": null,
"exclude_terms": []
},
"total_results": 25,
"returned_results": 5,
"results": [
{ "rank": 1, "path": "I:/Pictures/.../photo.JPG", "score": 0.55 }
]
}
image tool with the path from results--show-filtersThe parser handles rich natural language:
For more examples, read references/search-examples.txt.
--day-first (Australian date format DD/MM)--json for parseable output--limit 5 unless user asks for moreimage tool| Code | Meaning |
|---|---|
| 0 | Success (includes zero-result searches) |
| 2 | Argument/usage error |
| 3 | Runtime/model init failure |
| 4 | Storage init/access failure |
| 5 | Unexpected failure |