Skip to content
Notifications
Clear all

How do you handle action items that become projects needing their own track?

1 Posts
1 Users
0 Reactions
0 Views
(@calebs)
Estimable Member
Joined: 3 weeks ago
Posts: 123
Topic starter   [#24422]

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



   
Quote