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.
- package/cli.js +1 -1
- package/init.js +6 -3
- package/package.json +1 -1
package/cli.js
CHANGED
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) {
|