This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: meeting-intelligence | |
| description: > | |
| Pipeline that converts a meeting transcript into a complete Gherkin (.feature) | |
| file, ready for Claude Code. Generates Features for Outcome, Behavior, Acceptance, | |
| OKR Alignment, Tasks, and minimum questions to ask during the meeting. ALWAYS USE | |
| when the user mentions: "process this meeting", "meeting transcript", "generate spec", | |
| "meeting → spec", "process transcript", "generate tasks from this meeting", or pastes/ | |
| links a transcript. Infers everything from the transcript — no prior team knowledge assumed. | |
| compatibility: "Google Drive MCP to read transcripts by link." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Meeting Intelligence Pipeline | |
| > A Claude skill that converts any meeting transcript into a single production-ready Gherkin `.feature` file — directly consumable by Claude Code. | |
| ## What it does | |
| Most product teams leave meetings with messy notes, vague action items, and specs that never get written. This skill closes that gap. | |
| You give it a transcript. It gives you a `.feature` file with: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Claude Code Setup Prompt | |
| Copy and paste this in Claude Code at the root of your project: | |
| --- | |
| ``` | |
| I need you to analyze this project and generate the complete infrastructure to work efficiently with Claude Code following best practices. Do the following: | |
| ## 1. CLAUDE.md (project root) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Necesito que analices este proyecto y generes la infraestructura completa para trabajar eficientemente con Claude Code siguiendo las mejores prácticas. Hacé lo siguiente: | |
| ## 1. CLAUDE.md (raíz del proyecto) | |
| Analizá el código, estructura, dependencias y patrones del proyecto. Generá un CLAUDE.md que incluya: | |
| - Descripción del proyecto y su propósito de negocio | |
| - Stack tecnológico y versiones principales | |
| - Estructura de directorios con explicación de cada carpeta importante | |
| - Convenciones de código (naming, patrones, arquitectura) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // choose either `'stable'` for receiving highly polished, | |
| // or `'canary'` for less polished but more frequent updates | |
| updateChannel: 'stable', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @NgModule({ | |
| bootstrap: [TestComponent], | |
| }) | |
| export class TestModule {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div (mouseover)="load = true">Hover to load TestModule</div> | |
| <lazy-af *ngIf="load" moduleName="src/app/test/test.module#TestModule"></lazy-af> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @NgModule({ | |
| imports: [LazyModule], | |
| }) | |
| export class AppModule {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "options": { | |
| ... | |
| "lazyModules": [ "src/app/test/test.module" ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private mergeAllSnapshots(data: Array<any>) { | |
| return combineLatest(...data) | |
| .switchMap(allData => { | |
| const combined = []; | |
| combined.push([].concat(...allData)); | |
| return Observable.of(combined[0]); | |
| }).map(actions => { | |
| return actions.map(a => { | |
| const data = a.payload.doc.data(); | |
| const id = a.payload.doc.id; |
NewerOlder