Add TLC meeting minutes skill#2676
Conversation
✅ Deploy Preview for selenium-dev ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
PR Summary by QodoAdd TLC meeting-minutes agent skill and publish 2026 TLC minutes
AI Description
Diagram
High-Level Assessment
Files changed (7)
|
Code Review by Qodo
1. Unclear skill discovery paths
|
| - Shared project skills live in `.agents/skills/`; inspect relevant `*/SKILL.md` files before | ||
| doing repeated or domain-specific workflows. |
There was a problem hiding this comment.
1. Unclear skill discovery paths 🐞 Bug ⚙ Maintainability
AGENTS.md adds guidance to inspect .agents/skills/, but it does not clarify how this relates to the already-documented committed skills under scripts/skills/, leaving contributors/agents unsure which directories are authoritative for discovery and where new shared skills should be added.
Agent Prompt
## Issue description
`AGENTS.md` now mentions shared skills under `.agents/skills/`, but the document already defines `scripts/skills/` as the location for committed repo skills. Without explicitly stating the relationship (e.g., “inspect both”, “`.agents/skills` supersedes `scripts/skills`”, or “they serve different purposes”), skill discovery and future contributions are likely to be inconsistent.
## Issue Context
- The repo already contains a committed skill under `scripts/skills/`.
- This PR introduces a new committed skill under `.agents/skills/`.
## Fix Focus Areas
- AGENTS.md[19-29]
- scripts/skills/release-blog-post/SKILL.md[1-6]
- .agents/skills/tlc-meeting/SKILL.md[1-12]
## Suggested fix
- Update `AGENTS.md` to explicitly define:
- whether agents/contributors should inspect **both** `.agents/skills/` and `scripts/skills/`.
- which directory is the preferred destination for **new** shared skills.
- (optional) if one directory is legacy, add a short migration note.
- Consider aligning by either moving the new skill into `scripts/skills/` or updating the “Project-defined skills” section to include `.agents/skills/` as a first-class location (so the doc reads as one coherent policy).
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
Description
Adds a shared
.agents/skills/tlc-meetingskill for generating Selenium TLC meeting minutes from local transcripts, and documents shared project skill discovery inAGENTS.md.Also adds 2026 TLC meeting minutes for:
The skill treats the transcript as the source of truth, uses the rolling agenda only for matching dated agenda context and public links, and allows GitHub PR/issue bodies/comments only as public reference context.
Motivation and Context
This makes TLC meeting minute generation repeatable and reviewable for future meetings. The skill encodes the workflow, participant mapping, evidence rules, GitHub handle-link style, and section responsibilities so future minutes avoid private transcript links, agenda-only content, unsupported decisions, and duplicated summary/decision/discussion text.
Types of changes