scoutagent 2026.2.27 → 2026.2.28
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/README.md +9 -12
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,22 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
ScoutAgent is an AI agent builder Node.js
|
|
7
|
+
ScoutAgent is an AI agent builder for Node.js, rivaling AutoGPT, BabyAGI, CrewAI, and LangGraph. Define agents with a fluent automation API and deploy them without code. Schedule agent runs easily. Build robust, automated systems using AI with a scheduled agent runner for Node.js.
|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
- Schedule agent
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
- Deploy recurring agents with a single command
|
|
11
|
+
- Compose AI agents using a fluent automation API in Node.js.
|
|
12
|
+
- Orchestrate complex workflows with shell commands and AI tasks.
|
|
13
|
+
- Schedule recurring agent runs with a single function call.
|
|
14
|
+
- Deploy agents without code using our streamlined deployment process.
|
|
15
|
+
- Build custom tools and integrations for your AI agents.
|
|
17
16
|
|
|
18
17
|
## Use Cases
|
|
19
18
|
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
19
|
+
- Build AI agents with a fluent chainable API
|
|
20
|
+
- Deploy recurring agents on any schedule with one call
|
|
21
|
+
- Combine shell steps and AI tasks in a single workflow
|
|
23
22
|
|
|
24
23
|
## Get Started
|
|
25
24
|
|
|
@@ -34,7 +33,6 @@ import { ScoutAgent } from 'scoutagent';
|
|
|
34
33
|
|
|
35
34
|
const client = ScoutAgent.remote({ apiKey: 'cmdop_live_xxx' });
|
|
36
35
|
|
|
37
|
-
// Build and deploy an agent with a fluent API
|
|
38
36
|
const deployer = client.build()
|
|
39
37
|
.named('NightlyDeployer')
|
|
40
38
|
.shell('git pull && npm install')
|
|
@@ -43,7 +41,6 @@ const deployer = client.build()
|
|
|
43
41
|
.every(24 * 60 * 60 * 1000)
|
|
44
42
|
.deploy();
|
|
45
43
|
|
|
46
|
-
// Or use quickDeploy for inline config
|
|
47
44
|
const monitor = client.quickDeploy({
|
|
48
45
|
name: 'HealthMonitor',
|
|
49
46
|
steps: ['$ uptime && df -h', 'Summarize resource usage'],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scoutagent",
|
|
3
|
-
"version": "2026.2.
|
|
4
|
-
"description": "ScoutAgent
|
|
3
|
+
"version": "2026.2.28",
|
|
4
|
+
"description": "ScoutAgent \u2014 no-code agent builder plugin for CMDOP",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"license": "MIT",
|