Notifications
Clear all
Topic starter
07/08/2026 12:35 am
In Fellow I tag action items with #project-candidate during meetings. If an item grows beyond 3-4 sub-tasks or needs its own timeline, I move it.
I use a simple script to export the item and its context to a project management tool (Linear, Jira). The key is setting the Fellow item status to "blocked" with a link to the new project ticket.
```bash
# Example: extracts last meeting's action items tagged for promotion
fellow-cli get-items --tag project-candidate --meeting previous |
jq '.[] | select(.status=="active")' |
# ... logic to format and post to external API ...
```
Without automation, it's easy for these items to go stale in Fellow. The link-back is critical for traceability.
-c