newo 3.3.0 → 3.3.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/README.md +44 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,6 +149,50 @@ NEWO_REFRESH_URL=custom_refresh_endpoint # Custom refresh endpoint
|
|
|
149
149
|
| `newo import-akb` | Import knowledge base articles | • Structured text parsing<br>• Bulk article import<br>• Validation and error reporting |
|
|
150
150
|
| `newo meta` | Get project metadata (debug) | • Project structure analysis<br>• Metadata validation |
|
|
151
151
|
|
|
152
|
+
### Account Migration Commands (NEW v3.3.0)
|
|
153
|
+
|
|
154
|
+
**Enterprise-grade account migration with 100% automation:**
|
|
155
|
+
|
|
156
|
+
| Command | Description | Features |
|
|
157
|
+
|---------|-------------|----------|
|
|
158
|
+
| `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 |
|
|
159
|
+
| `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 |
|
|
160
|
+
| `newo create-webhooks` | Create webhooks from YAML files | • Outgoing and incoming webhooks<br>• Batch creation<br>• YAML-based configuration<br>• Duplicate detection |
|
|
161
|
+
|
|
162
|
+
**Migration Workflow:**
|
|
163
|
+
```bash
|
|
164
|
+
# 1. Pull source data
|
|
165
|
+
newo pull --customer SOURCE_IDN
|
|
166
|
+
newo pull-integrations --customer SOURCE_IDN
|
|
167
|
+
newo pull-akb --customer SOURCE_IDN
|
|
168
|
+
newo pull-attributes --customer SOURCE_IDN
|
|
169
|
+
|
|
170
|
+
# 2. Run migration (fully automated)
|
|
171
|
+
newo migrate-account --source SOURCE_IDN --dest DEST_IDN --yes
|
|
172
|
+
|
|
173
|
+
# 3. Push skill content
|
|
174
|
+
newo push --customer DEST_IDN
|
|
175
|
+
|
|
176
|
+
# 4. Verify success
|
|
177
|
+
newo verify --source SOURCE_IDN --dest DEST_IDN
|
|
178
|
+
|
|
179
|
+
# Complete! Account migrated in ~30 minutes
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
**What Gets Migrated:**
|
|
183
|
+
- ✅ All projects, agents, flows, skills (1,000+ skills tested)
|
|
184
|
+
- ✅ All customer and project attributes
|
|
185
|
+
- ✅ All AKB personas and knowledge base articles
|
|
186
|
+
- ✅ All integrations, connectors, and webhooks
|
|
187
|
+
- ✅ All file content (.guidance and .jinja scripts)
|
|
188
|
+
- ✅ All metadata and configuration
|
|
189
|
+
|
|
190
|
+
**Benefits:**
|
|
191
|
+
- **Time Savings**: ~30 minutes vs 8-10 hours manual
|
|
192
|
+
- **Accuracy**: 100% entity match verified
|
|
193
|
+
- **Reliability**: Tested with 1,084-skill account
|
|
194
|
+
- **Safety**: Source account read-only, never modified
|
|
195
|
+
|
|
152
196
|
### Entity Management Commands
|
|
153
197
|
|
|
154
198
|
**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.
|
|
3
|
+
"version": "3.3.1",
|
|
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": {
|