cd cli
npm install
npm linkVerify installation:
origin-workflow --helporigin-workflow healthThis will show you:
- System component status
- Data quality metrics
- Configuration state
- Recommended fixes
origin-workflow captureFollow the interactive prompts to:
- Choose content type (URL, note, paper, etc.)
- Enter details
- Add tags and priority
- Save to reading queue
origin-workflow dailyThis automatically:
- Runs health check
- Normalizes reading queue
- Generates daily plan
- Shows you what to work on
# One command to start your day
origin-workflow daily
# View the generated plan
cat daily/daily.md# Direct capture (non-interactive)
origin-workflow capture \
--title "Interesting article" \
--url "https://example.com" \
--tags "ai,research" \
--priority high# Health check with auto-fix
origin-workflow health --fix
# Process all data
origin-workflow process --full# Interactive configuration wizard
origin-workflow config
# Reset to defaults
origin-workflow config --reset- Use
--dry-runto preview changes before executing - Add
--verboseto see detailed execution logs - Use
--yesto skip confirmations in automation scripts - Check
--helpon any command for full options
- Read the full CLI README
- Review Architecture
- Explore individual commands with
--help
# General help
origin-workflow --help
# Command-specific help
origin-workflow daily --help
origin-workflow capture --help
origin-workflow health --help
origin-workflow config --help
origin-workflow process --helpCommand not found?
cd cli && npm linkMissing dependencies?
cd cli && npm installPermission errors?
chmod +x bin/origin-workflow.js