Back to the catalog

ClineFlow Knowledge

Bundle OKF 0.2 · 1 conceitos · hassanvfx/clineflow-todo

Open source Repository Open in the app JSON README (API)

About

# ClineFlow Knowledge

* [Task journals](journals/) - Persistent engineering context for active and completed work.

Details

Kind
OKF bundles
Topic
No topic detected
Publisher
hassanvfx
Origin
okf_github
Category
dados
Version
0.2
Last push
2026-08-21T14:53:49Z
Repository state
ativo
Language
Shell
Added
2026-09-08 02:24:34
Updated
2026-09-08 02:24:34
Origin id
hassanvfx/clineflow-todo:knowledge/index.md

README

# Todo

A small, dependency-free browser Todo app. Todos stay in this browser through `localStorage`; open tabs synchronize through the browser storage event. All, Active, and Completed are per-tab views that reset to All on reload and are never saved with tasks.

## Run locally

Open `index.html` in a modern browser, or serve this directory with any static-file server. No build step is required.

## Unattended test setup

Requires Node 20 or newer. Install the locked development dependencies and all supported Playwright browsers without prompts:

```sh
npm ci
npx playwright install chromium firefox webkit
```

Run the full automated verification with `npm run verify`. Run unit or browser acceptance checks separately with `npm run test:unit` and `npm run test:e2e`.

## Manual spot checks

- Use only the keyboard to add, edit, complete/reopen, and delete a todo; ensure the focus ring is visible.
- Check the layout at a narrow mobile width and a desktop width.
- Verify clear labels, readable text, completed styling, All/Active/Completed views, persistence after refresh, and updates in a second open tab.

More