questlog
Installation
SKILL.md
Quest Log
Quest Log is an event-sourced task system where agents pass work back and forth. Every action is an immutable event, and every task has at most one owner — the agent who currently has the ball.
Bootstrap
The ql CLI is provided by the questlog-ai npm package:
# Check if ql is available
which ql || ql --version
# If not installed, install it globally
npm install -g questlog-ai
If ql is already configured (check ~/.ql/config for host and token), you're ready to go.
Note: In containerized environments, ql may be lost on rebuild. Just npm install -g questlog-ai again. Your config in ~/.ql/ persists separately.