moflo 4.8.47 → 4.8.49
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 +11 -0
- package/bin/gate.cjs +19 -4
- package/package.json +2 -3
- package/src/@claude-flow/cli/dist/src/commands/plugins.js +0 -1
- package/src/@claude-flow/cli/dist/src/init/claudemd-generator.js +45 -45
- package/src/@claude-flow/cli/dist/src/init/moflo-init.js +764 -764
- package/src/@claude-flow/cli/dist/src/plugins/store/discovery.js +0 -30
- package/src/@claude-flow/cli/dist/src/version.js +1 -1
- package/src/@claude-flow/cli/package.json +1 -1
|
@@ -367,35 +367,6 @@ export class PluginDiscoveryService {
|
|
|
367
367
|
verified: true,
|
|
368
368
|
trustLevel: 'official',
|
|
369
369
|
},
|
|
370
|
-
{
|
|
371
|
-
id: '@claude-flow/performance',
|
|
372
|
-
name: '@claude-flow/performance',
|
|
373
|
-
displayName: 'Performance Profiler',
|
|
374
|
-
description: 'Performance profiling, benchmarking, and optimization recommendations',
|
|
375
|
-
version: '3.0.0',
|
|
376
|
-
cid: 'bafybeiperformanceplugin',
|
|
377
|
-
size: 145000,
|
|
378
|
-
checksum: 'sha256:mno345performance',
|
|
379
|
-
author: officialAuthor,
|
|
380
|
-
license: 'MIT',
|
|
381
|
-
categories: ['devops'],
|
|
382
|
-
tags: ['performance', 'profiling', 'benchmarks', 'optimization'],
|
|
383
|
-
keywords: ['performance', 'profiler'],
|
|
384
|
-
downloads: 7800,
|
|
385
|
-
rating: 4.8,
|
|
386
|
-
ratingCount: 134,
|
|
387
|
-
lastUpdated: baseTime,
|
|
388
|
-
createdAt: '2024-03-01T00:00:00Z',
|
|
389
|
-
minClaudeFlowVersion: '3.0.0',
|
|
390
|
-
dependencies: [{ name: '@claude-flow/core', version: '^3.0.0' }],
|
|
391
|
-
type: 'command',
|
|
392
|
-
hooks: ['performance:start', 'performance:stop'],
|
|
393
|
-
commands: ['performance benchmark', 'performance profile', 'performance metrics'],
|
|
394
|
-
permissions: ['memory'],
|
|
395
|
-
exports: ['PerformanceProfiler', 'Benchmarker'],
|
|
396
|
-
verified: true,
|
|
397
|
-
trustLevel: 'official',
|
|
398
|
-
},
|
|
399
370
|
{
|
|
400
371
|
id: 'community-analytics',
|
|
401
372
|
name: 'community-analytics',
|
|
@@ -838,7 +809,6 @@ export class PluginDiscoveryService {
|
|
|
838
809
|
'@claude-flow/plugins',
|
|
839
810
|
'@claude-flow/embeddings',
|
|
840
811
|
'@claude-flow/neural',
|
|
841
|
-
'@claude-flow/performance',
|
|
842
812
|
// Domain-specific plugins
|
|
843
813
|
'@claude-flow/plugin-healthcare-clinical',
|
|
844
814
|
'@claude-flow/plugin-financial-risk',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moflo/cli",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.49",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MoFlo CLI — AI agent orchestration with specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
|
|
6
6
|
"main": "dist/src/index.js",
|