Simple CLI for LLM agentic coding workflows. Store context, retrieve it, keep AIs on track.
# Make sure you have the wf command in your PATH
export WF_DB_PATH=/path/to/your/plans.dbTell your AI to check what's available:
wf tool overviewTell it to grab specific artifacts to follow:
wf dump artifact 9The AI can store its own artifacts internally:
# AI saves design docs, plans, solutions
wf add artifact "design.md" architecture,planning
wf add artifact "solution.md" implementation,fix# Track work
wf add task "Fix the bug" urgent,backend
# Log AI conversations
wf add thread "conv123" "Discussed the fix" false bug
# Find stuff later
wf list tasks urgent
wf dump artifact 1 | claude "analyze this"Perfect for maintaining context across AI coding sessions.