1
0
mirror of https://github.com/avinal/nikki.git synced 2026-07-03 21:40:09 +05:30

Add README, task format docs, fix archived memos API

- README.md: introduction, features, build/install, tech stack,
  disclaimer, acknowledgements, logo at top
- TASK_FORMAT.md: full task syntax reference with examples,
  validation rules, typo detection, notification behavior
- Fix archived memos: use state query param instead of CEL filter
- LOGO.md: remove triangle variant, keep circle only
- logo-circle.svg tracked for README rendering

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
Co-Authored-By: Claude Opus 4.6 (1M context)
This commit is contained in:
2026-05-22 18:47:31 +05:30
parent 375c5616b2
commit d02edde30e
6 changed files with 318 additions and 28 deletions
@@ -141,7 +141,7 @@ class MemosApiClient(
suspend fun listArchivedMemos(): ApiResult<ListMemosResponse> = apiCall {
httpClient.get(url("/memos")) {
parameter("pageSize", 50)
parameter("filter", "state == \"ARCHIVED\"")
parameter("state", "ARCHIVED")
}.body()
}