@nordsym/apiclaw 1.3.12 → 1.4.0

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 (52) hide show
  1. package/PRD-API-CHAINING.md +483 -0
  2. package/PRD-HARDEN-SHELL.md +278 -0
  3. package/README.md +72 -0
  4. package/convex/_generated/api.d.ts +4 -0
  5. package/convex/chains.ts +1095 -0
  6. package/convex/crons.ts +11 -0
  7. package/convex/logs.ts +107 -0
  8. package/convex/schema.ts +107 -0
  9. package/convex/spendAlerts.ts +442 -0
  10. package/convex/workspaces.ts +26 -0
  11. package/dist/chain-types.d.ts +187 -0
  12. package/dist/chain-types.d.ts.map +1 -0
  13. package/dist/chain-types.js +33 -0
  14. package/dist/chain-types.js.map +1 -0
  15. package/dist/chainExecutor.d.ts +122 -0
  16. package/dist/chainExecutor.d.ts.map +1 -0
  17. package/dist/chainExecutor.js +454 -0
  18. package/dist/chainExecutor.js.map +1 -0
  19. package/dist/chainResolver.d.ts +100 -0
  20. package/dist/chainResolver.d.ts.map +1 -0
  21. package/dist/chainResolver.js +519 -0
  22. package/dist/chainResolver.js.map +1 -0
  23. package/dist/chainResolver.test.d.ts +5 -0
  24. package/dist/chainResolver.test.d.ts.map +1 -0
  25. package/dist/chainResolver.test.js +201 -0
  26. package/dist/chainResolver.test.js.map +1 -0
  27. package/dist/execute.d.ts +5 -1
  28. package/dist/execute.d.ts.map +1 -1
  29. package/dist/execute.js +207 -118
  30. package/dist/execute.js.map +1 -1
  31. package/dist/index.js +382 -2
  32. package/dist/index.js.map +1 -1
  33. package/landing/package-lock.json +29 -5
  34. package/landing/package.json +2 -1
  35. package/landing/public/logos/chattgpt.svg +1 -0
  36. package/landing/public/logos/claude.svg +1 -0
  37. package/landing/public/logos/gemini.svg +1 -0
  38. package/landing/public/logos/grok.svg +1 -0
  39. package/landing/src/app/page.tsx +11 -0
  40. package/landing/src/app/security/page.tsx +381 -0
  41. package/landing/src/app/workspace/chains/page.tsx +520 -0
  42. package/landing/src/components/AITestimonials.tsx +195 -0
  43. package/landing/src/components/ChainStepDetail.tsx +310 -0
  44. package/landing/src/components/ChainTrace.tsx +261 -0
  45. package/landing/src/lib/stats.json +1 -1
  46. package/package.json +1 -1
  47. package/src/chain-types.ts +270 -0
  48. package/src/chainExecutor.ts +730 -0
  49. package/src/chainResolver.test.ts +246 -0
  50. package/src/chainResolver.ts +658 -0
  51. package/src/execute.ts +273 -114
  52. package/src/index.ts +423 -2
package/convex/crons.ts CHANGED
@@ -14,4 +14,15 @@ crons.daily(
14
14
  internal.billing.reportAllUsageToStripe
15
15
  );
16
16
 
17
+ /**
18
+ * Monthly Spend Reset
19
+ * Runs at 00:01 UTC on the 1st of each month
20
+ * Resets monthlySpendCents and budgetAlertSentAt for all workspaces
21
+ */
22
+ crons.monthly(
23
+ "reset-monthly-spend",
24
+ { day: 1, hourUTC: 0, minuteUTC: 1 },
25
+ internal.spendAlerts.resetMonthlySpend
26
+ );
27
+
17
28
  export default crons;
package/convex/logs.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { v } from "convex/values";
2
2
  import { mutation, query } from "./_generated/server";
3
+ import { api } from "./_generated/api";
3
4
 
4
5
  // ============================================
5
6
  // MUTATIONS
@@ -75,6 +76,112 @@ export const createLogInternal = mutation({
75
76
  },
76
77
  });
77
78
 
79
+ // ============================================
80
+ // HELPER: Get month start
81
+ // ============================================
82
+
83
+ function getMonthStart(): number {
84
+ const now = new Date();
85
+ return new Date(now.getUTCFullYear(), now.getUTCMonth(), 1, 0, 0, 0, 0).getTime();
86
+ }
87
+
88
+ /**
89
+ * Combined log creation + spend tracking (PRD 2.6)
90
+ * Creates log entry, tracks spend, returns budget status
91
+ * Returns shouldSendAlert: true if 80% threshold crossed (caller should send email)
92
+ */
93
+ export const createLogWithSpend = mutation({
94
+ args: {
95
+ workspaceId: v.id("workspaces"),
96
+ sessionToken: v.string(),
97
+ provider: v.string(),
98
+ action: v.string(),
99
+ status: v.union(v.literal("success"), v.literal("error")),
100
+ latencyMs: v.number(),
101
+ costCents: v.number(), // Cost in USD cents
102
+ errorMessage: v.optional(v.string()),
103
+ subagentId: v.optional(v.string()),
104
+ },
105
+ handler: async (ctx, args) => {
106
+ const now = Date.now();
107
+ const monthStart = getMonthStart();
108
+
109
+ // 1. Create log entry
110
+ const logId = await ctx.db.insert("apiLogs", {
111
+ workspaceId: args.workspaceId,
112
+ sessionToken: args.sessionToken,
113
+ subagentId: args.subagentId,
114
+ provider: args.provider,
115
+ action: args.action,
116
+ status: args.status,
117
+ latencyMs: args.latencyMs,
118
+ errorMessage: args.errorMessage,
119
+ createdAt: now,
120
+ });
121
+
122
+ // 2. Track spend if successful call with cost
123
+ if (args.status === "success" && args.costCents > 0) {
124
+ const workspace = await ctx.db.get(args.workspaceId);
125
+ if (!workspace) {
126
+ return { logId, spendTracked: false };
127
+ }
128
+
129
+ // Reset monthly spend if new month
130
+ let currentSpend = workspace.monthlySpendCents || 0;
131
+ if (!workspace.lastSpendResetAt || workspace.lastSpendResetAt < monthStart) {
132
+ currentSpend = 0;
133
+ }
134
+
135
+ // Add new spend
136
+ const newSpend = currentSpend + args.costCents;
137
+ const budgetCap = workspace.budgetCap;
138
+
139
+ // Update workspace
140
+ await ctx.db.patch(args.workspaceId, {
141
+ monthlySpendCents: newSpend,
142
+ lastSpendResetAt: monthStart,
143
+ updatedAt: now,
144
+ });
145
+
146
+ // Check if we need to send alert (80% threshold)
147
+ let shouldSendAlert = false;
148
+ let budgetExceeded = false;
149
+
150
+ if (budgetCap && budgetCap > 0) {
151
+ const threshold = budgetCap * 0.8;
152
+ const alertAlreadySentThisMonth = workspace.budgetAlertSentAt &&
153
+ workspace.budgetAlertSentAt >= monthStart;
154
+
155
+ // Check if at 80% and alert not yet sent
156
+ if (newSpend >= threshold && !alertAlreadySentThisMonth) {
157
+ shouldSendAlert = true;
158
+ await ctx.db.patch(args.workspaceId, {
159
+ budgetAlertSentAt: now,
160
+ });
161
+ }
162
+
163
+ // Check if budget exceeded
164
+ if (newSpend >= budgetCap) {
165
+ budgetExceeded = true;
166
+ }
167
+ }
168
+
169
+ return {
170
+ logId,
171
+ spendTracked: true,
172
+ currentSpendCents: newSpend,
173
+ budgetCapCents: budgetCap || null,
174
+ budgetPercentage: budgetCap ? Math.round((newSpend / budgetCap) * 100) : null,
175
+ shouldSendAlert,
176
+ budgetExceeded,
177
+ email: workspace.email,
178
+ };
179
+ }
180
+
181
+ return { logId, spendTracked: false };
182
+ },
183
+ });
184
+
78
185
  // ============================================
79
186
  // QUERIES
80
187
  // ============================================
package/convex/schema.ts CHANGED
@@ -75,6 +75,12 @@ export default defineSchema({
75
75
  // Referral fields
76
76
  referralCode: v.optional(v.string()), // CLAW-XXXXXX format
77
77
  referredBy: v.optional(v.id("workspaces")), // who referred this user
78
+ // Budget & Spend Alerts (PRD 2.6)
79
+ budgetCap: v.optional(v.number()), // Monthly budget cap in USD cents (null = unlimited)
80
+ budgetAlertSentAt: v.optional(v.number()), // When 80% alert was last sent (resets monthly)
81
+ pauseOnBudgetExceeded: v.optional(v.boolean()), // If true, block execution when budget exceeded
82
+ monthlySpendCents: v.optional(v.number()), // Current month's spend in cents
83
+ lastSpendResetAt: v.optional(v.number()), // When monthly spend was last reset
78
84
  createdAt: v.number(),
79
85
  updatedAt: v.number(),
80
86
  })
@@ -591,6 +597,107 @@ export default defineSchema({
591
597
  // FEEDBACK SYSTEM
592
598
  // ============================================
593
599
 
600
+ // ============================================
601
+ // CHAIN ORCHESTRATION TABLES
602
+ // ============================================
603
+
604
+ // Chain executions (main orchestration record)
605
+ chains: defineTable({
606
+ workspaceId: v.id("workspaces"),
607
+ // Chain definition
608
+ steps: v.array(v.any()), // Array of step definitions (raw, unresolved)
609
+ // Execution state
610
+ status: v.union(
611
+ v.literal("pending"),
612
+ v.literal("running"),
613
+ v.literal("completed"),
614
+ v.literal("failed"),
615
+ v.literal("paused")
616
+ ),
617
+ currentStep: v.number(), // Index of current step (0-based)
618
+ // Results storage
619
+ results: v.any(), // Record<stepId, result>
620
+ // Error tracking
621
+ error: v.optional(v.object({
622
+ stepId: v.string(),
623
+ code: v.string(),
624
+ message: v.string(),
625
+ retryAfter: v.optional(v.number()),
626
+ })),
627
+ // Execution options
628
+ continueOnError: v.optional(v.boolean()),
629
+ timeout: v.optional(v.number()), // ms
630
+ // Resume capability
631
+ resumeToken: v.optional(v.string()),
632
+ canResume: v.optional(v.boolean()),
633
+ // Cost tracking
634
+ totalCostCents: v.optional(v.number()),
635
+ totalLatencyMs: v.optional(v.number()),
636
+ // Timestamps
637
+ createdAt: v.number(),
638
+ startedAt: v.optional(v.number()),
639
+ completedAt: v.optional(v.number()),
640
+ })
641
+ .index("by_workspaceId", ["workspaceId"])
642
+ .index("by_status", ["status"])
643
+ .index("by_workspaceId_status", ["workspaceId", "status"])
644
+ .index("by_resumeToken", ["resumeToken"]),
645
+
646
+ // Chain templates (reusable chain definitions)
647
+ chainTemplates: defineTable({
648
+ workspaceId: v.id("workspaces"),
649
+ name: v.string(),
650
+ description: v.optional(v.string()),
651
+ // Input schema for the template
652
+ inputs: v.optional(v.any()), // JSON Schema for inputs
653
+ // Chain definition
654
+ chain: v.array(v.any()), // Array of step definitions
655
+ // Usage tracking
656
+ useCount: v.optional(v.number()),
657
+ lastUsedAt: v.optional(v.number()),
658
+ // Timestamps
659
+ createdAt: v.number(),
660
+ updatedAt: v.number(),
661
+ })
662
+ .index("by_workspaceId", ["workspaceId"])
663
+ .index("by_name", ["workspaceId", "name"]),
664
+
665
+ // Chain step executions (detailed trace per step)
666
+ chainExecutions: defineTable({
667
+ chainId: v.id("chains"),
668
+ stepId: v.string(), // The id from step definition
669
+ stepIndex: v.number(), // Position in chain
670
+ // Execution state
671
+ status: v.union(
672
+ v.literal("pending"),
673
+ v.literal("running"),
674
+ v.literal("completed"),
675
+ v.literal("failed"),
676
+ v.literal("skipped")
677
+ ),
678
+ // I/O
679
+ input: v.optional(v.any()), // Resolved params sent to provider
680
+ output: v.optional(v.any()), // Result from provider
681
+ // Metrics
682
+ latencyMs: v.optional(v.number()),
683
+ costCents: v.optional(v.number()),
684
+ // Error info
685
+ error: v.optional(v.object({
686
+ code: v.string(),
687
+ message: v.string(),
688
+ retryCount: v.optional(v.number()),
689
+ })),
690
+ // Parallel execution tracking
691
+ parallelGroup: v.optional(v.string()), // Group ID if part of parallel batch
692
+ // Timestamps
693
+ createdAt: v.number(),
694
+ startedAt: v.optional(v.number()),
695
+ completedAt: v.optional(v.number()),
696
+ })
697
+ .index("by_chainId", ["chainId"])
698
+ .index("by_chainId_stepId", ["chainId", "stepId"])
699
+ .index("by_chainId_stepIndex", ["chainId", "stepIndex"]),
700
+
594
701
  // User feedback with voting
595
702
  feedback: defineTable({
596
703
  workspaceId: v.id("workspaces"),
@@ -0,0 +1,442 @@
1
+ import { v } from "convex/values";
2
+ import { mutation, query, action, internalMutation } from "./_generated/server";
3
+ import { Id } from "./_generated/dataModel";
4
+ import { internal } from "./_generated/api";
5
+
6
+ // ============================================
7
+ // CONSTANTS
8
+ // ============================================
9
+
10
+ const ALERT_THRESHOLD = 0.8; // 80% of budget
11
+ const APP_URL = "https://apiclaw.nordsym.com";
12
+ const EMAIL_FROM = "APIClaw <noreply@apiclaw.nordsym.com>";
13
+
14
+ // ============================================
15
+ // HELPER: Get current month start
16
+ // ============================================
17
+
18
+ function getMonthStart(): number {
19
+ const now = new Date();
20
+ return new Date(now.getUTCFullYear(), now.getUTCMonth(), 1, 0, 0, 0, 0).getTime();
21
+ }
22
+
23
+ // ============================================
24
+ // MUTATIONS
25
+ // ============================================
26
+
27
+ /**
28
+ * Update workspace budget settings
29
+ */
30
+ export const updateBudgetSettings = mutation({
31
+ args: {
32
+ workspaceId: v.id("workspaces"),
33
+ budgetCap: v.optional(v.union(v.number(), v.null())), // in USD cents, null = unlimited
34
+ pauseOnBudgetExceeded: v.optional(v.boolean()),
35
+ },
36
+ handler: async (ctx, args) => {
37
+ const workspace = await ctx.db.get(args.workspaceId);
38
+ if (!workspace) {
39
+ throw new Error("Workspace not found");
40
+ }
41
+
42
+ const updates: Record<string, unknown> = {
43
+ updatedAt: Date.now(),
44
+ };
45
+
46
+ if (args.budgetCap !== undefined) {
47
+ updates.budgetCap = args.budgetCap;
48
+ // Reset alert when budget changes
49
+ updates.budgetAlertSentAt = undefined;
50
+ }
51
+
52
+ if (args.pauseOnBudgetExceeded !== undefined) {
53
+ updates.pauseOnBudgetExceeded = args.pauseOnBudgetExceeded;
54
+ }
55
+
56
+ await ctx.db.patch(args.workspaceId, updates);
57
+
58
+ return { success: true };
59
+ },
60
+ });
61
+
62
+ /**
63
+ * Record spend and check budget alerts
64
+ * Called after each successful API execution
65
+ * Returns budget status for response
66
+ */
67
+ export const recordSpend = mutation({
68
+ args: {
69
+ workspaceId: v.id("workspaces"),
70
+ amountCents: v.number(),
71
+ },
72
+ handler: async (ctx, args) => {
73
+ const workspace = await ctx.db.get(args.workspaceId);
74
+ if (!workspace) {
75
+ throw new Error("Workspace not found");
76
+ }
77
+
78
+ const monthStart = getMonthStart();
79
+
80
+ // Reset monthly spend if new month
81
+ let currentSpend = workspace.monthlySpendCents || 0;
82
+ if (!workspace.lastSpendResetAt || workspace.lastSpendResetAt < monthStart) {
83
+ currentSpend = 0;
84
+ }
85
+
86
+ // Add new spend
87
+ const newSpend = currentSpend + args.amountCents;
88
+
89
+ // Update workspace
90
+ await ctx.db.patch(args.workspaceId, {
91
+ monthlySpendCents: newSpend,
92
+ lastSpendResetAt: monthStart,
93
+ updatedAt: Date.now(),
94
+ });
95
+
96
+ // Check if we need to send alert
97
+ const budgetCap = workspace.budgetCap;
98
+ let shouldSendAlert = false;
99
+ let budgetExceeded = false;
100
+
101
+ if (budgetCap && budgetCap > 0) {
102
+ const threshold = budgetCap * ALERT_THRESHOLD;
103
+ const alertAlreadySentThisMonth = workspace.budgetAlertSentAt &&
104
+ workspace.budgetAlertSentAt >= monthStart;
105
+
106
+ // Check if at 80% and alert not yet sent
107
+ if (newSpend >= threshold && !alertAlreadySentThisMonth) {
108
+ shouldSendAlert = true;
109
+ await ctx.db.patch(args.workspaceId, {
110
+ budgetAlertSentAt: Date.now(),
111
+ });
112
+ }
113
+
114
+ // Check if budget exceeded
115
+ if (newSpend >= budgetCap) {
116
+ budgetExceeded = true;
117
+ }
118
+ }
119
+
120
+ return {
121
+ success: true,
122
+ currentSpendCents: newSpend,
123
+ budgetCapCents: budgetCap || null,
124
+ budgetPercentage: budgetCap ? (newSpend / budgetCap) * 100 : null,
125
+ shouldSendAlert,
126
+ budgetExceeded,
127
+ email: workspace.email,
128
+ };
129
+ },
130
+ });
131
+
132
+ /**
133
+ * Check budget before execution
134
+ * Returns { allowed: boolean, reason?: string }
135
+ */
136
+ export const checkBudget = query({
137
+ args: {
138
+ workspaceId: v.id("workspaces"),
139
+ estimatedCostCents: v.optional(v.number()),
140
+ },
141
+ handler: async (ctx, args) => {
142
+ const workspace = await ctx.db.get(args.workspaceId);
143
+ if (!workspace) {
144
+ return { allowed: false, reason: "Workspace not found" };
145
+ }
146
+
147
+ // No budget cap set = unlimited
148
+ if (!workspace.budgetCap || workspace.budgetCap <= 0) {
149
+ return { allowed: true };
150
+ }
151
+
152
+ // Check if pause on exceeded is enabled
153
+ if (!workspace.pauseOnBudgetExceeded) {
154
+ return { allowed: true };
155
+ }
156
+
157
+ const monthStart = getMonthStart();
158
+ let currentSpend = workspace.monthlySpendCents || 0;
159
+
160
+ // Reset if new month
161
+ if (!workspace.lastSpendResetAt || workspace.lastSpendResetAt < monthStart) {
162
+ currentSpend = 0;
163
+ }
164
+
165
+ const estimatedCost = args.estimatedCostCents || 0;
166
+ const projectedSpend = currentSpend + estimatedCost;
167
+
168
+ if (projectedSpend > workspace.budgetCap) {
169
+ const budgetCapUsd = (workspace.budgetCap / 100).toFixed(2);
170
+ const currentSpendUsd = (currentSpend / 100).toFixed(2);
171
+ return {
172
+ allowed: false,
173
+ reason: `Budget exceeded. Monthly cap: $${budgetCapUsd}, current spend: $${currentSpendUsd}. Adjust budget in workspace settings.`,
174
+ currentSpendCents: currentSpend,
175
+ budgetCapCents: workspace.budgetCap,
176
+ };
177
+ }
178
+
179
+ return {
180
+ allowed: true,
181
+ currentSpendCents: currentSpend,
182
+ budgetCapCents: workspace.budgetCap,
183
+ remainingCents: workspace.budgetCap - currentSpend,
184
+ };
185
+ },
186
+ });
187
+
188
+ /**
189
+ * Get budget status for workspace dashboard
190
+ */
191
+ export const getBudgetStatus = query({
192
+ args: {
193
+ workspaceId: v.id("workspaces"),
194
+ },
195
+ handler: async (ctx, args) => {
196
+ const workspace = await ctx.db.get(args.workspaceId);
197
+ if (!workspace) {
198
+ return null;
199
+ }
200
+
201
+ const monthStart = getMonthStart();
202
+ let currentSpend = workspace.monthlySpendCents || 0;
203
+
204
+ // Reset if new month
205
+ if (!workspace.lastSpendResetAt || workspace.lastSpendResetAt < monthStart) {
206
+ currentSpend = 0;
207
+ }
208
+
209
+ const budgetCap = workspace.budgetCap || null;
210
+ const budgetPercentage = budgetCap ? (currentSpend / budgetCap) * 100 : null;
211
+
212
+ return {
213
+ budgetCapCents: budgetCap,
214
+ budgetCapUsd: budgetCap ? budgetCap / 100 : null,
215
+ currentSpendCents: currentSpend,
216
+ currentSpendUsd: currentSpend / 100,
217
+ remainingCents: budgetCap ? Math.max(0, budgetCap - currentSpend) : null,
218
+ remainingUsd: budgetCap ? Math.max(0, (budgetCap - currentSpend) / 100) : null,
219
+ budgetPercentage: budgetPercentage ? Math.min(100, budgetPercentage) : null,
220
+ pauseOnBudgetExceeded: workspace.pauseOnBudgetExceeded || false,
221
+ isOverBudget: budgetCap ? currentSpend >= budgetCap : false,
222
+ isNearBudget: budgetCap ? currentSpend >= budgetCap * ALERT_THRESHOLD : false,
223
+ alertSentAt: workspace.budgetAlertSentAt || null,
224
+ };
225
+ },
226
+ });
227
+
228
+ /**
229
+ * Get budget status by session token (for dashboard)
230
+ */
231
+ export const getBudgetStatusByToken = query({
232
+ args: {
233
+ token: v.string(),
234
+ },
235
+ handler: async (ctx, args) => {
236
+ const session = await ctx.db
237
+ .query("agentSessions")
238
+ .withIndex("by_sessionToken", (q) => q.eq("sessionToken", args.token))
239
+ .first();
240
+
241
+ if (!session) {
242
+ return null;
243
+ }
244
+
245
+ const workspace = await ctx.db.get(session.workspaceId);
246
+ if (!workspace) {
247
+ return null;
248
+ }
249
+
250
+ const monthStart = getMonthStart();
251
+ let currentSpend = workspace.monthlySpendCents || 0;
252
+
253
+ if (!workspace.lastSpendResetAt || workspace.lastSpendResetAt < monthStart) {
254
+ currentSpend = 0;
255
+ }
256
+
257
+ const budgetCap = workspace.budgetCap || null;
258
+
259
+ return {
260
+ budgetCapCents: budgetCap,
261
+ budgetCapUsd: budgetCap ? budgetCap / 100 : null,
262
+ currentSpendCents: currentSpend,
263
+ currentSpendUsd: currentSpend / 100,
264
+ remainingCents: budgetCap ? Math.max(0, budgetCap - currentSpend) : null,
265
+ remainingUsd: budgetCap ? Math.max(0, (budgetCap - currentSpend) / 100) : null,
266
+ budgetPercentage: budgetCap ? Math.min(100, (currentSpend / budgetCap) * 100) : null,
267
+ pauseOnBudgetExceeded: workspace.pauseOnBudgetExceeded || false,
268
+ isOverBudget: budgetCap ? currentSpend >= budgetCap : false,
269
+ isNearBudget: budgetCap ? currentSpend >= budgetCap * ALERT_THRESHOLD : false,
270
+ };
271
+ },
272
+ });
273
+
274
+ // ============================================
275
+ // EMAIL ACTION
276
+ // ============================================
277
+
278
+ /**
279
+ * Send budget alert email (80% warning)
280
+ */
281
+ export const sendBudgetAlertEmail = action({
282
+ args: {
283
+ email: v.string(),
284
+ currentSpendCents: v.number(),
285
+ budgetCapCents: v.number(),
286
+ },
287
+ handler: async (ctx, args) => {
288
+ const RESEND_API_KEY = process.env.RESEND_API_KEY;
289
+ if (!RESEND_API_KEY) {
290
+ console.error("RESEND_API_KEY not configured");
291
+ return { success: false, error: "Email not configured" };
292
+ }
293
+
294
+ const currentSpendUsd = (args.currentSpendCents / 100).toFixed(2);
295
+ const budgetCapUsd = (args.budgetCapCents / 100).toFixed(2);
296
+ const percentageUsed = Math.round((args.currentSpendCents / args.budgetCapCents) * 100);
297
+ const settingsUrl = `${APP_URL}/dashboard/settings`;
298
+
299
+ // Build email HTML
300
+ let html = "<!DOCTYPE html><html><head><meta charset='utf-8'></head>";
301
+ html += "<body style='margin:0;padding:40px;background:#f5f5f5;font-family:Arial,sans-serif;'>";
302
+ html += "<table width='100%' cellpadding='0' cellspacing='0'><tr><td align='center'>";
303
+ html += "<table width='500' cellpadding='0' cellspacing='0' style='background:#fff;border-radius:12px;'>";
304
+ html += "<tr><td style='padding:32px;text-align:center;'>";
305
+ html += "<div style='font-size:48px;'>🦞</div>";
306
+ html += "<h1 style='margin:16px 0;color:#0a0a0a;'>APIClaw</h1>";
307
+ html += "<h2 style='margin:0 0 16px;font-size:20px;color:#f59e0b;'>⚠️ Budget Alert</h2>";
308
+ html += "<p style='margin:0 0 16px;color:#525252;font-size:16px;'>You've used <strong>" + percentageUsed + "%</strong> of your monthly budget.</p>";
309
+ html += "<div style='background:#fef3c7;border:1px solid #f59e0b;border-radius:8px;padding:16px;margin-bottom:24px;'>";
310
+ html += "<p style='margin:0;color:#92400e;font-size:14px;'><strong>Current spend:</strong> $" + currentSpendUsd + " / $" + budgetCapUsd + "</p>";
311
+ html += "</div>";
312
+ html += "<p style='margin:0 0 24px;color:#525252;font-size:14px;'>If your budget is exceeded, API calls will be paused until the next billing cycle (if pause is enabled).</p>";
313
+ html += "<a href='" + settingsUrl + "' style='display:inline-block;background:#ef4444;color:white;padding:14px 32px;border-radius:8px;text-decoration:none;font-weight:600;'>Adjust Budget</a>";
314
+ html += "</td></tr></table>";
315
+ html += "</td></tr></table></body></html>";
316
+
317
+ const textContent = `APIClaw Budget Alert\n\nYou've used ${percentageUsed}% of your monthly budget.\nCurrent spend: $${currentSpendUsd} / $${budgetCapUsd}\n\nAdjust your budget: ${settingsUrl}`;
318
+
319
+ const response = await fetch("https://api.resend.com/emails", {
320
+ method: "POST",
321
+ headers: {
322
+ "Authorization": "Bearer " + RESEND_API_KEY,
323
+ "Content-Type": "application/json",
324
+ },
325
+ body: JSON.stringify({
326
+ from: EMAIL_FROM,
327
+ to: args.email,
328
+ subject: "⚠️ APIClaw: 80% of Monthly Budget Used",
329
+ html: html,
330
+ text: textContent,
331
+ }),
332
+ });
333
+
334
+ if (!response.ok) {
335
+ const errorText = await response.text();
336
+ console.error("Failed to send budget alert email:", errorText);
337
+ return { success: false, error: errorText };
338
+ }
339
+
340
+ return { success: true };
341
+ },
342
+ });
343
+
344
+ /**
345
+ * Send budget exceeded email
346
+ */
347
+ export const sendBudgetExceededEmail = action({
348
+ args: {
349
+ email: v.string(),
350
+ currentSpendCents: v.number(),
351
+ budgetCapCents: v.number(),
352
+ isPaused: v.boolean(),
353
+ },
354
+ handler: async (ctx, args) => {
355
+ const RESEND_API_KEY = process.env.RESEND_API_KEY;
356
+ if (!RESEND_API_KEY) {
357
+ console.error("RESEND_API_KEY not configured");
358
+ return { success: false, error: "Email not configured" };
359
+ }
360
+
361
+ const currentSpendUsd = (args.currentSpendCents / 100).toFixed(2);
362
+ const budgetCapUsd = (args.budgetCapCents / 100).toFixed(2);
363
+ const settingsUrl = `${APP_URL}/dashboard/settings`;
364
+
365
+ const pauseMessage = args.isPaused
366
+ ? "API execution has been paused. Increase your budget or disable pause-on-exceed to continue."
367
+ : "Your agents can still make calls, but you're over budget.";
368
+
369
+ let html = "<!DOCTYPE html><html><head><meta charset='utf-8'></head>";
370
+ html += "<body style='margin:0;padding:40px;background:#f5f5f5;font-family:Arial,sans-serif;'>";
371
+ html += "<table width='100%' cellpadding='0' cellspacing='0'><tr><td align='center'>";
372
+ html += "<table width='500' cellpadding='0' cellspacing='0' style='background:#fff;border-radius:12px;'>";
373
+ html += "<tr><td style='padding:32px;text-align:center;'>";
374
+ html += "<div style='font-size:48px;'>🦞</div>";
375
+ html += "<h1 style='margin:16px 0;color:#0a0a0a;'>APIClaw</h1>";
376
+ html += "<h2 style='margin:0 0 16px;font-size:20px;color:#ef4444;'>🚨 Budget Exceeded</h2>";
377
+ html += "<p style='margin:0 0 16px;color:#525252;font-size:16px;'>Your monthly budget has been exceeded.</p>";
378
+ html += "<div style='background:#fee2e2;border:1px solid #ef4444;border-radius:8px;padding:16px;margin-bottom:24px;'>";
379
+ html += "<p style='margin:0;color:#991b1b;font-size:14px;'><strong>Current spend:</strong> $" + currentSpendUsd + " / $" + budgetCapUsd + "</p>";
380
+ html += "</div>";
381
+ html += "<p style='margin:0 0 24px;color:#525252;font-size:14px;'>" + pauseMessage + "</p>";
382
+ html += "<a href='" + settingsUrl + "' style='display:inline-block;background:#ef4444;color:white;padding:14px 32px;border-radius:8px;text-decoration:none;font-weight:600;'>Increase Budget</a>";
383
+ html += "</td></tr></table>";
384
+ html += "</td></tr></table></body></html>";
385
+
386
+ const response = await fetch("https://api.resend.com/emails", {
387
+ method: "POST",
388
+ headers: {
389
+ "Authorization": "Bearer " + RESEND_API_KEY,
390
+ "Content-Type": "application/json",
391
+ },
392
+ body: JSON.stringify({
393
+ from: EMAIL_FROM,
394
+ to: args.email,
395
+ subject: "🚨 APIClaw: Monthly Budget Exceeded",
396
+ html: html,
397
+ }),
398
+ });
399
+
400
+ if (!response.ok) {
401
+ const errorText = await response.text();
402
+ console.error("Failed to send budget exceeded email:", errorText);
403
+ return { success: false, error: errorText };
404
+ }
405
+
406
+ return { success: true };
407
+ },
408
+ });
409
+
410
+ // ============================================
411
+ // CRON: Monthly reset
412
+ // ============================================
413
+
414
+ /**
415
+ * Reset monthly spend for all workspaces (called by cron on 1st of month)
416
+ */
417
+ export const resetMonthlySpend = internalMutation({
418
+ args: {},
419
+ handler: async (ctx) => {
420
+ const monthStart = getMonthStart();
421
+
422
+ // Get all workspaces with spend tracking
423
+ const workspaces = await ctx.db
424
+ .query("workspaces")
425
+ .collect();
426
+
427
+ let resetCount = 0;
428
+ for (const workspace of workspaces) {
429
+ if (workspace.monthlySpendCents && workspace.monthlySpendCents > 0) {
430
+ await ctx.db.patch(workspace._id, {
431
+ monthlySpendCents: 0,
432
+ lastSpendResetAt: monthStart,
433
+ budgetAlertSentAt: undefined, // Reset alert flag for new month
434
+ updatedAt: Date.now(),
435
+ });
436
+ resetCount++;
437
+ }
438
+ }
439
+
440
+ return { resetCount };
441
+ },
442
+ });