@cortexmemory/cli 0.26.2 โ†’ 0.27.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/commands/dev.d.ts.map +1 -1
  2. package/dist/commands/dev.js +121 -10
  3. package/dist/commands/dev.js.map +1 -1
  4. package/dist/commands/init.d.ts.map +1 -1
  5. package/dist/commands/init.js +273 -43
  6. package/dist/commands/init.js.map +1 -1
  7. package/dist/commands/setup.d.ts.map +1 -1
  8. package/dist/commands/setup.js +102 -46
  9. package/dist/commands/setup.js.map +1 -1
  10. package/dist/commands/status.d.ts.map +1 -1
  11. package/dist/commands/status.js +94 -7
  12. package/dist/commands/status.js.map +1 -1
  13. package/dist/types.d.ts +23 -0
  14. package/dist/types.d.ts.map +1 -1
  15. package/dist/utils/config.d.ts +11 -0
  16. package/dist/utils/config.d.ts.map +1 -1
  17. package/dist/utils/config.js +20 -0
  18. package/dist/utils/config.js.map +1 -1
  19. package/dist/utils/init/graph-setup.d.ts.map +1 -1
  20. package/dist/utils/init/graph-setup.js +12 -0
  21. package/dist/utils/init/graph-setup.js.map +1 -1
  22. package/dist/utils/init/quickstart-setup.d.ts +87 -0
  23. package/dist/utils/init/quickstart-setup.d.ts.map +1 -0
  24. package/dist/utils/init/quickstart-setup.js +462 -0
  25. package/dist/utils/init/quickstart-setup.js.map +1 -0
  26. package/dist/utils/schema-sync.d.ts.map +1 -1
  27. package/dist/utils/schema-sync.js +27 -21
  28. package/dist/utils/schema-sync.js.map +1 -1
  29. package/package.json +3 -2
  30. package/templates/vercel-ai-quickstart/.env.local.example +45 -0
  31. package/templates/vercel-ai-quickstart/README.md +280 -0
  32. package/templates/vercel-ai-quickstart/app/api/chat/route.ts +196 -0
  33. package/templates/vercel-ai-quickstart/app/api/facts/route.ts +39 -0
  34. package/templates/vercel-ai-quickstart/app/api/health/route.ts +99 -0
  35. package/templates/vercel-ai-quickstart/app/api/memories/route.ts +37 -0
  36. package/templates/vercel-ai-quickstart/app/globals.css +114 -0
  37. package/templates/vercel-ai-quickstart/app/layout.tsx +19 -0
  38. package/templates/vercel-ai-quickstart/app/page.tsx +131 -0
  39. package/templates/vercel-ai-quickstart/components/ChatInterface.tsx +237 -0
  40. package/templates/vercel-ai-quickstart/components/ConvexClientProvider.tsx +21 -0
  41. package/templates/vercel-ai-quickstart/components/DataPreview.tsx +57 -0
  42. package/templates/vercel-ai-quickstart/components/HealthStatus.tsx +214 -0
  43. package/templates/vercel-ai-quickstart/components/LayerCard.tsx +263 -0
  44. package/templates/vercel-ai-quickstart/components/LayerFlowDiagram.tsx +195 -0
  45. package/templates/vercel-ai-quickstart/components/MemorySpaceSwitcher.tsx +93 -0
  46. package/templates/vercel-ai-quickstart/convex/conversations.ts +67 -0
  47. package/templates/vercel-ai-quickstart/convex/facts.ts +131 -0
  48. package/templates/vercel-ai-quickstart/convex/health.ts +15 -0
  49. package/templates/vercel-ai-quickstart/convex/memories.ts +104 -0
  50. package/templates/vercel-ai-quickstart/convex/schema.ts +20 -0
  51. package/templates/vercel-ai-quickstart/convex/users.ts +105 -0
  52. package/templates/vercel-ai-quickstart/lib/animations.ts +146 -0
  53. package/templates/vercel-ai-quickstart/lib/layer-tracking.ts +214 -0
  54. package/templates/vercel-ai-quickstart/next.config.js +7 -0
  55. package/templates/vercel-ai-quickstart/package.json +41 -0
  56. package/templates/vercel-ai-quickstart/postcss.config.js +5 -0
  57. package/templates/vercel-ai-quickstart/tailwind.config.js +37 -0
  58. package/templates/vercel-ai-quickstart/tsconfig.json +33 -0
@@ -0,0 +1,93 @@
1
+ "use client";
2
+
3
+ import { useState } from "react";
4
+ import { motion, AnimatePresence } from "framer-motion";
5
+
6
+ interface MemorySpaceSwitcherProps {
7
+ value: string;
8
+ onChange: (value: string) => void;
9
+ }
10
+
11
+ const spaces = [
12
+ { id: "quickstart-demo", name: "Demo", icon: "๐Ÿงช" },
13
+ { id: "personal", name: "Personal", icon: "๐Ÿ‘ค" },
14
+ { id: "work", name: "Work", icon: "๐Ÿ’ผ" },
15
+ ];
16
+
17
+ export function MemorySpaceSwitcher({
18
+ value,
19
+ onChange,
20
+ }: MemorySpaceSwitcherProps) {
21
+ const [isOpen, setIsOpen] = useState(false);
22
+ const currentSpace = spaces.find((s) => s.id === value) || spaces[0];
23
+
24
+ return (
25
+ <div className="relative">
26
+ <button
27
+ onClick={() => setIsOpen(!isOpen)}
28
+ className="flex items-center gap-2 px-3 py-2 bg-white/5 hover:bg-white/10 border border-white/10 rounded-lg transition-colors"
29
+ >
30
+ <span>{currentSpace.icon}</span>
31
+ <span className="text-sm font-medium">{currentSpace.name}</span>
32
+ <motion.span
33
+ className="text-gray-400 text-xs"
34
+ animate={{ rotate: isOpen ? 180 : 0 }}
35
+ >
36
+ โ–ผ
37
+ </motion.span>
38
+ </button>
39
+
40
+ <AnimatePresence>
41
+ {isOpen && (
42
+ <>
43
+ {/* Backdrop */}
44
+ <div
45
+ className="fixed inset-0 z-10"
46
+ onClick={() => setIsOpen(false)}
47
+ />
48
+
49
+ {/* Dropdown */}
50
+ <motion.div
51
+ initial={{ opacity: 0, y: -10 }}
52
+ animate={{ opacity: 1, y: 0 }}
53
+ exit={{ opacity: 0, y: -10 }}
54
+ className="absolute right-0 top-full mt-2 w-56 bg-gray-900 border border-white/10 rounded-lg shadow-xl z-20 overflow-hidden"
55
+ >
56
+ <div className="p-2">
57
+ <div className="text-xs text-gray-500 px-2 py-1 mb-1">
58
+ Memory Space
59
+ </div>
60
+
61
+ {spaces.map((space) => (
62
+ <button
63
+ key={space.id}
64
+ onClick={() => {
65
+ onChange(space.id);
66
+ setIsOpen(false);
67
+ }}
68
+ className={`w-full flex items-center gap-2 px-3 py-2 rounded-lg text-left transition-colors ${
69
+ value === space.id
70
+ ? "bg-cortex-600/20 text-cortex-400"
71
+ : "hover:bg-white/5"
72
+ }`}
73
+ >
74
+ <span>{space.icon}</span>
75
+ <span className="flex-1 font-medium">{space.name}</span>
76
+ <code className="text-xs text-gray-500">{space.id}</code>
77
+ </button>
78
+ ))}
79
+ </div>
80
+
81
+ <div className="border-t border-white/10 p-3 bg-white/5">
82
+ <p className="text-xs text-gray-400">
83
+ Switch memory spaces to demonstrate multi-tenant isolation.
84
+ Memories in one space don't appear in others.
85
+ </p>
86
+ </div>
87
+ </motion.div>
88
+ </>
89
+ )}
90
+ </AnimatePresence>
91
+ </div>
92
+ );
93
+ }
@@ -0,0 +1,67 @@
1
+ /**
2
+ * Convex queries for real-time conversation updates
3
+ *
4
+ * These queries enable the LayerFlowDiagram to show live updates
5
+ * as data flows through the Cortex memory system.
6
+ */
7
+
8
+ import { query } from "./_generated/server";
9
+ import { v } from "convex/values";
10
+
11
+ /**
12
+ * Get recent conversations for a memory space
13
+ *
14
+ * Used by the demo to watch for new conversations being created.
15
+ */
16
+ export const getRecent = query({
17
+ args: {
18
+ memorySpaceId: v.string(),
19
+ limit: v.optional(v.number()),
20
+ },
21
+ handler: async (ctx, args) => {
22
+ const limit = args.limit ?? 10;
23
+
24
+ // Query conversations table (from Cortex SDK schema)
25
+ const conversations = await ctx.db
26
+ .query("conversations")
27
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId))
28
+ .order("desc")
29
+ .take(limit);
30
+
31
+ return conversations;
32
+ },
33
+ });
34
+
35
+ /**
36
+ * Get a specific conversation by ID
37
+ */
38
+ export const get = query({
39
+ args: {
40
+ conversationId: v.string(),
41
+ },
42
+ handler: async (ctx, args) => {
43
+ const conversation = await ctx.db
44
+ .query("conversations")
45
+ .filter((q) => q.eq(q.field("conversationId"), args.conversationId))
46
+ .first();
47
+
48
+ return conversation;
49
+ },
50
+ });
51
+
52
+ /**
53
+ * Get conversation count for a memory space
54
+ */
55
+ export const count = query({
56
+ args: {
57
+ memorySpaceId: v.string(),
58
+ },
59
+ handler: async (ctx, args) => {
60
+ const conversations = await ctx.db
61
+ .query("conversations")
62
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId))
63
+ .collect();
64
+
65
+ return conversations.length;
66
+ },
67
+ });
@@ -0,0 +1,131 @@
1
+ /**
2
+ * Convex queries for real-time fact updates
3
+ *
4
+ * These queries enable the LayerFlowDiagram to show live updates
5
+ * as facts are extracted from conversations.
6
+ */
7
+
8
+ import { query } from "./_generated/server";
9
+ import { v } from "convex/values";
10
+
11
+ /**
12
+ * Get recent facts for a memory space
13
+ *
14
+ * Used by the demo to watch for new facts being extracted.
15
+ */
16
+ export const getRecent = query({
17
+ args: {
18
+ memorySpaceId: v.string(),
19
+ limit: v.optional(v.number()),
20
+ },
21
+ handler: async (ctx, args) => {
22
+ const limit = args.limit ?? 20;
23
+
24
+ // Query facts table (from Cortex SDK schema)
25
+ const facts = await ctx.db
26
+ .query("facts")
27
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId))
28
+ .order("desc")
29
+ .take(limit);
30
+
31
+ return facts;
32
+ },
33
+ });
34
+
35
+ /**
36
+ * Get facts for a specific user
37
+ */
38
+ export const getByUser = query({
39
+ args: {
40
+ memorySpaceId: v.string(),
41
+ userId: v.string(),
42
+ limit: v.optional(v.number()),
43
+ },
44
+ handler: async (ctx, args) => {
45
+ const limit = args.limit ?? 50;
46
+
47
+ const facts = await ctx.db
48
+ .query("facts")
49
+ .filter((q) =>
50
+ q.and(
51
+ q.eq(q.field("memorySpaceId"), args.memorySpaceId),
52
+ q.eq(q.field("userId"), args.userId),
53
+ ),
54
+ )
55
+ .order("desc")
56
+ .take(limit);
57
+
58
+ return facts;
59
+ },
60
+ });
61
+
62
+ /**
63
+ * Get facts by type
64
+ */
65
+ export const getByType = query({
66
+ args: {
67
+ memorySpaceId: v.string(),
68
+ factType: v.string(),
69
+ limit: v.optional(v.number()),
70
+ },
71
+ handler: async (ctx, args) => {
72
+ const limit = args.limit ?? 20;
73
+
74
+ const facts = await ctx.db
75
+ .query("facts")
76
+ .filter((q) =>
77
+ q.and(
78
+ q.eq(q.field("memorySpaceId"), args.memorySpaceId),
79
+ q.eq(q.field("factType"), args.factType),
80
+ ),
81
+ )
82
+ .order("desc")
83
+ .take(limit);
84
+
85
+ return facts;
86
+ },
87
+ });
88
+
89
+ /**
90
+ * Get fact count for a memory space
91
+ */
92
+ export const count = query({
93
+ args: {
94
+ memorySpaceId: v.string(),
95
+ },
96
+ handler: async (ctx, args) => {
97
+ const facts = await ctx.db
98
+ .query("facts")
99
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId))
100
+ .collect();
101
+
102
+ return facts.length;
103
+ },
104
+ });
105
+
106
+ /**
107
+ * Get fact type summary for a user
108
+ */
109
+ export const typeSummary = query({
110
+ args: {
111
+ memorySpaceId: v.string(),
112
+ userId: v.optional(v.string()),
113
+ },
114
+ handler: async (ctx, args) => {
115
+ let factsQuery = ctx.db
116
+ .query("facts")
117
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId));
118
+
119
+ const facts = await factsQuery.collect();
120
+
121
+ // Group by type
122
+ const summary: Record<string, number> = {};
123
+ for (const fact of facts) {
124
+ if (args.userId && fact.userId !== args.userId) continue;
125
+ const type = fact.factType || "unknown";
126
+ summary[type] = (summary[type] || 0) + 1;
127
+ }
128
+
129
+ return summary;
130
+ },
131
+ });
@@ -0,0 +1,15 @@
1
+ import { query } from "./_generated/server";
2
+
3
+ /**
4
+ * Simple health check query to verify Convex backend is reachable
5
+ */
6
+ export const ping = query({
7
+ args: {},
8
+ handler: async () => {
9
+ return {
10
+ status: "ok",
11
+ timestamp: Date.now(),
12
+ backend: "convex",
13
+ };
14
+ },
15
+ });
@@ -0,0 +1,104 @@
1
+ /**
2
+ * Convex queries for real-time memory updates
3
+ *
4
+ * These queries enable the LayerFlowDiagram to show live updates
5
+ * as vector memories are created in the Cortex system.
6
+ */
7
+
8
+ import { query } from "./_generated/server";
9
+ import { v } from "convex/values";
10
+
11
+ /**
12
+ * Get recent memories for a memory space
13
+ *
14
+ * Used by the demo to watch for new memories being created.
15
+ */
16
+ export const getRecent = query({
17
+ args: {
18
+ memorySpaceId: v.string(),
19
+ limit: v.optional(v.number()),
20
+ },
21
+ handler: async (ctx, args) => {
22
+ const limit = args.limit ?? 10;
23
+
24
+ // Query memories table (from Cortex SDK schema)
25
+ const memories = await ctx.db
26
+ .query("memories")
27
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId))
28
+ .order("desc")
29
+ .take(limit);
30
+
31
+ return memories;
32
+ },
33
+ });
34
+
35
+ /**
36
+ * Get memories for a specific user
37
+ */
38
+ export const getByUser = query({
39
+ args: {
40
+ memorySpaceId: v.string(),
41
+ userId: v.string(),
42
+ limit: v.optional(v.number()),
43
+ },
44
+ handler: async (ctx, args) => {
45
+ const limit = args.limit ?? 20;
46
+
47
+ const memories = await ctx.db
48
+ .query("memories")
49
+ .filter((q) =>
50
+ q.and(
51
+ q.eq(q.field("memorySpaceId"), args.memorySpaceId),
52
+ q.eq(q.field("userId"), args.userId),
53
+ ),
54
+ )
55
+ .order("desc")
56
+ .take(limit);
57
+
58
+ return memories;
59
+ },
60
+ });
61
+
62
+ /**
63
+ * Get memory count for a memory space
64
+ */
65
+ export const count = query({
66
+ args: {
67
+ memorySpaceId: v.string(),
68
+ },
69
+ handler: async (ctx, args) => {
70
+ const memories = await ctx.db
71
+ .query("memories")
72
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId))
73
+ .collect();
74
+
75
+ return memories.length;
76
+ },
77
+ });
78
+
79
+ /**
80
+ * Search memories by content (simple text search for demo)
81
+ */
82
+ export const search = query({
83
+ args: {
84
+ memorySpaceId: v.string(),
85
+ query: v.string(),
86
+ limit: v.optional(v.number()),
87
+ },
88
+ handler: async (ctx, args) => {
89
+ const limit = args.limit ?? 5;
90
+ const queryLower = args.query.toLowerCase();
91
+
92
+ // Simple text search (in production, use vector search)
93
+ const allMemories = await ctx.db
94
+ .query("memories")
95
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId))
96
+ .collect();
97
+
98
+ const matching = allMemories
99
+ .filter((m) => m.content?.toLowerCase().includes(queryLower))
100
+ .slice(0, limit);
101
+
102
+ return matching;
103
+ },
104
+ });
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Convex schema for the quickstart demo
3
+ *
4
+ * This extends the Cortex SDK schema to add any demo-specific tables.
5
+ * The actual memory tables (conversations, memories, facts) come from @cortexmemory/sdk.
6
+ */
7
+
8
+ import { defineSchema, defineTable } from "convex/server";
9
+ import { v } from "convex/values";
10
+
11
+ export default defineSchema({
12
+ // Demo session tracking (optional, for demo purposes)
13
+ demoSessions: defineTable({
14
+ sessionId: v.string(),
15
+ userId: v.string(),
16
+ memorySpaceId: v.string(),
17
+ startedAt: v.number(),
18
+ messageCount: v.number(),
19
+ }).index("by_session", ["sessionId"]),
20
+ });
@@ -0,0 +1,105 @@
1
+ /**
2
+ * Convex queries for user profile data
3
+ *
4
+ * These queries enable the LayerFlowDiagram to show user context
5
+ * during memory orchestration.
6
+ */
7
+
8
+ import { query } from "./_generated/server";
9
+ import { v } from "convex/values";
10
+
11
+ /**
12
+ * Get user profile by ID
13
+ *
14
+ * Returns user information stored in the Cortex system.
15
+ */
16
+ export const get = query({
17
+ args: {
18
+ userId: v.string(),
19
+ memorySpaceId: v.string(),
20
+ },
21
+ handler: async (ctx, args) => {
22
+ // Query users table (from Cortex SDK schema)
23
+ const user = await ctx.db
24
+ .query("users")
25
+ .filter((q) =>
26
+ q.and(
27
+ q.eq(q.field("userId"), args.userId),
28
+ q.eq(q.field("memorySpaceId"), args.memorySpaceId),
29
+ ),
30
+ )
31
+ .first();
32
+
33
+ return user;
34
+ },
35
+ });
36
+
37
+ /**
38
+ * Get users in a memory space
39
+ */
40
+ export const list = query({
41
+ args: {
42
+ memorySpaceId: v.string(),
43
+ limit: v.optional(v.number()),
44
+ },
45
+ handler: async (ctx, args) => {
46
+ const limit = args.limit ?? 20;
47
+
48
+ const users = await ctx.db
49
+ .query("users")
50
+ .filter((q) => q.eq(q.field("memorySpaceId"), args.memorySpaceId))
51
+ .take(limit);
52
+
53
+ return users;
54
+ },
55
+ });
56
+
57
+ /**
58
+ * Get user stats (memory count, fact count, etc.)
59
+ */
60
+ export const stats = query({
61
+ args: {
62
+ userId: v.string(),
63
+ memorySpaceId: v.string(),
64
+ },
65
+ handler: async (ctx, args) => {
66
+ // Count memories
67
+ const memories = await ctx.db
68
+ .query("memories")
69
+ .filter((q) =>
70
+ q.and(
71
+ q.eq(q.field("userId"), args.userId),
72
+ q.eq(q.field("memorySpaceId"), args.memorySpaceId),
73
+ ),
74
+ )
75
+ .collect();
76
+
77
+ // Count facts
78
+ const facts = await ctx.db
79
+ .query("facts")
80
+ .filter((q) =>
81
+ q.and(
82
+ q.eq(q.field("userId"), args.userId),
83
+ q.eq(q.field("memorySpaceId"), args.memorySpaceId),
84
+ ),
85
+ )
86
+ .collect();
87
+
88
+ // Count conversations
89
+ const conversations = await ctx.db
90
+ .query("conversations")
91
+ .filter((q) =>
92
+ q.and(
93
+ q.eq(q.field("userId"), args.userId),
94
+ q.eq(q.field("memorySpaceId"), args.memorySpaceId),
95
+ ),
96
+ )
97
+ .collect();
98
+
99
+ return {
100
+ memoryCount: memories.length,
101
+ factCount: facts.length,
102
+ conversationCount: conversations.length,
103
+ };
104
+ },
105
+ });
@@ -0,0 +1,146 @@
1
+ import type { Variants } from "framer-motion";
2
+
3
+ /**
4
+ * Framer Motion animation variants for the layer flow visualization
5
+ */
6
+
7
+ // Layer card entrance animation
8
+ export const layerCardVariants: Variants = {
9
+ hidden: {
10
+ opacity: 0,
11
+ x: -20,
12
+ scale: 0.95,
13
+ },
14
+ visible: (i: number) => ({
15
+ opacity: 1,
16
+ x: 0,
17
+ scale: 1,
18
+ transition: {
19
+ delay: i * 0.1,
20
+ duration: 0.3,
21
+ ease: "easeOut",
22
+ },
23
+ }),
24
+ exit: {
25
+ opacity: 0,
26
+ x: 20,
27
+ transition: {
28
+ duration: 0.2,
29
+ },
30
+ },
31
+ };
32
+
33
+ // Status indicator pulse animation
34
+ export const statusPulseVariants: Variants = {
35
+ pending: {
36
+ scale: 1,
37
+ opacity: 0.5,
38
+ },
39
+ processing: {
40
+ scale: [1, 1.2, 1],
41
+ opacity: [0.5, 1, 0.5],
42
+ transition: {
43
+ duration: 1,
44
+ repeat: Infinity,
45
+ ease: "easeInOut",
46
+ },
47
+ },
48
+ complete: {
49
+ scale: [1, 1.3, 1],
50
+ opacity: 1,
51
+ transition: {
52
+ duration: 0.3,
53
+ ease: "easeOut",
54
+ },
55
+ },
56
+ };
57
+
58
+ // Flow line animation
59
+ export const flowLineVariants: Variants = {
60
+ idle: {
61
+ opacity: 0.2,
62
+ pathLength: 0,
63
+ },
64
+ flowing: {
65
+ opacity: [0.2, 1, 0.2],
66
+ pathLength: [0, 1, 0],
67
+ transition: {
68
+ duration: 1.5,
69
+ repeat: Infinity,
70
+ ease: "easeInOut",
71
+ },
72
+ },
73
+ complete: {
74
+ opacity: 1,
75
+ pathLength: 1,
76
+ },
77
+ };
78
+
79
+ // Data preview expand animation
80
+ export const dataPreviewVariants: Variants = {
81
+ collapsed: {
82
+ height: 0,
83
+ opacity: 0,
84
+ },
85
+ expanded: {
86
+ height: "auto",
87
+ opacity: 1,
88
+ transition: {
89
+ height: {
90
+ duration: 0.3,
91
+ ease: "easeOut",
92
+ },
93
+ opacity: {
94
+ duration: 0.2,
95
+ delay: 0.1,
96
+ },
97
+ },
98
+ },
99
+ };
100
+
101
+ // Message animation
102
+ export const messageVariants: Variants = {
103
+ hidden: {
104
+ opacity: 0,
105
+ y: 10,
106
+ scale: 0.95,
107
+ },
108
+ visible: {
109
+ opacity: 1,
110
+ y: 0,
111
+ scale: 1,
112
+ transition: {
113
+ duration: 0.2,
114
+ ease: "easeOut",
115
+ },
116
+ },
117
+ };
118
+
119
+ // Stagger children animation
120
+ export const staggerContainerVariants: Variants = {
121
+ hidden: { opacity: 0 },
122
+ visible: {
123
+ opacity: 1,
124
+ transition: {
125
+ staggerChildren: 0.1,
126
+ delayChildren: 0.2,
127
+ },
128
+ },
129
+ };
130
+
131
+ // Glow effect animation (for completed layers)
132
+ export const glowVariants: Variants = {
133
+ idle: {
134
+ boxShadow: "0 0 0 0 rgba(34, 197, 94, 0)",
135
+ },
136
+ glow: {
137
+ boxShadow: [
138
+ "0 0 0 0 rgba(34, 197, 94, 0.4)",
139
+ "0 0 0 10px rgba(34, 197, 94, 0)",
140
+ ],
141
+ transition: {
142
+ duration: 0.6,
143
+ ease: "easeOut",
144
+ },
145
+ },
146
+ };