research-save

Save conversation research content into the Supabase research_items table.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/iketomo/cowork_x_plugin --skill research-save
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: research-save
Source: https://github.com/iketomo/cowork_x_plugin/tree/main/work-utils/skills/research-save
Command: npx skills add https://github.com/iketomo/cowork_x_plugin --skill research-save

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the structured saving of research, investigation, and discussion content from conversations into the Supabase research_items table, preventing data loss and ensuring easy retrieval.

Core Features & Use Cases

  • Structured Data Storage: Saves conversationally derived research into a Supabase table with fields like title, summary, facts, insights, and raw_content.
  • Sub-Agent Delegation: Offloads heavy processing (analysis, structuring, INSERT) to a dedicated research-save-analyzer sub-agent, optimizing main agent performance.
  • Duplicate Prevention: Utilizes content_hash to avoid saving identical research items.
  • Use Case: After a team meeting discussing market research, use this skill to automatically save the key findings, data points, and insights into your central knowledge base without manual copy-pasting.

Quick Start

Use the research-save skill to save the discussion about the new marketing strategy.

Frequently Asked Questions about research-save

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save conversation research findings into a Supabase database?

To save conversation research findings into Supabase, this skill structurally extracts content and inserts it into the `research_items` table using a dedicated sub-agent for efficient context management.

How does content hashing prevent duplicate research items in Supabase?

Content hashing prevents duplicate research items in Supabase by generating a unique `content_hash` for each conversation, ensuring identical research findings are not saved multiple times.

Can I store conversational insights and facts as structured data in Supabase?

Yes, you can store conversational insights and facts as structured data in Supabase. The skill automatically saves extracted information into fields like `title`, `summary`, `facts`, and `insights`.

Do I need a sub-agent to structure and insert conversation analysis into Supabase?

A sub-agent is required to structure and insert conversation analysis into Supabase. The skill delegates heavy processing tasks like analysis and database insertion to a `research-save-analyzer` sub-agent.

What is the best way to automatically save team meeting research to a central knowledge base?

The best way to automatically save team meeting research to a central knowledge base is using this skill to capture key findings, data points, and insights from discussions directly into Supabase.

Why does the main agent delegate database insertion to a sub-agent during research storage?

The main agent delegates database insertion to a sub-agent during research storage to optimize performance, offload heavy processing, and ensure efficient context management during complex analysis.