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.
Files changed (2) hide show
  1. package/README.md +9 -12
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,22 +4,21 @@
4
4
 
5
5
  ![CMDOP Architecture](https://cmdop.com/images/architecture/vs-personal-agent.png)
6
6
 
7
- ScoutAgent is an AI agent builder Node.js library designed for no-code agent deployment and a fluent automation API. Schedule agents with ease using the scheduled agent runner. Unlike AutoGPT, BabyAGI, CrewAI, or LangGraph, ScoutAgent offers simple remote deployment. Ideal for developers seeking streamlined agent creation and management.
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
- - Simplify AI agent creation with a fluent automation API
12
- - Enable no-code agent deployment for hassle-free automation
13
- - Schedule agent runner tasks with precise timing
14
- - Integrate shell commands and AI tasks seamlessly in Node.js
15
- - Automate complex workflows using the AI agent builder Node.js module
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
- - Automatically update a production server from source nightly, verifying the build with an AI.
21
- - Monitor server health every minute and summarize anomalies for DevOps.
22
- - Generate daily reports by scraping a website and summarizing the content with an AI.
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.27",
4
- "description": "ScoutAgent no-code agent builder plugin for CMDOP",
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",