linear-seed
Scannednpx machina-cli add skill Manzanita-Research/magpie/linear-seed --openclawSeed
You collect ideas like a magpie. This skill catches them before they fly away.
When someone riffs on an idea — "what if we made a Spotify automation tool for music communities" — capture it as a Seed in Linear. Not an issue to work on. Not a project to plan. Just a sticky note on the wall.
What a Seed is
A Seed is a Linear issue with the Seed label. That's it. No Product label (it doesn't have a repo yet), no project, no priority. Just a title, a description, and enough context to remember why you were excited about it.
Seeds start in Seeds (raw ideas, waiting to germinate) until one of three things happens:
- It grows — you create a repo, add a Product label, remove the Seed label, and start building
- It merges — the idea gets folded into an existing project as a feature
- It composts — you move it to Composted. Not a failure — fertilizer. Most seeds don't sprout.
Catching ideas
When the user floats an idea, draft a seed from context. Don't interrogate them — the whole point is low friction.
Title: The idea in one line, the way you'd text it to a friend.
- "spotify automation tool for irl music communities"
- "visual EQ that maps frequency bands to colors"
- "cli tool that turns voice memos into commit messages"
Description: A short paragraph capturing the core of the idea. What is it, who is it for, why does it matter. If the user riffed for a while, distill it — don't transcribe.
Don't set:
- Priority (it's not urgent, it's an idea)
- Project (it doesn't belong to one yet)
- Product label (it doesn't have a repo yet)
- Assignee (nobody's working on it)
Confirm before filing
Always show the user what you're about to file:
Seed: spotify automation tool for irl music communities
Release Radar but for your people. Maintain a config of artists in your community, auto-fetch new releases, build playlists. No algorithmic curation — just what your scene is making.
File this?
Keep it fast. One confirmation, not a form.
Execution
After the user confirms, delegate the Linear work to a background subagent. This keeps the main context clean — seeding an idea shouldn't eat 10 tool calls in your conversation.
- Use the Agent tool with
subagent_type="general-purpose"andrun_in_background=true - Include in the prompt:
- The full text of
plugins/linear/LINCTL_REFERENCE.md(read it first if not already in context) - The seed title and description
- Team key if already known from session context
- If the user riffed longer, include the comment body to add after creation
- The full text of
- The subagent should:
- Run
linctl whoamito verify auth - Run
linctl team list --jsonto get the team key (if not provided) - Create the issue with
linctl issue create --title "..." --team <KEY> --labels "Seed" --state "Seeds" --description "..." - If there's a longer riff, add it as a comment with
linctl comment create <ID> --body "..."
- Run
- Report back to the user with the issue identifier and a confirmation
See plugins/linear/LINCTL_REFERENCE.md for exact command syntax and gotchas.
When the user riffs longer
Sometimes an idea comes with context — "and it could work like X, and we'd need Y, and the hard part is Z." When the conversation has more substance than fits in a description:
- File the seed with a concise description (the elevator pitch)
- Have the subagent add a comment with the longer riff — the context, the technical ideas, the open questions
This way the seed stays scannable in list view but the full context is preserved.
When NOT to file a seed
- The user is describing work on an existing project — use
linear-workflowinstead - The user is thinking out loud but hasn't landed on anything ("I wonder if..." followed by "nah, never mind")
- The user explicitly says they don't want to track it
If you're unsure: "Want me to seed this idea in Linear?"
Reviewing seeds
When the user asks what's on the wall, what ideas they've had, or wants to review seeds:
linctl issue list --team <TEAM_KEY> --state "Seeds" --json
Present them as a simple list — title and creation date. Offer to:
- Promote one to a real project (create repo, add Product label, remove Seed)
- Enrich one with more context (add a comment)
- Compost ones that aren't going anywhere (move to Composted state)
Promoting a seed
When a seed is ready to become a real project:
- Ask what the repo name should be (suggest one based on the title)
- Remove the Seed label
- Add the appropriate Product label (create one if needed)
- Optionally assign it to a project
- The issue keeps its history — the original idea is still there
Don't auto-create a GitHub repo. That's a separate decision. Just update the Linear issue.
Source
git clone https://github.com/Manzanita-Research/magpie/blob/main/plugins/linear/skills/linear-seed/SKILL.mdView on GitHub Overview
Linear-seed lets you capture brainstormed project ideas as Seeds in Linear. Seeds are lightweight, non-urgent issues labeled Seed stored in Seeds until they grow, merge into a project, or compost away. It’s a back-pocket sticky-note approach for ideas you’re not ready to commit to yet.
How This Skill Works
When an idea is mentioned, draft a Seed with a concise title and a short description. The Seed should have no priority, no project, and no Product label. After user confirmation, a background subagent creates the Linear issue with the Seed label in Seeds, and you can append a longer riff as a comment if you captured extra context.
When to Use It
- When someone riffs on an idea with phrases like 'what if we...', 'we should build...', 'imagine if...', or 'idea:'—ideas not ready to commit.
- When you want a low-friction way to capture a concept without creating a repo or assigning priority.
- When you need to preserve longer context or a longer riff that can be added as a comment later.
- When the user says 'catch this idea', 'pin this thought', 'seed this', or 'add to the wall'.
- When you’re maintaining a Seeds backlog for future growth, merging into a project, or composting.
Quick Start
- Step 1: Catch an idea and draft a Seed title and short Description.
- Step 2: Show the Seed to the user for quick confirmation before filing.
- Step 3: On confirmation, delegate to a background subagent to create the Linear Seed issue in Seeds; optionally attach a longer riff as a comment.
Best Practices
- Keep the Seed title as a one-line elevator pitch.
- Write a short Description that captures core idea, audience, and why it matters.
- Do not set Priority, Project, or Product label; it’s not ready for work.
- Show the user the Seed content before filing and require quick confirmation.
- If the riff is longer, add it as a comment after creation.
Example Use Cases
- spotify automation tool for irl music communities
- visual EQ that maps frequency bands to colors
- cli tool that turns voice memos into commit messages
- Release Radar but for your people — maintain a config of artists, auto-fetch new releases, build playlists
- seed for a lightweight dashboard to capture ideas before a repo is created