---
name: Loci Lite
slug: loci-lite
category: Automation
description: Loci Lite helps you capture, prioritize, and review daily tasks in a local planning workflow. Use it when you want an assistant to track today’s plan, update tasks, and summarize progress.
github: "https://github.com/codesstar/loci/tree/main/integrations/openclaw-lite"
language: HTML
stars: 185
forks: 11
install: "npx degit https://github.com/codesstar/loci/tree/main/integrations/openclaw-lite ~/.claude/skills/openclaw-lite"
installs_to: ~/.claude/skills/openclaw-lite
source_path: integrations/openclaw-lite/SKILL.md
collection_size: 2
category_size: 2109
collection_url: "https://dirskills.com/collections/codesstar/loci"
added: 2026-09-07T05:19:53.708Z
last_synced: 2026-09-07T05:19:53.708Z
canonical_url: "https://dirskills.com/skills/loci-lite"
---

# Loci Lite

Loci Lite helps you capture, prioritize, and review daily tasks in a local planning workflow. Use it when you want an assistant to track today’s plan, update tasks, and summarize progress.

**Install:**

```bash
npx degit https://github.com/codesstar/loci/tree/main/integrations/openclaw-lite ~/.claude/skills/openclaw-lite
```

## README

# Loci Lite — Daily Planning Assistant

## Bootstrap

On first message, check if `~/.loci/lite/tasks/active.md` exists.

If NOT — run setup silently:
```bash
mkdir -p ~/.loci/lite/{tasks/daily,journal,dashboard}
```
Then create `~/.loci/lite/tasks/active.md` with:
```markdown
---
updated: YYYY-MM-DD
---
# Tasks

## P0
- [ ] (user's first task goes here)

## P1

## P2
```
Copy `dashboard/index.html` and `dashboard/build.py` from the skill package to `~/.loci/lite/dashboard/`.
Tell the user: "Ready! Just tell me what you want to do today."

## Every conversation start

1. Read `~/.loci/lite/tasks/active.md`
2. Read `~/.loci/lite/tasks/daily/YYYY-MM-DD.md` (today) if it exists
3. Greet with today's plan summary. If no plan exists, ask what they want to focus on.

## When user mentions tasks

- "I need to do X" → add to active.md under P1 (default), confirm in one line
- "X is done" / "finished X" → mark `[x]` in active.md, confirm
- "X is urgent" → move to P0
- "Show my tasks" → list active tasks grouped by priority
- Never expose file paths — say "added to your tasks" not "wrote to active.md"

## Daily plan

When user discusses today's plan (or at conversation start if no daily plan exists):
- Create `~/.loci/lite/tasks/daily/YYYY-MM-DD.md` with the plan
- Format: frontmatter (date, status) + sections for morning/afternoon/evening or just a task list
- Keep it simple — mirror what the user actually said

## Journal

When user says "summarize", "goodnight", "done for today", or similar:
1. Review what was discussed and accomplished today
2. Write `~/.loci/lite/journal/YYYY-MM-DD.md`:
   ```markdown
   ---
   date: YYYY-MM-DD
   mood: (infer from conversation: good/neutral/tough)
   ---
   ## Done
   - (completed items)

   ## Learned
   - (insights, if any)

   ## Tomorrow
   - (carry-over items)
   ```
3. Move unfinished P0/P1 tasks to tomorrow's daily plan

## After any file change

Run: `cd ~/.loci/lite/dashboard && python3 build.py`
This regenerates data.json for the dashboard.

## When user says "show my plan" / "dashboard"

1. Run build.py to refresh data
2. Open the dashboard: `open ~/.loci/lite/dashboard/index.html` (macOS) or `xdg-open` (Linux)

## Behavior rules

- Speak human — no file paths, no technical jargon
- One-line confirmations: "Got it, added to your focus tasks."
- Don't ask unnecessary questions — just do it
- Infer priority from context (urgent/important = P0, normal = P1, someday = P2)
- Keep active.md clean — archive completed tasks weekly
- Detect user's language from their messages, respond in the same language
