@claude-flow/cli 3.0.0-alpha.120 β 3.0.0-alpha.122
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 +163 -3
- package/dist/src/commands/index.d.ts +2 -0
- package/dist/src/commands/index.d.ts.map +1 -1
- package/dist/src/commands/index.js +7 -0
- package/dist/src/commands/index.js.map +1 -1
- package/dist/src/commands/ruvector/backup.d.ts +11 -0
- package/dist/src/commands/ruvector/backup.d.ts.map +1 -0
- package/dist/src/commands/ruvector/backup.js +746 -0
- package/dist/src/commands/ruvector/backup.js.map +1 -0
- package/dist/src/commands/ruvector/benchmark.d.ts +11 -0
- package/dist/src/commands/ruvector/benchmark.d.ts.map +1 -0
- package/dist/src/commands/ruvector/benchmark.js +480 -0
- package/dist/src/commands/ruvector/benchmark.js.map +1 -0
- package/dist/src/commands/ruvector/import.d.ts +18 -0
- package/dist/src/commands/ruvector/import.d.ts.map +1 -0
- package/dist/src/commands/ruvector/import.js +349 -0
- package/dist/src/commands/ruvector/import.js.map +1 -0
- package/dist/src/commands/ruvector/index.d.ts +29 -0
- package/dist/src/commands/ruvector/index.d.ts.map +1 -0
- package/dist/src/commands/ruvector/index.js +129 -0
- package/dist/src/commands/ruvector/index.js.map +1 -0
- package/dist/src/commands/ruvector/init.d.ts +11 -0
- package/dist/src/commands/ruvector/init.d.ts.map +1 -0
- package/dist/src/commands/ruvector/init.js +431 -0
- package/dist/src/commands/ruvector/init.js.map +1 -0
- package/dist/src/commands/ruvector/migrate.d.ts +11 -0
- package/dist/src/commands/ruvector/migrate.d.ts.map +1 -0
- package/dist/src/commands/ruvector/migrate.js +481 -0
- package/dist/src/commands/ruvector/migrate.js.map +1 -0
- package/dist/src/commands/ruvector/optimize.d.ts +11 -0
- package/dist/src/commands/ruvector/optimize.d.ts.map +1 -0
- package/dist/src/commands/ruvector/optimize.js +503 -0
- package/dist/src/commands/ruvector/optimize.js.map +1 -0
- package/dist/src/commands/ruvector/setup.d.ts +18 -0
- package/dist/src/commands/ruvector/setup.d.ts.map +1 -0
- package/dist/src/commands/ruvector/setup.js +765 -0
- package/dist/src/commands/ruvector/setup.js.map +1 -0
- package/dist/src/commands/ruvector/status.d.ts +11 -0
- package/dist/src/commands/ruvector/status.d.ts.map +1 -0
- package/dist/src/commands/ruvector/status.js +456 -0
- package/dist/src/commands/ruvector/status.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -253,6 +253,7 @@ Smart routing skips expensive LLM calls when possible. Simple edits use WASM (fr
|
|
|
253
253
|
| **Hive Mind** | β Not available | π Queen-led swarms with collective intelligence, 3 queen types, 8 worker types |
|
|
254
254
|
| **Consensus** | β No multi-agent decisions | Byzantine fault-tolerant voting (f < n/3), weighted, majority |
|
|
255
255
|
| **Memory** | Session-only, no persistence | HNSW vector memory with 150x-12,500x faster retrieval |
|
|
256
|
+
| **Vector Database** | β No native support | π RuVector PostgreSQL with 77+ SQL functions, ~61Β΅s search, 16,400 QPS |
|
|
256
257
|
| **Collective Memory** | β No shared knowledge | Shared knowledge base with LRU cache, SQLite persistence, 8 memory types |
|
|
257
258
|
| **Learning** | Static behavior, no adaptation | SONA self-learning with <0.05ms adaptation, improves over time |
|
|
258
259
|
| **Task Routing** | You decide which agent to use | Intelligent routing based on learned patterns (89% accuracy) |
|
|
@@ -340,10 +341,12 @@ Claude-Flow v3 introduces **self-learning neural capabilities** that no other ag
|
|
|
340
341
|
| Feature | Claude Flow v3 | CrewAI | LangGraph | AutoGen | Manus |
|
|
341
342
|
|---------|----------------|--------|-----------|---------|-------|
|
|
342
343
|
| **Vector Memory** | β
HNSW (150x faster) | β | Via plugins | β | β |
|
|
343
|
-
| **
|
|
344
|
+
| **PostgreSQL Vector DB** | β
RuVector (77+ SQL functions, ~61Β΅s) | β | pgvector only | β | β |
|
|
345
|
+
| **Hyperbolic Embeddings** | β
PoincarΓ© ball (native + SQL) | β | β | β | β |
|
|
344
346
|
| **Quantization** | β
Int8 (3.92x savings) | β | β | β | β |
|
|
345
|
-
| **Persistent Memory** | β
SQLite + AgentDB | β | β | β | Limited |
|
|
347
|
+
| **Persistent Memory** | β
SQLite + AgentDB + PostgreSQL | β | β | β | Limited |
|
|
346
348
|
| **Cross-Session Context** | β
Full restoration | β | β | β | β |
|
|
349
|
+
| **GNN/Attention in SQL** | β
39 attention mechanisms | β | β | β | β |
|
|
347
350
|
|
|
348
351
|
#### π Swarm & Coordination
|
|
349
352
|
|
|
@@ -379,7 +382,7 @@ Claude-Flow v3 introduces **self-learning neural capabilities** that no other ag
|
|
|
379
382
|
<details>
|
|
380
383
|
<summary>π <strong>Key Differentiators</strong> β Self-learning, memory optimization, fault tolerance</summary>
|
|
381
384
|
|
|
382
|
-
What makes Claude-Flow different from other agent frameworks? These
|
|
385
|
+
What makes Claude-Flow different from other agent frameworks? These 10 capabilities work together to create a system that learns from experience, runs efficiently on any hardware, and keeps working even when things go wrong.
|
|
383
386
|
|
|
384
387
|
| | Feature | What It Does | Technical Details |
|
|
385
388
|
|---|---------|--------------|-------------------|
|
|
@@ -392,6 +395,7 @@ What makes Claude-Flow different from other agent frameworks? These 9 capabiliti
|
|
|
392
395
|
| ποΈ | **Int8 Quantization** | Converts 32-bit weights to 8-bit with minimal accuracy loss | 3.92x memory reduction with calibrated 8-bit integers |
|
|
393
396
|
| π€ | **Claims System** | Manages task ownership between humans and agents with handoff support | Work ownership with claim/release/handoff protocols |
|
|
394
397
|
| π‘οΈ | **Byzantine Consensus** | Coordinates agents even when some fail or return bad results | Fault-tolerant, handles up to 1/3 failing agents |
|
|
398
|
+
| π | **RuVector PostgreSQL** | Enterprise-grade vector database with 77+ SQL functions for AI operations | ~61Β΅s search, 16,400 QPS, GNN/attention in SQL |
|
|
395
399
|
|
|
396
400
|
</details>
|
|
397
401
|
|
|
@@ -1135,6 +1139,117 @@ Pre-built WASM plugins for semantic search, intent routing, and pattern storage.
|
|
|
1135
1139
|
|
|
1136
1140
|
</details>
|
|
1137
1141
|
|
|
1142
|
+
<details>
|
|
1143
|
+
<summary>π <strong>RuVector PostgreSQL Bridge</strong> β Production vector database with AI capabilities</summary>
|
|
1144
|
+
|
|
1145
|
+
Full PostgreSQL integration with advanced vector operations, attention mechanisms, GNN layers, and self-learning optimization.
|
|
1146
|
+
|
|
1147
|
+
| Feature | Description | Performance |
|
|
1148
|
+
|---------|-------------|-------------|
|
|
1149
|
+
| **Vector Search** | HNSW/IVF indexing with 12+ distance metrics | 52,000+ inserts/sec, sub-ms queries |
|
|
1150
|
+
| **39 Attention Mechanisms** | Multi-head, Flash, Sparse, Linear, Graph, Temporal | GPU-accelerated SQL functions |
|
|
1151
|
+
| **15 GNN Layer Types** | GCN, GAT, GraphSAGE, MPNN, Transformer, PNA | Graph-aware vector queries |
|
|
1152
|
+
| **Hyperbolic Embeddings** | Poincare, Lorentz, Klein models for hierarchical data | Native manifold operations |
|
|
1153
|
+
| **Self-Learning** | Query optimizer, index tuner with EWC++ | Continuous improvement |
|
|
1154
|
+
|
|
1155
|
+
**MCP Tools (8 tools):**
|
|
1156
|
+
|
|
1157
|
+
| Tool | Description |
|
|
1158
|
+
|------|-------------|
|
|
1159
|
+
| `ruvector_search` | Vector similarity search (cosine, euclidean, dot, etc.) |
|
|
1160
|
+
| `ruvector_insert` | Insert vectors with batch support and upsert |
|
|
1161
|
+
| `ruvector_update` | Update existing vectors and metadata |
|
|
1162
|
+
| `ruvector_delete` | Delete vectors by ID or batch |
|
|
1163
|
+
| `ruvector_create_index` | Create HNSW/IVF indices with tuning |
|
|
1164
|
+
| `ruvector_index_stats` | Get index statistics and health |
|
|
1165
|
+
| `ruvector_batch_search` | Batch vector searches with parallelism |
|
|
1166
|
+
| `ruvector_health` | Connection pool health check |
|
|
1167
|
+
|
|
1168
|
+
**Configuration:**
|
|
1169
|
+
|
|
1170
|
+
```typescript
|
|
1171
|
+
import { createRuVectorBridge } from '@claude-flow/plugins';
|
|
1172
|
+
|
|
1173
|
+
const bridge = createRuVectorBridge({
|
|
1174
|
+
host: 'localhost',
|
|
1175
|
+
port: 5432,
|
|
1176
|
+
database: 'vectors',
|
|
1177
|
+
user: 'postgres',
|
|
1178
|
+
password: 'secret',
|
|
1179
|
+
pool: { min: 2, max: 10 },
|
|
1180
|
+
ssl: true
|
|
1181
|
+
});
|
|
1182
|
+
|
|
1183
|
+
// Enable the plugin
|
|
1184
|
+
await registry.register(bridge);
|
|
1185
|
+
await registry.loadAll();
|
|
1186
|
+
```
|
|
1187
|
+
|
|
1188
|
+
**Attention Mechanisms (39 types):**
|
|
1189
|
+
|
|
1190
|
+
| Category | Mechanisms |
|
|
1191
|
+
|----------|------------|
|
|
1192
|
+
| **Core** | `multi_head`, `self_attention`, `cross_attention`, `causal`, `bidirectional` |
|
|
1193
|
+
| **Efficient** | `flash_attention`, `flash_attention_v2`, `memory_efficient`, `chunk_attention` |
|
|
1194
|
+
| **Sparse** | `sparse_attention`, `block_sparse`, `bigbird`, `longformer`, `local`, `global` |
|
|
1195
|
+
| **Linear** | `linear_attention`, `performer`, `linformer`, `nystrom`, `reformer` |
|
|
1196
|
+
| **Positional** | `relative_position`, `rotary_position`, `alibi`, `axial` |
|
|
1197
|
+
| **Graph** | `graph_attention`, `hyperbolic_attention`, `spherical_attention` |
|
|
1198
|
+
| **Temporal** | `temporal_attention`, `recurrent_attention`, `state_space` |
|
|
1199
|
+
| **Multimodal** | `cross_modal`, `perceiver`, `flamingo` |
|
|
1200
|
+
| **Retrieval** | `retrieval_attention`, `knn_attention`, `memory_augmented` |
|
|
1201
|
+
|
|
1202
|
+
**GNN Layers (15 types):**
|
|
1203
|
+
|
|
1204
|
+
| Layer | Use Case |
|
|
1205
|
+
|-------|----------|
|
|
1206
|
+
| `gcn` | General graph convolution |
|
|
1207
|
+
| `gat` / `gatv2` | Attention-weighted aggregation |
|
|
1208
|
+
| `sage` | Inductive learning on large graphs |
|
|
1209
|
+
| `gin` | Maximally expressive GNN |
|
|
1210
|
+
| `mpnn` | Message passing with edge features |
|
|
1211
|
+
| `edge_conv` | Point cloud processing |
|
|
1212
|
+
| `transformer` | Full attention on graphs |
|
|
1213
|
+
| `pna` | Principal neighborhood aggregation |
|
|
1214
|
+
| `rgcn` / `hgt` / `han` | Heterogeneous graphs |
|
|
1215
|
+
|
|
1216
|
+
**Hyperbolic Operations:**
|
|
1217
|
+
|
|
1218
|
+
```typescript
|
|
1219
|
+
import { createHyperbolicSpace } from '@claude-flow/plugins';
|
|
1220
|
+
|
|
1221
|
+
const space = createHyperbolicSpace('poincare', { curvature: -1.0 });
|
|
1222
|
+
|
|
1223
|
+
// Embed hierarchical data (trees, taxonomies)
|
|
1224
|
+
const embedding = await space.embed(vector);
|
|
1225
|
+
const distance = await space.distance(v1, v2); // Geodesic distance
|
|
1226
|
+
const midpoint = await space.geodesicMidpoint(v1, v2);
|
|
1227
|
+
```
|
|
1228
|
+
|
|
1229
|
+
**Self-Learning System:**
|
|
1230
|
+
|
|
1231
|
+
```typescript
|
|
1232
|
+
import { createSelfLearningSystem } from '@claude-flow/plugins';
|
|
1233
|
+
|
|
1234
|
+
const learning = createSelfLearningSystem(bridge);
|
|
1235
|
+
|
|
1236
|
+
// Automatic optimization
|
|
1237
|
+
await learning.startLearningLoop(); // Runs in background
|
|
1238
|
+
|
|
1239
|
+
// Manual optimization
|
|
1240
|
+
const suggestions = await learning.queryOptimizer.analyze(query);
|
|
1241
|
+
await learning.indexTuner.tune('my_index');
|
|
1242
|
+
```
|
|
1243
|
+
|
|
1244
|
+
**Hooks (auto-triggered):**
|
|
1245
|
+
|
|
1246
|
+
| Hook | Event | Purpose |
|
|
1247
|
+
|------|-------|---------|
|
|
1248
|
+
| `ruvector-learn-pattern` | `PostMemoryStore` | Learn from memory operations |
|
|
1249
|
+
| `ruvector-collect-stats` | `PostToolUse` | Collect query statistics |
|
|
1250
|
+
|
|
1251
|
+
</details>
|
|
1252
|
+
|
|
1138
1253
|
<details>
|
|
1139
1254
|
<summary>βοΈ <strong>Background Workers</strong> β 12 auto-triggered workers for automation</summary>
|
|
1140
1255
|
|
|
@@ -1417,6 +1532,51 @@ claude-flow embeddings search -q "authentication patterns"
|
|
|
1417
1532
|
|
|
1418
1533
|
</details>
|
|
1419
1534
|
|
|
1535
|
+
<details>
|
|
1536
|
+
<summary>π <strong>RuVector PostgreSQL Bridge</strong> β Enterprise vector operations with pgvector</summary>
|
|
1537
|
+
|
|
1538
|
+
| Feature | Description | Performance |
|
|
1539
|
+
|---------|-------------|-------------|
|
|
1540
|
+
| **pgvector Integration** | Native PostgreSQL vector operations | 150x faster than in-memory |
|
|
1541
|
+
| **Attention Mechanisms** | Self, multi-head, cross-attention in SQL | GPU-accelerated |
|
|
1542
|
+
| **Graph Neural Networks** | GNN operations via SQL functions | Message passing, aggregation |
|
|
1543
|
+
| **Hyperbolic Embeddings** | PoincarΓ© ball model in PostgreSQL | Better hierarchy representation |
|
|
1544
|
+
| **Quantization** | Int8/Float16 compression | 3.92x memory reduction |
|
|
1545
|
+
| **Streaming** | Large dataset processing | Batch + async support |
|
|
1546
|
+
| **Migrations** | Version-controlled schema | 7 migration scripts |
|
|
1547
|
+
|
|
1548
|
+
```bash
|
|
1549
|
+
# Initialize RuVector in PostgreSQL
|
|
1550
|
+
claude-flow ruvector init --database mydb --user admin
|
|
1551
|
+
|
|
1552
|
+
# Check connection and schema status
|
|
1553
|
+
claude-flow ruvector status --verbose
|
|
1554
|
+
|
|
1555
|
+
# Run pending migrations
|
|
1556
|
+
claude-flow ruvector migrate --up
|
|
1557
|
+
|
|
1558
|
+
# Performance benchmark
|
|
1559
|
+
claude-flow ruvector benchmark --iterations 1000
|
|
1560
|
+
|
|
1561
|
+
# Optimize indices and vacuum
|
|
1562
|
+
claude-flow ruvector optimize --analyze
|
|
1563
|
+
|
|
1564
|
+
# Backup vector data
|
|
1565
|
+
claude-flow ruvector backup --output ./backup.sql
|
|
1566
|
+
```
|
|
1567
|
+
|
|
1568
|
+
| Migration | Purpose | Features |
|
|
1569
|
+
|-----------|---------|----------|
|
|
1570
|
+
| `001_create_extension` | Enable pgvector | Vector type, operators |
|
|
1571
|
+
| `002_create_vector_tables` | Core tables | embeddings, patterns, agents |
|
|
1572
|
+
| `003_create_indices` | HNSW indices | 150x faster search |
|
|
1573
|
+
| `004_create_functions` | Vector functions | Similarity, clustering |
|
|
1574
|
+
| `005_create_attention_functions` | Attention ops | Self/multi-head attention |
|
|
1575
|
+
| `006_create_gnn_functions` | GNN operations | Message passing, aggregation |
|
|
1576
|
+
| `007_create_hyperbolic_functions` | Hyperbolic geometry | PoincarΓ© operations |
|
|
1577
|
+
|
|
1578
|
+
</details>
|
|
1579
|
+
|
|
1420
1580
|
<details>
|
|
1421
1581
|
<summary>π <strong>Hive-Mind Coordination</strong> β Queen-led topology with Byzantine consensus</summary>
|
|
1422
1582
|
|
|
@@ -22,6 +22,7 @@ export { embeddingsCommand } from './embeddings.js';
|
|
|
22
22
|
export { neuralCommand } from './neural.js';
|
|
23
23
|
export { performanceCommand } from './performance.js';
|
|
24
24
|
export { securityCommand } from './security.js';
|
|
25
|
+
export { ruvectorCommand } from './ruvector/index.js';
|
|
25
26
|
export { hiveMindCommand } from './hive-mind.js';
|
|
26
27
|
export declare function getConfigCommand(): Promise<Command | undefined>;
|
|
27
28
|
export declare function getMigrateCommand(): Promise<Command | undefined>;
|
|
@@ -43,6 +44,7 @@ export declare function getAnalyzeCommand(): Promise<Command | undefined>;
|
|
|
43
44
|
export declare function getRouteCommand(): Promise<Command | undefined>;
|
|
44
45
|
export declare function getProgressCommand(): Promise<Command | undefined>;
|
|
45
46
|
export declare function getIssuesCommand(): Promise<Command | undefined>;
|
|
47
|
+
export declare function getRuvectorCommand(): Promise<Command | undefined>;
|
|
46
48
|
/**
|
|
47
49
|
* Core commands loaded synchronously (available immediately)
|
|
48
50
|
* Advanced commands loaded on-demand for faster startup
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/commands/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -50,6 +50,8 @@ const commandLoaders = {
|
|
|
50
50
|
issues: () => import('./issues.js'),
|
|
51
51
|
// Auto-update System (ADR-025)
|
|
52
52
|
update: () => import('./update.js'),
|
|
53
|
+
// RuVector PostgreSQL Bridge
|
|
54
|
+
ruvector: () => import('./ruvector/index.js'),
|
|
53
55
|
};
|
|
54
56
|
// Cache for loaded commands
|
|
55
57
|
const loadedCommands = new Map();
|
|
@@ -100,6 +102,7 @@ import { embeddingsCommand } from './embeddings.js';
|
|
|
100
102
|
import { neuralCommand } from './neural.js';
|
|
101
103
|
import { performanceCommand } from './performance.js';
|
|
102
104
|
import { securityCommand } from './security.js';
|
|
105
|
+
import { ruvectorCommand } from './ruvector/index.js';
|
|
103
106
|
import { hiveMindCommand } from './hive-mind.js';
|
|
104
107
|
// Pre-populate cache with core commands
|
|
105
108
|
loadedCommands.set('init', initCommand);
|
|
@@ -118,6 +121,7 @@ loadedCommands.set('embeddings', embeddingsCommand);
|
|
|
118
121
|
loadedCommands.set('neural', neuralCommand);
|
|
119
122
|
loadedCommands.set('performance', performanceCommand);
|
|
120
123
|
loadedCommands.set('security', securityCommand);
|
|
124
|
+
loadedCommands.set('ruvector', ruvectorCommand);
|
|
121
125
|
loadedCommands.set('hive-mind', hiveMindCommand);
|
|
122
126
|
// =============================================================================
|
|
123
127
|
// Exports (maintain backwards compatibility)
|
|
@@ -139,6 +143,7 @@ export { embeddingsCommand } from './embeddings.js';
|
|
|
139
143
|
export { neuralCommand } from './neural.js';
|
|
140
144
|
export { performanceCommand } from './performance.js';
|
|
141
145
|
export { securityCommand } from './security.js';
|
|
146
|
+
export { ruvectorCommand } from './ruvector/index.js';
|
|
142
147
|
export { hiveMindCommand } from './hive-mind.js';
|
|
143
148
|
// Lazy-loaded command re-exports (for backwards compatibility, but async-only)
|
|
144
149
|
export async function getConfigCommand() { return loadCommand('config'); }
|
|
@@ -161,6 +166,7 @@ export async function getAnalyzeCommand() { return loadCommand('analyze'); }
|
|
|
161
166
|
export async function getRouteCommand() { return loadCommand('route'); }
|
|
162
167
|
export async function getProgressCommand() { return loadCommand('progress'); }
|
|
163
168
|
export async function getIssuesCommand() { return loadCommand('issues'); }
|
|
169
|
+
export async function getRuvectorCommand() { return loadCommand('ruvector'); }
|
|
164
170
|
/**
|
|
165
171
|
* Core commands loaded synchronously (available immediately)
|
|
166
172
|
* Advanced commands loaded on-demand for faster startup
|
|
@@ -183,6 +189,7 @@ export const commands = [
|
|
|
183
189
|
neuralCommand,
|
|
184
190
|
performanceCommand,
|
|
185
191
|
securityCommand,
|
|
192
|
+
ruvectorCommand,
|
|
186
193
|
hiveMindCommand,
|
|
187
194
|
];
|
|
188
195
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/commands/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAUH;;;GAGG;AACH,MAAM,cAAc,GAAkC;IACpD,kDAAkD;IAClD,IAAI,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,WAAW,CAAC;IAC/B,KAAK,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,YAAY,CAAC;IACjC,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;IACnC,IAAI,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,WAAW,CAAC;IAC/B,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,cAAc,CAAC;IACrC,oBAAoB;IACpB,KAAK,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,YAAY,CAAC;IACjC,KAAK,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,YAAY,CAAC;IACjC,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;IACnC,GAAG,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC;IAC7B,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;IACnC,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,cAAc,CAAC;IACrC,KAAK,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,YAAY,CAAC;IACjC,QAAQ,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,eAAe,CAAC;IACvC,WAAW,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,gBAAgB,CAAC;IAC3C,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,cAAc,CAAC;IACrC,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;IACnC,0DAA0D;IAC1D,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;IACnC,QAAQ,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,eAAe,CAAC;IACvC,WAAW,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,kBAAkB,CAAC;IAC7C,SAAS,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,gBAAgB,CAAC;IACzC,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,cAAc,CAAC;IACrC,UAAU,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,iBAAiB,CAAC;IAC3C,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;IACnC,UAAU,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,iBAAiB,CAAC;IAC3C,cAAc;IACd,WAAW,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,kBAAkB,CAAC;IAC7C,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;IACnC,oBAAoB;IACpB,OAAO,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,cAAc,CAAC;IACrC,8BAA8B;IAC9B,KAAK,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,YAAY,CAAC;IACjC,oBAAoB;IACpB,QAAQ,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,eAAe,CAAC;IACvC,kCAAkC;IAClC,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;IACnC,+BAA+B;IAC/B,MAAM,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/commands/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* V3 CLI RuVector Backup Command
|
|
3
|
+
* Backup and restore for RuVector PostgreSQL data
|
|
4
|
+
*/
|
|
5
|
+
import type { Command } from '../../types.js';
|
|
6
|
+
/**
|
|
7
|
+
* RuVector backup main command
|
|
8
|
+
*/
|
|
9
|
+
export declare const backupCommand: Command;
|
|
10
|
+
export default backupCommand;
|
|
11
|
+
//# sourceMappingURL=backup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"backup.d.ts","sourceRoot":"","sources":["../../../../src/commands/ruvector/backup.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAiC,MAAM,gBAAgB,CAAC;AAusB7E;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,OAmF3B,CAAC;AAEF,eAAe,aAAa,CAAC"}
|