Workflows
⚠️ Planned Feature: This feature is not yet implemented. The documentation below describes the intended design.
Workflows
Section titled “Workflows”Workflows let you define multi-step processes that can be executed automatically or triggered by events.
What Workflows Do
Section titled “What Workflows Do”A workflow is a series of steps that accomplish a goal:
- Trigger - What starts the workflow (manual, schedule, event)
- Steps - Actions to perform in order
- Session - Track progress and resume if interrupted
Planned Features
Section titled “Planned Features”Workflow Markup
Section titled “Workflow Markup”Define workflows in natural prose format:
# Weekly Review Workflow
Start by gathering all notes modified this week.Then categorize them by project using [[tags]].Finally, create a summary note in Summaries/.See Markup for syntax details.
Workflow Sessions
Section titled “Workflow Sessions”Track workflow progress across sessions:
# Start a workflowcru workflow start "weekly-review"
# Check progresscru workflow status
# Resume if interruptedcru workflow resumeSee Sessions for session management (sessions are orthogonal to workflows).
Example Workflows
Section titled “Example Workflows”Weekly Review
Section titled “Weekly Review”- Find notes modified in last 7 days
- Check for incomplete tasks
- Generate summary report
Daily Capture
Section titled “Daily Capture”- Create today’s daily note
- Link to yesterday’s note
- Add template sections
Project Archive
Section titled “Project Archive”- Find all notes in project folder
- Update status to “archived”
- Move to Archive/
See Also
Section titled “See Also”- Extending Crucible - All extension points
- Event Hooks - Triggering workflows from events
- AI Features - AI-assisted workflow execution