From sayou
Saves key findings, decisions, notes, bugs, and guides from conversations to sayou workspace as versioned Markdown files with YAML frontmatter via workspace_write.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sayou:saveThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Save key knowledge from the current conversation to the sayou workspace as a structured, versioned file.
Save key knowledge from the current conversation to the sayou workspace as a structured, versioned file.
Analyze the conversation — identify the most important knowledge to save:
Choose a logical path based on content type:
decisions/ — architectural decisions, technology choices, design rationaleresearch/ — competitive analysis, market research, technical investigationnotes/ — meeting notes, brainstorms, general notesbugs/ — bug investigations, root causes, fixes appliedguides/ — how-to guides, setup instructions, runbooksWrite with YAML frontmatter — always include structured metadata:
---
type: decision | research | note | bug-report | guide
status: draft | reviewed | approved | archived
topic: short-topic-name
date: YYYY-MM-DD
tags: [relevant, tags]
---
Use workspace_write to save the file. Use a descriptive filename in kebab-case (e.g., auth-token-refresh-fix.md).
Confirm what was saved — show the path, key frontmatter fields, and mention it's versioned (they can update it later and the old version is preserved).
If the conversation discussed choosing PostgreSQL over MySQL:
---
type: decision
status: approved
topic: database-selection
date: 2026-02-19
tags: [database, infrastructure]
---
# Database Selection: PostgreSQL
## Decision
PostgreSQL over MySQL for the new service.
## Reasoning
- Better JSON support (JSONB) for our flexible schema needs
- Superior full-text search (eliminates need for Elasticsearch)
- Row-level security for multi-tenant isolation
## Alternatives Considered
- MySQL: Familiar to team but weaker JSON/FTS support
- MongoDB: Overkill for our relational data patterns
Save to: decisions/database-selection.md
workspace_write (not regular Write tool) — this goes to the persistent workspace, not the local filesystemworkspace_write creates a new version (nothing is overwritten)npx claudepluginhub pixell-global/sayou --plugin sayouCaptures decisions, conventions, patterns, issues, and concepts from conversations into docs/ markdown nodes using triage output. Auto-activates on save intents or decision signals.
Records significant architectural decisions like database choices, frameworks, or core patterns in docs/decisions.md. Activates on major decisions, explicit requests, or proactively at session ends.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.