@uniswap/ai-toolkit-nx-claude 0.5.23 → 0.5.24-next.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.
package/dist/index.cjs CHANGED
@@ -127,9 +127,7 @@ async function validateAddonRequirements(addonId) {
127
127
  if (addon.requirements?.node) {
128
128
  const nodeVersion = process.version;
129
129
  if (!nodeVersion.match(/v1[89]\.\d+\.\d+/) && !nodeVersion.match(/v2\d+\.\d+\.\d+/)) {
130
- errors.push(
131
- `Node.js ${addon.requirements.node} required, found ${nodeVersion}`
132
- );
130
+ errors.push(`Node.js ${addon.requirements.node} required, found ${nodeVersion}`);
133
131
  }
134
132
  }
135
133
  if (addon.requirements?.commands) {
@@ -211,7 +209,7 @@ var init_addon_registry = __esm({
211
209
  mcp: {
212
210
  serverName: "slack",
213
211
  command: "npx",
214
- args: ["-y", "@zencoderai/slack-mcp-server", "--transport", "stdio"],
212
+ args: ["-y", "-p", "@zencoderai/slack-mcp-server", "slack-mcp"],
215
213
  env: {
216
214
  SLACK_BOT_TOKEN: "PROMPT_TO_INSERT_SLACK_BOT_TOKEN",
217
215
  SLACK_TEAM_ID: "TKZBCKUJJ"
@@ -233,13 +231,13 @@ var init_addon_registry = __esm({
233
231
  {
234
232
  id: "linear-mcp",
235
233
  name: "Linear MCP",
236
- description: "MCP server for Linear issue tracking (SSE)",
234
+ description: "MCP server for Linear issue tracking (HTTP)",
237
235
  type: "mcp-server",
238
236
  packageName: "linear",
239
237
  mcp: {
240
238
  serverName: "linear",
241
- command: "npx",
242
- args: ["-y", "mcp-remote", "https://mcp.linear.app/sse"]
239
+ transport: "http",
240
+ url: "https://mcp.linear.app/mcp"
243
241
  }
244
242
  },
245
243
  {
@@ -429,7 +427,25 @@ var require_schema = __commonJS({
429
427
  type: "string",
430
428
  description: "Installation mode from parent generator (default or custom)",
431
429
  enum: ["default", "custom"],
432
- hidden: true
430
+ hidden: true,
431
+ "x-skip-prompt": true
432
+ },
433
+ installationType: {
434
+ type: "string",
435
+ description: "Installation location for MCP servers",
436
+ enum: ["global", "local"],
437
+ "prompt-message": "\u{1F4CD} Where should MCP servers be installed?",
438
+ "prompt-type": "list",
439
+ "prompt-items": [
440
+ {
441
+ value: "global",
442
+ label: "Global (~/.claude) - Available in all projects"
443
+ },
444
+ {
445
+ value: "local",
446
+ label: "Local (./.claude) - Project-specific configuration"
447
+ }
448
+ ]
433
449
  }
434
450
  },
435
451
  required: []
@@ -1669,7 +1685,7 @@ init_addon_registry();
1669
1685
  var import_child_process4 = require("child_process");
1670
1686
  init_addon_registry();
1671
1687
  async function installMcpServer(options) {
1672
- const { addon, additionalArgs = [], dryRun = false } = options;
1688
+ const { addon, additionalArgs = [], dryRun = false, installationType = "global" } = options;
1673
1689
  try {
1674
1690
  (0, import_child_process4.execSync)("claude --version", { stdio: "ignore" });
1675
1691
  } catch {
@@ -1680,7 +1696,8 @@ async function installMcpServer(options) {
1680
1696
  };
1681
1697
  }
1682
1698
  const serverName = addon.mcp?.serverName;
1683
- let command = `claude mcp add ${serverName} --scope user`;
1699
+ const scope = installationType === "local" ? "project" : "user";
1700
+ let command = `claude mcp add ${serverName} --scope ${scope}`;
1684
1701
  if (addon.mcp?.env && Object.keys(addon.mcp.env).length > 0) {
1685
1702
  for (const [key, value] of Object.entries(addon.mcp.env)) {
1686
1703
  command += ` --env ${key}=${value}`;
@@ -1723,10 +1740,8 @@ async function installMcpServer(options) {
1723
1740
  while (attempts < maxAttempts) {
1724
1741
  attempts++;
1725
1742
  try {
1726
- console.log(
1727
- `
1728
- \u{1F527} Installing MCP server (attempt ${attempts}/${maxAttempts})...`
1729
- );
1743
+ console.log(`
1744
+ \u{1F527} Installing MCP server (attempt ${attempts}/${maxAttempts})...`);
1730
1745
  const output = (0, import_child_process4.execSync)(command, {
1731
1746
  encoding: "utf-8",
1732
1747
  stdio: "pipe"
@@ -2091,6 +2106,7 @@ async function generator(tree, schema) {
2091
2106
  port: schema.port || 0,
2092
2107
  dry: schema.dry || false,
2093
2108
  installMode: "default",
2109
+ installationType: schema.installationType || "global",
2094
2110
  dryRun: isDryRun
2095
2111
  };
2096
2112
  } else {
@@ -2128,10 +2144,8 @@ async function installSelectedAddons(tree, options) {
2128
2144
  const results = [];
2129
2145
  for (let i = 0; i < selectedAddons.length; i++) {
2130
2146
  const addon = selectedAddons[i];
2131
- console.log(
2132
- `
2133
- [${i + 1}/${selectedAddons.length}] Installing: ${addon.name}`
2134
- );
2147
+ console.log(`
2148
+ [${i + 1}/${selectedAddons.length}] Installing: ${addon.name}`);
2135
2149
  console.log(` ${addon.description}`);
2136
2150
  try {
2137
2151
  if (!options.force && !options.dryRun) {
@@ -2172,23 +2186,17 @@ async function installSelectedAddons(tree, options) {
2172
2186
  });
2173
2187
  options.projectPath = projectPath;
2174
2188
  if (options.dryRun) {
2175
- console.log(
2176
- `
2177
- \u{1F4C1} [DRY-RUN] Would set up project configuration at: ${projectPath}`
2178
- );
2189
+ console.log(`
2190
+ \u{1F4C1} [DRY-RUN] Would set up project configuration at: ${projectPath}`);
2179
2191
  }
2180
2192
  await installProjectSetup(addon, options);
2181
2193
  } else if (options.dryRun) {
2182
- console.log(
2183
- "\n\u{1F4C1} [DRY-RUN] Skipping project configuration (user chose not to set up)"
2184
- );
2194
+ console.log("\n\u{1F4C1} [DRY-RUN] Skipping project configuration (user chose not to set up)");
2185
2195
  }
2186
2196
  }
2187
2197
  results.push({ addon, success: true });
2188
2198
  } catch (error) {
2189
- console.error(
2190
- ` \u274C Failed: ${error instanceof Error ? error.message : String(error)}`
2191
- );
2199
+ console.error(` \u274C Failed: ${error instanceof Error ? error.message : String(error)}`);
2192
2200
  results.push({
2193
2201
  addon,
2194
2202
  success: false,
@@ -2205,9 +2213,7 @@ async function installSelectedAddons(tree, options) {
2205
2213
  if (failed.length > 0) {
2206
2214
  console.log(`
2207
2215
  \u274C Failed to install: ${failed.length}`);
2208
- failed.forEach(
2209
- (r) => console.log(` \u2022 ${r.addon.name} - ${r.error || "Unknown error"}`)
2210
- );
2216
+ failed.forEach((r) => console.log(` \u2022 ${r.addon.name} - ${r.error || "Unknown error"}`));
2211
2217
  }
2212
2218
  if (options.dryRun) {
2213
2219
  console.log("\n\u2728 Dry-run complete! No changes were made.\n");
@@ -2253,9 +2259,7 @@ async function installAllAddons(tree, options) {
2253
2259
  await installMcpAddon(addon, options);
2254
2260
  results.push({ addon, success: true });
2255
2261
  } catch (error) {
2256
- console.error(
2257
- ` \u274C Failed: ${error instanceof Error ? error.message : String(error)}`
2258
- );
2262
+ console.error(` \u274C Failed: ${error instanceof Error ? error.message : String(error)}`);
2259
2263
  results.push({
2260
2264
  addon,
2261
2265
  success: false,
@@ -2272,9 +2276,7 @@ async function installAllAddons(tree, options) {
2272
2276
  if (failed.length > 0) {
2273
2277
  console.log(`
2274
2278
  \u274C Failed to install: ${failed.length}`);
2275
- failed.forEach(
2276
- (r) => console.log(` \u2022 ${r.addon.name} - ${r.error || "Unknown error"}`)
2277
- );
2279
+ failed.forEach((r) => console.log(` \u2022 ${r.addon.name} - ${r.error || "Unknown error"}`));
2278
2280
  }
2279
2281
  if (options.dryRun) {
2280
2282
  console.log("\n\u2728 Dry-run complete! No changes were made.\n");
@@ -2313,7 +2315,8 @@ async function installMcpAddon(addon, options) {
2313
2315
  const installResult = await installMcpServer({
2314
2316
  addon,
2315
2317
  additionalArgs,
2316
- dryRun: options.dryRun
2318
+ dryRun: options.dryRun,
2319
+ installationType: options.installationType || "global"
2317
2320
  });
2318
2321
  if (!installResult.success) {
2319
2322
  throw new Error(installResult.error || installResult.message);
@@ -2355,9 +2358,7 @@ function showGeneralMcpInstructions(installedAddons) {
2355
2358
  const hasSlack = installedAddons.some((addon) => addon.id === "slack-mcp");
2356
2359
  const hasGithub = installedAddons.some((addon) => addon.id === "github-mcp");
2357
2360
  const hasPulumi = installedAddons.some((addon) => addon.id === "pulumi-mcp");
2358
- const hasAws = installedAddons.some(
2359
- (addon) => addon.id === "aws-log-analyzer-mcp"
2360
- );
2361
+ const hasAws = installedAddons.some((addon) => addon.id === "aws-log-analyzer-mcp");
2361
2362
  if (hasSlack || hasGithub || hasAws || hasPulumi) {
2362
2363
  console.log("\u{1F4CB} Specific Authentication Instructions:\n");
2363
2364
  if (hasSlack) {
@@ -2373,18 +2374,12 @@ function showGeneralMcpInstructions(installedAddons) {
2373
2374
  console.log("\u{1F510} GitHub MCP:");
2374
2375
  console.log(" You can obtain your GitHub Personal Access Token using:");
2375
2376
  console.log(" $ gh auth token");
2376
- console.log(
2377
- " (Requires GitHub CLI to be installed and authenticated)\n"
2378
- );
2377
+ console.log(" (Requires GitHub CLI to be installed and authenticated)\n");
2379
2378
  }
2380
2379
  if (hasAws) {
2381
2380
  console.log("\u{1F510} AWS Log Analyzer MCP:");
2382
- console.log(
2383
- " Requires AWS credentials with CloudWatchLogsReadOnlyAccess"
2384
- );
2385
- console.log(
2386
- " \u{1F4D6} Documentation: https://github.com/awslabs/Log-Analyzer-with-MCP\n"
2387
- );
2381
+ console.log(" Requires AWS credentials with CloudWatchLogsReadOnlyAccess");
2382
+ console.log(" \u{1F4D6} Documentation: https://github.com/awslabs/Log-Analyzer-with-MCP\n");
2388
2383
  }
2389
2384
  if (hasPulumi) {
2390
2385
  console.log("\u{1F510} Pulumi MCP:");
@@ -2394,9 +2389,7 @@ function showGeneralMcpInstructions(installedAddons) {
2394
2389
  console.log(
2395
2390
  " \u{1F4D6} Documentation: https://www.pulumi.com/docs/iac/guides/ai-integration/mcp-server/"
2396
2391
  );
2397
- console.log(
2398
- " Create your PAT at: https://app.pulumi.com/account/tokens\n"
2399
- );
2392
+ console.log(" Create your PAT at: https://app.pulumi.com/account/tokens\n");
2400
2393
  }
2401
2394
  }
2402
2395
  }
@@ -1 +1 @@
1
- {"version":3,"file":"addon-registry.d.ts","sourceRoot":"","sources":["../../../../../../src/generators/addons/addon-registry.ts"],"names":[],"mappings":"AAKA;;;GAGG;AACH,MAAM,MAAM,uBAAuB,GAAG;IACpC,8CAA8C;IAC9C,UAAU,EAAE,MAAM,CAAC;IACnB,oCAAoC;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,gCAAgC;IAChC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,4BAA4B;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,iDAAiD;IACjD,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,iDAAiD;IACjD,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,4BAA4B,GAAG;IACzC,8CAA8C;IAC9C,UAAU,EAAE,MAAM,CAAC;IACnB,qBAAqB;IACrB,SAAS,EAAE,MAAM,GAAG,KAAK,CAAC;IAC1B,sCAAsC;IACtC,GAAG,EAAE,MAAM,CAAC;IACZ,4BAA4B;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,gBAAgB,GACxB,uBAAuB,GACvB,4BAA4B,CAAC;AAEjC;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,sCAAsC;IACtC,EAAE,EAAE,MAAM,CAAC;IACX,mBAAmB;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,kBAAkB;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB;IACpB,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,MAAM,GAAG,eAAe,CAAC;IAC5D,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,+CAA+C;IAC/C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iCAAiC;IACjC,GAAG,EAAE,gBAAgB,CAAC;IACtB,gCAAgC;IAChC,YAAY,CAAC,EAAE;QACb,+BAA+B;QAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,+BAA+B;QAC/B,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;IACF,kCAAkC;IAClC,YAAY,CAAC,EAAE;QACb,8BAA8B;QAC9B,aAAa,EAAE,MAAM,CAAC;QACtB,oCAAoC;QACpC,gBAAgB,EAAE,MAAM,CAAC;QACzB,0CAA0C;QAC1C,eAAe,EAAE,MAAM,CAAC;KACzB,CAAC;CACH;AAwLD;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAEjE;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAEtE;AAED;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,aAAa,EAAE,CAEpD;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,aAAa,GAAG,SAAS,CAElE;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAgDxE;AAED;;GAEG;AACH,wBAAsB,uBAAuB,CAC3C,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,SAAS,CAAC,CA4C1C;AAED;;GAEG;AACH,wBAAsB,yBAAyB,CAC7C,OAAO,EAAE,MAAM,GACd,OAAO,CAAC;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,MAAM,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC,CAsC/C"}
1
+ {"version":3,"file":"addon-registry.d.ts","sourceRoot":"","sources":["../../../../../../src/generators/addons/addon-registry.ts"],"names":[],"mappings":"AAKA;;;GAGG;AACH,MAAM,MAAM,uBAAuB,GAAG;IACpC,8CAA8C;IAC9C,UAAU,EAAE,MAAM,CAAC;IACnB,oCAAoC;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,gCAAgC;IAChC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,4BAA4B;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,iDAAiD;IACjD,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,iDAAiD;IACjD,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,4BAA4B,GAAG;IACzC,8CAA8C;IAC9C,UAAU,EAAE,MAAM,CAAC;IACnB,qBAAqB;IACrB,SAAS,EAAE,MAAM,GAAG,KAAK,CAAC;IAC1B,sCAAsC;IACtC,GAAG,EAAE,MAAM,CAAC;IACZ,4BAA4B;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,uBAAuB,GAAG,4BAA4B,CAAC;AAEtF;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,sCAAsC;IACtC,EAAE,EAAE,MAAM,CAAC;IACX,mBAAmB;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,kBAAkB;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,oBAAoB;IACpB,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,MAAM,GAAG,eAAe,CAAC;IAC5D,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,+CAA+C;IAC/C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iCAAiC;IACjC,GAAG,EAAE,gBAAgB,CAAC;IACtB,gCAAgC;IAChC,YAAY,CAAC,EAAE;QACb,+BAA+B;QAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,+BAA+B;QAC/B,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;IACF,kCAAkC;IAClC,YAAY,CAAC,EAAE;QACb,8BAA8B;QAC9B,aAAa,EAAE,MAAM,CAAC;QACtB,oCAAoC;QACpC,gBAAgB,EAAE,MAAM,CAAC;QACzB,0CAA0C;QAC1C,eAAe,EAAE,MAAM,CAAC;KACzB,CAAC;CACH;AAoLD;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAEjE;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAEtE;AAED;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,aAAa,EAAE,CAEpD;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,aAAa,GAAG,SAAS,CAElE;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CA4CxE;AAED;;GAEG;AACH,wBAAsB,uBAAuB,CAC3C,OAAO,EAAE,MAAM,GACd,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,SAAS,CAAC,CAwC1C;AAED;;GAEG;AACH,wBAAsB,yBAAyB,CAC7C,OAAO,EAAE,MAAM,GACd,OAAO,CAAC;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,MAAM,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC,CAiC/C"}
@@ -9,6 +9,8 @@ export interface MCPInstallOptions {
9
9
  additionalArgs?: string[];
10
10
  /** Whether to use dry-run mode */
11
11
  dryRun?: boolean;
12
+ /** Installation location: global (~/.claude) or local (./.claude) */
13
+ installationType?: 'global' | 'local';
12
14
  }
13
15
  /**
14
16
  * Install an MCP server using Claude CLI
@@ -1 +1 @@
1
- {"version":3,"file":"claude-mcp-installer.d.ts","sourceRoot":"","sources":["../../../../../../src/generators/addons/claude-mcp-installer.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,aAAa,EAGd,MAAM,kBAAkB,CAAC;AAG1B;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,2BAA2B;IAC3B,KAAK,EAAE,aAAa,CAAC;IACrB,sDAAsD;IACtD,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,kCAAkC;IAClC,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC;IAC1E,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC,CA6ID;AAED;;GAEG;AACH,wBAAsB,qBAAqB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC;IACvE,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,GAAG,CAAC;CACpB,CAAC,CAgCD;AAED;;GAEG;AACH,wBAAsB,eAAe,CACnC,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE;IACV,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;CAChB,GACA,OAAO,CAAC;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAAC,CAkDhD;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC;IACjE,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC,CAiCD"}
1
+ {"version":3,"file":"claude-mcp-installer.d.ts","sourceRoot":"","sources":["../../../../../../src/generators/addons/claude-mcp-installer.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,aAAa,EAGd,MAAM,kBAAkB,CAAC;AAG1B;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,2BAA2B;IAC3B,KAAK,EAAE,aAAa,CAAC;IACrB,sDAAsD;IACtD,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,kCAAkC;IAClC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,qEAAqE;IACrE,gBAAgB,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC;CACvC;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC;IAC1E,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC,CAyID;AAED;;GAEG;AACH,wBAAsB,qBAAqB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC;IACvE,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,GAAG,CAAC;CACpB,CAAC,CAgCD;AAED;;GAEG;AACH,wBAAsB,eAAe,CACnC,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE;IACV,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC;CAChB,GACA,OAAO,CAAC;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAAC,CA8ChD;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC;IACjE,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC,CAiCD"}
@@ -1 +1 @@
1
- {"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../../../../../../src/generators/addons/generator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAuBtD;;GAEG;AACH,wBAA8B,SAAS,CACrC,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,qBAAqB,GAC5B,OAAO,CAAC,IAAI,CAAC,CAqEf"}
1
+ {"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../../../../../../src/generators/addons/generator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAiBtD;;GAEG;AACH,wBAA8B,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,qBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC,CAqEhG"}
@@ -1 +1 @@
1
- {"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../../../../../../src/generators/init/generator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAOvC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AA+DpD,wBAAsB,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,mBAAmB,iBA0jB3E;AAqJD,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"generator.d.ts","sourceRoot":"","sources":["../../../../../../src/generators/init/generator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAOvC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAyDpD,wBAAsB,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,mBAAmB,iBAkf3E;AA4ID,eAAe,aAAa,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"auto-update-utils.d.ts","sourceRoot":"","sources":["../../../../../src/utils/auto-update-utils.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;AAEhD,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,SAAS,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,wBAAgB,wBAAwB,IAAI,MAAM,CAqBjD;AAED;;GAEG;AACH,wBAAgB,WAAW,IAAI,SAAS,CAKvC;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM,CAQ3D;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CA8CjE;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAoDrE;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,CA0C5E"}
1
+ {"version":3,"file":"auto-update-utils.d.ts","sourceRoot":"","sources":["../../../../../src/utils/auto-update-utils.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;AAEhD,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,SAAS,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,wBAAgB,wBAAwB,IAAI,MAAM,CAejD;AAED;;GAEG;AACH,wBAAgB,WAAW,IAAI,SAAS,CAKvC;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM,CAQ3D;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CA8CjE;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAoDrE;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,CAmC5E"}
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@uniswap/ai-toolkit-nx-claude",
3
- "version": "0.5.23",
3
+ "version": "0.5.24-next.1",
4
4
  "private": false,
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.cjs",
7
7
  "types": "./dist/index.d.ts",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/uniswap/ai-toolkit.git",
10
+ "url": "https://github.com/Uniswap/ai-toolkit.git",
11
11
  "directory": "packages/ai-toolkit-nx-claude"
12
12
  },
13
13
  "publishConfig": {
14
- "access": "restricted"
14
+ "access": "public"
15
15
  },
16
16
  "bin": {
17
17
  "ai-toolkit-nx-claude": "dist/cli-generator.cjs",