Skip to main content

Seeds

Not every idea is ready to become a task. Seeds are where you capture the raw material -- user feedback, competitive observations, shower thoughts, meeting notes -- before they're refined enough to plan.

What is a seed

A seed is a raw ideation input. It represents any input that could eventually become planned work, but still needs to mature. Unlike Ideas, which already have a formal approval workflow, seeds are earlier in the process: they are the unprocessed material that feeds planning sessions.

Seeds vs Ideas

AspectSeedsIdeas
StagePre-ideation, raw materialFormal evaluation
WorkflowSelection for Planning SessionsApproval/Rejection
MaturityVariable (configurable maturity level)Ready for evaluation
DestinationPlanning Session or direct promotionPromotion to work item
OriginManual, feedback, AI, importGenerally manual

The typical flow is: Seed (capture) -> Planning Session (refinement) -> Work Item (execution).

Fields

FieldTypeDescriptionRequired
titlestringDescriptive title of the seedYes
descriptionstringDetailed description, accepts MarkdownNo
statusenumCurrent status of the seedYes
sourceenumOrigin of the seedYes
priorityenumPriority: urgent, high, medium, lowNo
ownerUserIduuidOwner/responsible userNo
selectedForIdeationbooleanMarked for inclusion in Planning SessionNo
maturityLevelnumberMaturity level (0-100)No
metadataobjectAdditional metadata (JSON)No
tagsarrayTags for categorizationNo

Statuses

Seeds go through a lifecycle defined by six statuses:

StatusDescriptionNext action
draftInitial draft, still in developmentActivate when ready
activeActive seed, available for selectionRequest review or select for ideation
to_reviewPending team reviewApprove or reject
approvedApproved, ready for Planning Session or promotionSelect for ideation or promote
archivedArchived, no longer relevant-
rejectedRejected, can be reopenedReopen as draft

Sources

Each seed has an origin that indicates how it was created:

SourceDescription
manualCreated manually by a user
feedbackGenerated from user feedback
ai_generatedAutomatically generated by AI
importImported from an external source

Select for ideation

The selectedForIdeation field marks seeds that will be included in the next Planning Session. This is the mechanism for selecting which raw material will be discussed and refined in the planning session.

To select a seed:

  1. Open the seed detail.
  2. Enable the Select for ideation option.
  3. The seed will appear in the input list for the Planning Session.

You can also select multiple seeds from the list view using bulk actions.

Promote to work item

Seeds can be promoted directly to work items without going through a Planning Session. This is useful when a seed is already mature enough to become planned work.

To promote a seed:

  1. Open the seed detail.
  2. Select Promote to work item.
  3. Choose the work item type (epic, feature, story, task), the board, and the destination column.
  4. The system creates the work item and maintains traceability with the original seed.

Seeds can be linked to existing feedback entries using SeedFeedbackLink. This allows grouping multiple pieces of feedback under the same seed, facilitating analysis and decision-making.

When a seed is promoted or used in a Planning Session that generates work items, links (SeedWorkItemLink) are created that maintain full traceability from the original seed to the resulting work items.

Comments

Seeds support comments to facilitate discussion and collaborative refinement. Comments are added from the seed detail and are included in the visible count in the list.

Tags

Use tags to categorize and filter seeds. You can add and remove tags from the seed detail or via MCP.

For Developers

MCP tools

Seeds are available via MCP with the following tools:

Basic CRUD

ToolDescriptionMain parameters
create_seedCreates a new seedtitle, description, status, source, priority
get_seedGets seed detailsseedId
list_seedsLists seeds with filtersstatus, source, priority, selectedForIdeation
update_seedUpdates seed fieldsseedId, fields to update
delete_seedDeletes a seedseedId

Status and promotion

ToolDescriptionMain parameters
set_seed_statusChanges the seed statusseedId, status
promote_seedPromotes the seed to work itemseedId, workItemType, boardId, columnId
mark_seeds_as_usedMarks seeds as used in Planning SessionseedIds
get_seeds_for_ideationLists seeds selected for ideation-

Comments and tags

ToolDescriptionMain parameters
add_seed_commentAdds a comment to the seedseedId, content
list_seed_commentsLists seed commentsseedId
add_tag_to_seedAdds a tag to the seedseedId, tagId
remove_tag_from_seedRemoves a tag from the seedseedId, tagId
list_seed_tagsLists seed tagsseedId

Example: Create a seed from feedback

Tool: create_seed
Parameters:
title: "Users are requesting dark mode"
description: "Multiple users have requested a dark theme to reduce eye strain"
status: "active"
source: "feedback"
priority: "medium"

Example: Select seeds for Planning Session

Tool: list_seeds
Parameters:
status: "approved"

Tool: update_seed
Parameters:
seedId: "seed-uuid"
selectedForIdeation: true

Example: Promote seed to feature

Tool: promote_seed
Parameters:
seedId: "seed-uuid"
workItemType: "feature"
boardId: "board-uuid"
columnId: "backlog-column-uuid"

Related: Ideas | Work Items | Sprints