newo 3.3.1 → 3.3.3
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/CHANGELOG.md +2 -4
- package/README.md +9 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -78,15 +78,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
78
78
|
- 100% entity match validation (projects, agents, flows, skills)
|
|
79
79
|
- 100% file integrity verification (SHA256 checksums on attributes)
|
|
80
80
|
- 100% webhook creation success (all 5 webhooks verified)
|
|
81
|
-
-
|
|
81
|
+
- Significant time reduction compared to manual migration process
|
|
82
82
|
- **Entity Count Verification**: Automated comparison validates all entity types
|
|
83
83
|
- **Webhook Creation**: Batch webhook creation from YAML files tested and verified
|
|
84
84
|
|
|
85
85
|
### Performance
|
|
86
86
|
|
|
87
|
-
- **Migration
|
|
88
|
-
- Automated process: ~30 minutes
|
|
89
|
-
- Manual process: 8-10 hours
|
|
87
|
+
- **Migration Automation**: 100% automated with zero manual steps required
|
|
90
88
|
- **Reliability**: 100% success rate across multiple test migrations
|
|
91
89
|
- **Data Integrity**: Full SHA256 verification ensures zero data loss
|
|
92
90
|
|
package/README.md
CHANGED
|
@@ -8,19 +8,22 @@
|
|
|
8
8
|
**NEWO CLI** - Professional command-line tool for NEWO AI Agent development. Features **modular architecture**, **IDN-based file management**, and **comprehensive multi-customer support**.
|
|
9
9
|
|
|
10
10
|
Sync NEWO "Project → Agent → Flow → Skills" structure to local files with:
|
|
11
|
-
-
|
|
11
|
+
- 🚀 **Account migration** - Fully automated account copying with 100% accuracy
|
|
12
|
+
- 🏗️ **Complete entity management** - Create, edit, and delete agents, flows, skills, events, and states
|
|
12
13
|
- 🔄 **Intelligent synchronization** - Pull projects, attributes, and conversations automatically
|
|
13
14
|
- 🎯 **IDN-based naming** - Skills named as `{skillIdn}.jinja/.guidance` for better organization
|
|
14
|
-
- 📊 **Real-time progress** - Live progress tracking during large operations (
|
|
15
|
+
- 📊 **Real-time progress** - Live progress tracking during large operations (1,000+ skills)
|
|
15
16
|
- 🏢 **Multi-customer workspaces** - Work with multiple NEWO accounts simultaneously
|
|
16
17
|
- 📁 **Hierarchical structure** - Complete project metadata and organized file structure
|
|
17
18
|
- 🔐 **Secure authentication** - API key-based auth with automatic token refresh
|
|
18
19
|
- ⚡ **Smart change detection** - SHA256-based efficient sync with hash consistency
|
|
19
20
|
- 🛡️ **File validation** - Multiple file detection with clear warnings and safe handling
|
|
20
21
|
- 🧠 **AI skill formats** - Support for `.guidance` (AI prompts) and `.jinja` (NSL templates)
|
|
22
|
+
- 📡 **Webhook automation** - Automatic webhook creation from YAML configuration
|
|
21
23
|
- 📊 **Knowledge base import** - Bulk import AKB articles from structured text files
|
|
22
24
|
- 💬 **Conversation history** - Extract and sync user conversations and personas
|
|
23
|
-
- 🧪 **Sandbox testing** - Interactive agent testing with conversation continuation
|
|
25
|
+
- 🧪 **Sandbox testing** - Interactive agent testing with conversation continuation
|
|
26
|
+
- ✅ **Migration verification** - Automated validation of migration completeness
|
|
24
27
|
- 🔧 **CI/CD ready** - GitHub Actions integration for automated deployments
|
|
25
28
|
|
|
26
29
|
---
|
|
@@ -149,7 +152,7 @@ NEWO_REFRESH_URL=custom_refresh_endpoint # Custom refresh endpoint
|
|
|
149
152
|
| `newo import-akb` | Import knowledge base articles | • Structured text parsing<br>• Bulk article import<br>• Validation and error reporting |
|
|
150
153
|
| `newo meta` | Get project metadata (debug) | • Project structure analysis<br>• Metadata validation |
|
|
151
154
|
|
|
152
|
-
### Account Migration Commands
|
|
155
|
+
### Account Migration Commands
|
|
153
156
|
|
|
154
157
|
**Enterprise-grade account migration with 100% automation:**
|
|
155
158
|
|
|
@@ -176,7 +179,7 @@ newo push --customer DEST_IDN
|
|
|
176
179
|
# 4. Verify success
|
|
177
180
|
newo verify --source SOURCE_IDN --dest DEST_IDN
|
|
178
181
|
|
|
179
|
-
# Complete! Account migrated
|
|
182
|
+
# Complete! Account fully migrated
|
|
180
183
|
```
|
|
181
184
|
|
|
182
185
|
**What Gets Migrated:**
|
|
@@ -188,7 +191,7 @@ newo verify --source SOURCE_IDN --dest DEST_IDN
|
|
|
188
191
|
- ✅ All metadata and configuration
|
|
189
192
|
|
|
190
193
|
**Benefits:**
|
|
191
|
-
- **
|
|
194
|
+
- **Automation**: 100% automated with zero manual steps
|
|
192
195
|
- **Accuracy**: 100% entity match verified
|
|
193
196
|
- **Reliability**: Tested with 1,084-skill account
|
|
194
197
|
- **Safety**: Source account read-only, never modified
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "newo",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.3",
|
|
4
4
|
"description": "NEWO CLI: Professional command-line tool with modular architecture for NEWO AI Agent development. Features account migration, integration management, webhook automation, AKB knowledge base, project attributes, sandbox testing, IDN-based file management, real-time progress tracking, intelligent sync operations, and comprehensive multi-customer support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|