data-analysis
AI-powered data analysis for Empathy Ledger. Use when working with themes, quotes, story suggestions, transcript analysis, storyteller connections, or any feature requiring extracted insights. Ensures consistent analysis patterns across the platform.
Best use case
data-analysis is best used when you need a repeatable AI agent workflow instead of a one-off prompt. It is especially useful for teams working in multi. AI-powered data analysis for Empathy Ledger. Use when working with themes, quotes, story suggestions, transcript analysis, storyteller connections, or any feature requiring extracted insights. Ensures consistent analysis patterns across the platform.
AI-powered data analysis for Empathy Ledger. Use when working with themes, quotes, story suggestions, transcript analysis, storyteller connections, or any feature requiring extracted insights. Ensures consistent analysis patterns across the platform.
Users should expect a more consistent workflow output, faster repeated execution, and less time spent rewriting prompts from scratch.
Practical example
Example input
Use the "data-analysis" skill to help with this workflow task. Context: AI-powered data analysis for Empathy Ledger. Use when working with themes, quotes, story suggestions, transcript analysis, storyteller connections, or any feature requiring extracted insights. Ensures consistent analysis patterns across the platform.
Example output
A structured workflow result with clearer steps, more consistent formatting, and an output that is easier to reuse in the next run.
When to use this skill
- Use this skill when you want a reusable workflow rather than writing the same prompt again and again.
When not to use this skill
- Do not use this when you only need a one-off answer and do not need a reusable workflow.
- Do not use it if you cannot install or maintain the related files, repository context, or supporting tools.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/data-analysis/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How data-analysis Compares
| Feature / Agent | data-analysis | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
AI-powered data analysis for Empathy Ledger. Use when working with themes, quotes, story suggestions, transcript analysis, storyteller connections, or any feature requiring extracted insights. Ensures consistent analysis patterns across the platform.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agent for Product Research
Browse AI agent skills for product research, competitive analysis, customer discovery, and structured product decision support.
AI Agent for SaaS Idea Validation
Use AI agent skills for SaaS idea validation, market research, customer discovery, competitor analysis, and documenting startup hypotheses.
SKILL.md Source
# Data Analysis Skill
This skill provides patterns and best practices for AI-powered data analysis across the Empathy Ledger platform, ensuring quotes, themes, summaries, and suggestions appear consistently everywhere.
## Core Data Model
### Analysis Pipeline
```
Transcript (raw audio/text)
↓ AI Analysis
Theme Extraction → themes[] array
Quote Extraction → key_quotes[] array
Summary Generation → ai_summary text
Sentiment Analysis → sentiment_scores{}
↓ Story Creation
Story (authored content)
↓ Connections
Related Stories ← theme matching
Suggested Content ← AI recommendations
```
### Key Tables for Analysis
| Table | Analysis Fields | Purpose |
|-------|-----------------|---------|
| `transcripts` | `themes`, `key_quotes`, `ai_summary`, `ai_processing_status` | Raw interview analysis |
| `stories` | `themes`, `cultural_tags`, `featured_quote` | Published story metadata |
| `storytellers` | `expertise_themes`, `connection_strength` | Storyteller insights |
| `story_suggestions` | `reason`, `confidence_score`, `theme_overlap` | AI recommendations |
## Theme System
### Standard Theme Categories
```typescript
const THEME_CATEGORIES = {
cultural: ['identity', 'heritage', 'tradition', 'language', 'ceremony'],
family: ['kinship', 'elders', 'children', 'ancestors', 'community'],
land: ['country', 'connection', 'seasons', 'wildlife', 'sacred-sites'],
resilience: ['survival', 'adaptation', 'strength', 'healing', 'hope'],
knowledge: ['wisdom', 'teaching', 'learning', 'stories', 'dreams']
}
```
### Theme Extraction Pattern
```typescript
// When extracting themes from content:
interface ThemeExtraction {
themes: string[] // Max 5-7 primary themes
theme_confidence: number // 0-1 confidence score
cultural_relevance: 'high' | 'medium' | 'low'
}
// Supabase query for theme-based matching
const { data } = await supabase
.from('stories')
.select('*')
.overlaps('themes', ['identity', 'heritage'])
.order('view_count', { ascending: false })
.limit(5)
```
## Quote System
### Quote Extraction Standards
```typescript
interface ExtractedQuote {
text: string // The quote itself (50-300 chars ideal)
context?: string // Surrounding context
themes: string[] // Themes this quote relates to
significance: 'highlight' | 'supporting' | 'context'
speaker_attribution?: string
}
// Store quotes in transcripts
UPDATE transcripts SET key_quotes = ARRAY[
'When I walk on Country, I feel my ancestors with me.',
'Our language carries the wisdom of thousands of years.'
]
```
### Quote Display Patterns
```tsx
// Story cards should show featured quotes
<StoryCard
story={story}
featuredQuote={story.key_quotes?.[0]}
showThemes={true}
/>
// Quote highlight component
<QuoteHighlight
quote={quote}
attribution={storyteller.display_name}
themes={quote.themes}
/>
```
## AI Analysis Integration
### Transcript Analysis Flow
```typescript
// 1. Trigger analysis
POST /api/transcripts/{id}/analyze
// 2. AI extracts:
{
themes: ['identity', 'land-connection', 'healing'],
key_quotes: [
"The river taught me patience...",
"Our stories are our survival..."
],
ai_summary: "This transcript explores themes of cultural...",
sentiment: { positive: 0.7, reflective: 0.8 }
}
// 3. Store and index
UPDATE transcripts SET
themes = $themes,
key_quotes = $key_quotes,
ai_summary = $ai_summary,
ai_processing_status = 'completed'
```
### Story Suggestion Algorithm
```typescript
// Find related content based on theme overlap
async function getSuggestedStories(storyId: string) {
const { data: story } = await supabase
.from('stories')
.select('themes, storyteller_id')
.eq('id', storyId)
.single()
// Find stories with overlapping themes
const { data: related } = await supabase
.from('stories')
.select('*, storytellers!inner(display_name)')
.neq('id', storyId)
.overlaps('themes', story.themes)
.limit(5)
return related.map(r => ({
...r,
theme_overlap: calculateOverlap(story.themes, r.themes),
reason: generateReason(story.themes, r.themes)
}))
}
```
## Supabase Best Practices
### Array Operations for Themes
```sql
-- Find stories with ANY matching theme
SELECT * FROM stories WHERE themes && ARRAY['identity', 'heritage'];
-- Find stories with ALL themes
SELECT * FROM stories WHERE themes @> ARRAY['identity', 'heritage'];
-- Count theme occurrences
SELECT unnest(themes) as theme, count(*)
FROM stories
GROUP BY theme
ORDER BY count DESC;
```
### Full-Text Search Integration
```sql
-- Add search vector for quotes
ALTER TABLE transcripts ADD COLUMN
quote_search tsvector GENERATED ALWAYS AS (
to_tsvector('english', array_to_string(key_quotes, ' '))
) STORED;
CREATE INDEX idx_quote_search ON transcripts USING GIN(quote_search);
-- Search quotes
SELECT * FROM transcripts
WHERE quote_search @@ to_tsquery('english', 'ancestor & wisdom');
```
### Materialized View for Analytics
```sql
-- Theme analytics across platform
CREATE MATERIALIZED VIEW theme_analytics AS
SELECT
unnest(themes) as theme,
count(*) as story_count,
count(DISTINCT storyteller_id) as storyteller_count,
avg(view_count) as avg_views
FROM stories
WHERE status = 'published'
GROUP BY theme;
-- Refresh periodically
REFRESH MATERIALIZED VIEW theme_analytics;
```
## Component Integration Points
### Where Analysis Should Appear
| Location | What to Show | Source |
|----------|--------------|--------|
| Story Cards | Featured quote, top 3 themes | `stories.key_quotes[0]`, `stories.themes` |
| Story Detail | All quotes, full theme list | Full arrays |
| Storyteller Profile | Expertise themes, quote count | Aggregated from stories |
| World Tour Map | Theme clusters, quote highlights | `theme_analytics` view |
| Search Results | Theme badges, quote snippets | Full-text search |
| Related Stories | Theme overlap %, suggestion reason | Calculated on query |
| Dashboard | Theme trends, popular quotes | Analytics views |
### React Components for Analysis
```tsx
// Theme badge with cultural coloring
<ThemeBadge theme="identity" variant="cultural" />
// Quote card with attribution
<QuoteCard
quote={quote}
storyteller={storyteller}
showThemes
linkToStory
/>
// Theme cloud visualization
<ThemeCloud
themes={allThemes}
onThemeClick={handleFilter}
highlightActive={activeThemes}
/>
// Story suggestions panel
<SuggestedStories
currentStory={story}
maxSuggestions={5}
showReason
/>
```
## Analysis API Endpoints
| Endpoint | Purpose |
|----------|---------|
| `POST /api/transcripts/{id}/analyze` | Trigger AI analysis |
| `GET /api/transcripts/{id}/analyze` | Check analysis status |
| `GET /api/stories/{id}/suggestions` | Get related stories |
| `GET /api/themes` | List all themes with counts |
| `GET /api/themes/{theme}/stories` | Stories by theme |
| `GET /api/quotes/search` | Search across quotes |
| `GET /api/storytellers/{id}/themes` | Storyteller expertise |
## When to Use This Skill
Invoke when:
- Adding quotes to story cards or displays
- Implementing story suggestions/related content
- Building theme-based filtering or search
- Creating analytics dashboards
- Integrating AI analysis results
- Designing data visualization components
- Optimizing Supabase queries for analysis data
## Reference Files
- [analysis-patterns.md](analysis-patterns.md) - Detailed code patterns
- [supabase-queries.md](supabase-queries.md) - Optimized query examples
- [theme-taxonomy.md](theme-taxonomy.md) - Complete theme hierarchyRelated Skills
log-analysis
Analyze application logs to identify errors, performance issues, and security anomalies. Use when debugging issues, monitoring system health, or investigating incidents. Handles various log formats including Apache, Nginx, application logs, and JSON logs.
wireshark-network-traffic-analysis
This skill should be used when the user asks to "analyze network traffic with Wireshark", "capture packets for troubleshooting", "filter PCAP files", "follow TCP/UDP streams", "detect network anomalies", "investigate suspicious traffic", or "perform protocol analysis". It provides comprehensive techniques for network packet capture, filtering, and analysis using Wireshark.
wireshark-analysis
This skill should be used when the user asks to "analyze network traffic with Wireshark", "capture packets for troubleshooting", "filter PCAP files", "follow TCP/UDP streams", "dete...
vector-database-engineer
Expert in vector databases, embedding strategies, and semantic search implementation. Masters Pinecone, Weaviate, Qdrant, Milvus, and pgvector for RAG applications, recommendation systems, and similar
team-composition-analysis
This skill should be used when the user asks to "plan team structure", "determine hiring needs", "design org chart", "calculate compensation", "plan equity allocation", or requests organizational design and headcount planning for a startup.
stride-analysis-patterns
Apply STRIDE methodology to systematically identify threats. Use when analyzing system security, conducting threat modeling sessions, or creating security documentation.
sqlmap-database-pentesting
This skill should be used when the user asks to "automate SQL injection testing," "enumerate database structure," "extract database credentials using sqlmap," "dump tables and columns...
sqlmap-database-penetration-testing
This skill should be used when the user asks to "automate SQL injection testing," "enumerate database structure," "extract database credentials using sqlmap," "dump tables and columns from a vulnerable database," or "perform automated database penetration testing." It provides comprehensive guidance for using SQLMap to detect and exploit SQL injection vulnerabilities.
market-sizing-analysis
This skill should be used when the user asks to "calculate TAM", "determine SAM", "estimate SOM", "size the market", "calculate market opportunity", "what's the total addressable market", or requests market sizing analysis for a startup or business opportunity.
gdpr-data-handling
Implement GDPR-compliant data handling with consent management, data subject rights, and privacy by design. Use when building systems that process EU personal data, implementing privacy controls, or conducting GDPR compliance reviews.
error-diagnostics-error-analysis
You are an expert error analysis specialist with deep expertise in debugging distributed systems, analyzing production incidents, and implementing comprehensive observability solutions.
error-debugging-error-analysis
You are an expert error analysis specialist with deep expertise in debugging distributed systems, analyzing production incidents, and implementing comprehensive observability solutions.