openads-ai 0.2.18 → 0.2.20

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 (2) hide show
  1. package/dist/cli.js +6 -6
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -315,21 +315,21 @@ async function main() {
315
315
  return;
316
316
  }
317
317
  if (action === 'audit') {
318
- let auditTemplate = 'audit-google-ads';
318
+ let auditTemplate = '/audit-google-ads';
319
319
  if (config.metaToken && !config.connectGoogle) {
320
- auditTemplate = 'audit-meta-ads';
320
+ auditTemplate = '/audit-meta-ads';
321
321
  }
322
322
  else if (config.metaToken && config.connectGoogle) {
323
- auditTemplate = 'audit-campaigns';
323
+ auditTemplate = '/audit-campaigns';
324
324
  }
325
325
  finalArgs = [auditTemplate];
326
326
  }
327
327
  else {
328
328
  const actionMap = {
329
329
  chat: [],
330
- copy: ['write-ad-copy'],
331
- autoresearch: ['autoresearch-plan'],
332
- gtm: ['go-to-market'],
330
+ copy: ['/write-ad-copy'],
331
+ autoresearch: ['/autoresearch-plan'],
332
+ gtm: ['/go-to-market'],
333
333
  };
334
334
  finalArgs = actionMap[action] || [];
335
335
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openads-ai",
3
- "version": "0.2.18",
3
+ "version": "0.2.20",
4
4
  "description": "Open-source AI command center for digital marketers. Audit campaigns, write ad copy, and build strategies — from your terminal.",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {