@base44-preview/cli 0.1.6-pr.580.c820609 → 0.1.6-pr.583.90db4f5

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.
@@ -0,0 +1,8 @@
1
+ ---
2
+ description: Summarize the week's completed tasks grouped by assignee.
3
+ ---
4
+
5
+ When the user asks for a weekly report:
6
+ 1. Read all Tasks completed in the last 7 days.
7
+ 2. Group them by assignee and count done vs. carried-over.
8
+ 3. Return a short markdown table, newest first.
@@ -8,6 +8,7 @@
8
8
  "allowed_operations": ["read", "create", "update", "delete"]
9
9
  }
10
10
  ],
11
+ "selected_skill_names": ["weekly-report"],
11
12
  // Optional: let the agent remember facts across conversations.
12
13
  // scope: "user" (per end-user), "global" (shared), or "both".
13
14
  "memory_config": {
@@ -9,8 +9,7 @@
9
9
  "preview": "vite preview"
10
10
  },
11
11
  "dependencies": {
12
- "@base44/sdk": "^0.8.40",
13
- "@base44/vite-plugin": "^1.0.30",
12
+ "@base44/sdk": "^0.8.3",
14
13
  "lucide-react": "^0.475.0",
15
14
  "react": "^18.2.0",
16
15
  "react-dom": "^18.2.0"
@@ -0,0 +1,5 @@
1
+ import { createClient } from '@base44/sdk';
2
+
3
+ export const base44 = createClient({
4
+ appId: '<%= projectId %>',
5
+ });
@@ -1,7 +1,12 @@
1
- import base44 from '@base44/vite-plugin';
2
- import react from '@vitejs/plugin-react';
3
1
  import { defineConfig } from 'vite';
2
+ import react from '@vitejs/plugin-react';
3
+ import path from 'path';
4
4
 
5
5
  export default defineConfig({
6
- plugins: [base44(), react()],
6
+ plugins: [react()],
7
+ resolve: {
8
+ alias: {
9
+ '@': path.resolve(__dirname, './src'),
10
+ },
11
+ },
7
12
  });