newo 3.3.0 → 3.3.2

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 +48 -1
  2. package/package.json +1 -1
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
+ - 🚀 **Account migration** - Fully automated account copying with 100% accuracy in ~30 minutes (NEW v3.3.0)
11
12
  - 🏗️ **Complete entity management** - Create, edit, and delete agents, flows, skills, events, and states (NEW v2.0+)
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 (966+ skills)
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 (NEW v3.3.0)
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
25
  - 🧪 **Sandbox testing** - Interactive agent testing with conversation continuation (NEW v3.1.0)
26
+ - ✅ **Migration verification** - Automated validation of migration completeness (NEW v3.3.0)
24
27
  - 🔧 **CI/CD ready** - GitHub Actions integration for automated deployments
25
28
 
26
29
  ---
@@ -149,6 +152,50 @@ 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
 
155
+ ### Account Migration Commands (NEW v3.3.0)
156
+
157
+ **Enterprise-grade account migration with 100% automation:**
158
+
159
+ | Command | Description | Features |
160
+ |---------|-------------|----------|
161
+ | `newo migrate-account` | Migrate complete account from source to destination | • Fully automated migration<br>• All entities: projects, agents, flows, skills<br>• All data: attributes, AKB, integrations<br>• Automatic webhook creation<br>• Built-in verification<br>• Progress tracking |
162
+ | `newo verify` | Verify migration between accounts | • Entity count comparison<br>• Projects, agents, flows, skills validation<br>• Quick verification (< 1 min)<br>• Exit codes for automation |
163
+ | `newo create-webhooks` | Create webhooks from YAML files | • Outgoing and incoming webhooks<br>• Batch creation<br>• YAML-based configuration<br>• Duplicate detection |
164
+
165
+ **Migration Workflow:**
166
+ ```bash
167
+ # 1. Pull source data
168
+ newo pull --customer SOURCE_IDN
169
+ newo pull-integrations --customer SOURCE_IDN
170
+ newo pull-akb --customer SOURCE_IDN
171
+ newo pull-attributes --customer SOURCE_IDN
172
+
173
+ # 2. Run migration (fully automated)
174
+ newo migrate-account --source SOURCE_IDN --dest DEST_IDN --yes
175
+
176
+ # 3. Push skill content
177
+ newo push --customer DEST_IDN
178
+
179
+ # 4. Verify success
180
+ newo verify --source SOURCE_IDN --dest DEST_IDN
181
+
182
+ # Complete! Account migrated in ~30 minutes
183
+ ```
184
+
185
+ **What Gets Migrated:**
186
+ - ✅ All projects, agents, flows, skills (1,000+ skills tested)
187
+ - ✅ All customer and project attributes
188
+ - ✅ All AKB personas and knowledge base articles
189
+ - ✅ All integrations, connectors, and webhooks
190
+ - ✅ All file content (.guidance and .jinja scripts)
191
+ - ✅ All metadata and configuration
192
+
193
+ **Benefits:**
194
+ - **Time Savings**: ~30 minutes vs 8-10 hours manual
195
+ - **Accuracy**: 100% entity match verified
196
+ - **Reliability**: Tested with 1,084-skill account
197
+ - **Safety**: Source account read-only, never modified
198
+
152
199
  ### Entity Management Commands
153
200
 
154
201
  **Complete lifecycle management for NEWO entities with local-first workflow:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newo",
3
- "version": "3.3.0",
3
+ "version": "3.3.2",
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": {