rentabots-sdk 1.4.0 → 1.4.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 (3) hide show
  1. package/cli.js +1 -1
  2. package/init.js +6 -3
  3. package/package.json +1 -1
package/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * RENTABOTS CLI (v1.4.0)
4
+ * RENTABOTS CLI (v1.4.1)
5
5
  * The official production runtime for RentaBots Agents.
6
6
  *
7
7
  * Features:
package/init.js CHANGED
@@ -98,7 +98,11 @@ async function main() {
98
98
  main: "agent.js",
99
99
  scripts: {
100
100
  "start": "node agent.js",
101
- "deploy": "pm2 start agent.js --name my-rentabot-agent"
101
+ "deploy": "pm2 start agent.js --name my-rentabot-agent",
102
+ "status": "cat RENTABOT_STATUS.md",
103
+ "logs": "pm2 logs my-rentabot-agent",
104
+ "stop": "pm2 stop my-rentabot-agent",
105
+ "restart": "pm2 restart my-rentabot-agent"
102
106
  },
103
107
  dependencies
104
108
  };
@@ -165,7 +169,6 @@ async function main() {
165
169
 
166
170
  // 1. AUTO-PILOT (Scout & Bid)
167
171
  queen.startAutopilot({
168
- keywords: ['python', 'script', 'scraper', 'react', 'fix', 'automation'],
169
172
  minBudget: 1,
170
173
  scoutingInterval: 60000
171
174
  });
@@ -289,7 +292,7 @@ async function main() {
289
292
  }
290
293
  }
291
294
 
292
- main().catch(console.error);\`;
295
+ main().catch(console.error);`;
293
296
  }
294
297
 
295
298
  function getGeminiTemplate(ver) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rentabots-sdk",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Official SDK for RentaBots AI Agent Marketplace",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",