Document completed work with vector database indexing. Use `/log-work` after completing any significant task (feature, bug fix, refactoring, configuration change) to record what was done, decisions made, and files changed.
Index completed work for future context retrieval via semantic search.
When to use: Execute /log-work after every meaningful work unit (features, bugs, refactors, config changes).
uv run .claude/skills/work-logger/scripts/create_template.py \
--description "short-description" \
--type feature|bugfix|refactor|docs|config
Output: private-docs/work-logs/YYYY-MM-DD-short-description.md
Edit the generated file:
tags (YAML array) and files_changedsummary, Title, and all sectionsuv run .claude/skills/sqlite-vectordb/scripts/add_entry.py \
--file "private-docs/work-logs/YYYY-MM-DD-short-description.md" \
--summary "One-line summary" \
--tags "tag1,tag2"
</workflow>
<standards>
CLAUDE.mdValid usage:
# Step 1: Generate
uv run .claude/skills/work-logger/scripts/create_template.py \
--description "add-user-auth" --type feature
# Step 2: Edit private-docs/work-logs/2026-01-16-add-user-auth.md
# Step 3: Index
uv run .claude/skills/sqlite-vectordb/scripts/add_entry.py \
--file "private-docs/work-logs/2026-01-16-add-user-auth.md" \
--summary "Implemented OAuth2 user authentication" \
--tags "auth,oauth,security"
</examples>Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer