Ideas

Ideas capture feature concepts, improvements, and future possibilities. They're not problems (use Issues for those) - they're opportunities.

Capturing Ideas

terminal
~/my-project

 store my idea in the Matrix project:
  "Add AI-powered search that understands
  natural language queries over project
  documents"

MORPHEUS: Logging idea...
 log_idea(title='AI-powered natural
  language search over docs',
  content='Implement semantic search that
  lets users query project documents in
  natural language instead of keyword
  matching.')

Idea saved: ID-search9
Status: new

Analyzing and Converting Ideas

terminal
~/my-project

 JARVIS, look at idea ID-search9, analyze
  the codebase and create a task for it

JARVIS: Reading idea...
 get_ideas(idea_id='ID-search9')

Analyzing codebase for search
implementation points...
Found: Document model, existing keyword
search in DocumentController, Supabase
pgvector extension available.

Creating task...
 create_task(title='Implement semantic
  search for project documents',
  description='Use pgvector + embeddings
  to enable NL queries. Build on existing
  DocumentController search. Ref: ID-search9
  ')
 update_idea_status('ID-search9', 'used')

Task created: TS-nlp42x
Idea ID-search9 marked as used.