-
Notifications
You must be signed in to change notification settings - Fork 110
feat(embed/chat): AI Meeting Copilot — Transform Transcripts into Actionable Insights with Slack Automation #92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
a3db45d
d84c819
17476b2
a517388
978b256
40113bc
b125143
afb34f2
fb909ee
c5ffbf3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| **/.DS_Store | ||
|
|
||
| .env | ||
| .env | ||
| .env.local | ||
| **/.next/ | ||
| **/node_modules/ |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,6 @@ | |
| --card-foreground: oklch(0.15 0.02 270); | ||
| --popover: oklch(1 0 0); | ||
| --popover-foreground: oklch(0.15 0.02 270); | ||
| /* Updated primary to purple for buttons and accents */ | ||
| --primary: oklch(0.55 0.18 270); | ||
| --primary-foreground: oklch(0.98 0.01 270); | ||
| --secondary: oklch(0.96 0.01 270); | ||
|
|
@@ -24,7 +23,6 @@ | |
| --border: oklch(0.92 0.01 270); | ||
| --input: oklch(0.92 0.01 270); | ||
| --ring: oklch(0.55 0.18 270); | ||
| /* Updated chart colors to purple/blue theme */ | ||
| --chart-1: oklch(0.55 0.18 270); | ||
| --chart-2: oklch(0.6 0.15 240); | ||
| --chart-3: oklch(0.65 0.12 210); | ||
|
|
@@ -48,7 +46,6 @@ | |
| --card-foreground: oklch(0.95 0.01 270); | ||
| --popover: oklch(0.12 0.02 270); | ||
| --popover-foreground: oklch(0.95 0.01 270); | ||
| /* Updated dark mode primary to brighter purple */ | ||
| --primary: oklch(0.65 0.2 270); | ||
| --primary-foreground: oklch(0.08 0.02 270); | ||
| --secondary: oklch(0.18 0.02 270); | ||
|
|
@@ -62,7 +59,6 @@ | |
| --border: oklch(0.18 0.02 270); | ||
| --input: oklch(0.18 0.02 270); | ||
| --ring: oklch(0.65 0.2 270); | ||
| /* Updated dark mode chart colors */ | ||
| --chart-1: oklch(0.65 0.2 270); | ||
| --chart-2: oklch(0.7 0.18 240); | ||
| --chart-3: oklch(0.75 0.15 210); | ||
|
|
@@ -122,8 +118,24 @@ | |
| @layer base { | ||
| * { | ||
| @apply border-border outline-ring/50; | ||
| box-sizing: border-box; | ||
| } | ||
|
Comment on lines
119
to
122
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix Stylelint violations in base rules. The added declarations trigger Proposed lint-safe patch * {
`@apply` border-border outline-ring/50;
+
box-sizing: border-box;
}
body {
`@apply` bg-background text-foreground;
+
margin: 0;
}Also applies to: 128-131 🧰 Tools🪛 Stylelint (17.4.0)[error] 121-121: Expected empty line before declaration (declaration-empty-line-before) (declaration-empty-line-before) |
||
|
|
||
| html { | ||
| scroll-behavior: smooth; | ||
| } | ||
|
|
||
| body { | ||
| @apply bg-background text-foreground; | ||
| margin: 0; | ||
| } | ||
|
|
||
| a { | ||
| color: inherit; | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| button { | ||
| font: inherit; | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| NEXT_PUBLIC_LAMATIC_PROJECT_ID=your_project_id_here | ||
| NEXT_PUBLIC_LAMATIC_FLOW_ID=your_flow_id_here | ||
| NEXT_PUBLIC_LAMATIC_API_URL=https://your-project.lamatic.dev |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| .env.local | ||
| .next/ | ||
| node_modules/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mission directive: keep the capability manifest complete for the new kit.
The new Meeting Intelligence Copilot row lists only summary/action-items/risks, but the PR scope also includes next steps and a follow-up email output. Please include those to avoid understating kit behavior in the primary catalog.
Suggested doc patch
🤖 Prompt for AI Agents