You can add tags to any idea. Tags work as a lateral filter across many ideas that you can use to group windows on them, group outlines, or otherwise organize them.
#idea(
"meeting-notes",
tags: ("draft", "review"),
)[ ... ]When creating new ideas or windows, you can set show-tags: true to demonstrate
#window(
"meeting-notes",
show-tags: true,
)This will render pills next to the idea’s ID, just like you see above. The colors associated with each tag can be configured in your rookery’s theme.
You can also work backwards, getting tags from an idea:
#context tags-of("meeting-notes") // -> ("draft", "review")