From sdd-engineering-team
Shared instructions for writing conversation logs. Loaded by all agent personas.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sdd-engineering-team:conversation-loggerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Write a conversation log for **every task** you complete. This is non-negotiable.
Write a conversation log for every task you complete. This is non-negotiable.
.github/conversations/{YYYY-MM-DD}/{seq}-{role}-{task-slug}.md
{YYYY-MM-DD} — today's date{seq} — next available sequence number in that date directory (read existing files to determine){role} — your role in lowercase (engineer, qe, pm, debugger){task-slug} — short kebab-case task description (e.g., implement-auth, run-tests, trace-timeout)See .github/conversations/SCHEMA.md for the full specification. Key points:
task, agent, started, completed, status, feature (optional)## [HH:MM] {emoji} Section Title headers| Always Include | When Relevant |
|---|---|
| What task was assigned | Error messages and stack traces |
| Key decisions and why | Files read during investigation |
| Files modified or created (with paths) | Dependencies discovered or blocked on |
| Commands run and their output | Alternative approaches considered |
| Test results | Things that didn't work |
| Final status (success/failed/blocked) | Insights for future sessions |
.github/knowledge/_shared/ for any shared context or conventions..github/knowledge/{role}/ so future sessions benefit.Copy .github/conversations/_template.md and fill it in. Adjust sections as needed — only include sections that apply to your task.
npx claudepluginhub dzirkler/eng-team-pluginGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.