claude-flow 3.7.0-alpha.69 → 3.7.0-alpha.70
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/.claude/agents/github/code-review-swarm.md +1 -1
- package/.claude/scheduled_tasks.lock +1 -0
- package/.claude/worktrees/adr-120-impl/v3/@claude-flow/cli/dist/src/commands/index.d.ts +26 -26
- package/.claude/worktrees/adr-120-impl/v3/@claude-flow/cli/dist/src/prompt.d.ts +3 -3
- package/.claude/worktrees/adr-120-impl/v3/@claude-flow/cli/dist/tsconfig.tsbuildinfo +1 -1
- package/.claude-plugin/marketplace.json +5 -0
- package/README.md +0 -9
- package/package.json +11 -4
- package/v3/@claude-flow/cli/README.md +0 -9
- package/v3/@claude-flow/cli/dist/src/commands/benchmark.js +0 -7
- package/v3/@claude-flow/cli/dist/src/init/claudemd-generator.js +28 -53
- package/v3/@claude-flow/cli/dist/src/mcp-tools/embeddings-tools.js +0 -797
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.d.ts +0 -7
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.js +4 -185
- package/v3/@claude-flow/cli/dist/src/mcp-tools/memory-tools.js +16 -58
- package/v3/@claude-flow/cli/dist/src/plugins/store/discovery.d.ts +9 -1
- package/v3/@claude-flow/cli/dist/src/plugins/store/discovery.js +29 -10
- package/v3/@claude-flow/cli/package.json +5 -6
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: code-review-swarm
|
|
3
3
|
description: |
|
|
4
4
|
Deploy specialized AI agents to perform comprehensive, intelligent code reviews that go beyond traditional static analysis
|
|
5
|
-
tools: mcp__claude-flow__swarm_init, mcp__claude-flow__agent_spawn, mcp__claude-flow__task_orchestrate,
|
|
5
|
+
tools: mcp__claude-flow__swarm_init, mcp__claude-flow__agent_spawn, mcp__claude-flow__task_orchestrate, Bash, Read, Write, TodoWrite
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# Code Review Swarm - Automated Code Review with AI Agents
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"sessionId":"fd9b0530-a395-4da0-9b21-a26731cef01f","pid":91923,"procStart":"Mon May 11 02:12:51 2026","acquiredAt":1778466450635}
|
|
@@ -19,31 +19,31 @@ export { swarmCommand } from './swarm.js';
|
|
|
19
19
|
export { memoryCommand } from './memory.js';
|
|
20
20
|
export { mcpCommand } from './mcp.js';
|
|
21
21
|
export { hooksCommand } from './hooks.js';
|
|
22
|
-
export declare function getConfigCommand(): Promise<
|
|
23
|
-
export declare function getMigrateCommand(): Promise<
|
|
24
|
-
export declare function getWorkflowCommand(): Promise<
|
|
25
|
-
export declare function getHiveMindCommand(): Promise<
|
|
26
|
-
export declare function getProcessCommand(): Promise<
|
|
27
|
-
export declare function getTaskCommand(): Promise<
|
|
28
|
-
export declare function getSessionCommand(): Promise<
|
|
29
|
-
export declare function getNeuralCommand(): Promise<
|
|
30
|
-
export declare function getSecurityCommand(): Promise<
|
|
31
|
-
export declare function getPerformanceCommand(): Promise<
|
|
32
|
-
export declare function getProvidersCommand(): Promise<
|
|
33
|
-
export declare function getPluginsCommand(): Promise<
|
|
34
|
-
export declare function getDeploymentCommand(): Promise<
|
|
35
|
-
export declare function getClaimsCommand(): Promise<
|
|
36
|
-
export declare function getEmbeddingsCommand(): Promise<
|
|
37
|
-
export declare function getCompletionsCommand(): Promise<
|
|
38
|
-
export declare function getAnalyzeCommand(): Promise<
|
|
39
|
-
export declare function getRouteCommand(): Promise<
|
|
40
|
-
export declare function getProgressCommand(): Promise<
|
|
41
|
-
export declare function getIssuesCommand(): Promise<
|
|
42
|
-
export declare function getRuvectorCommand(): Promise<
|
|
43
|
-
export declare function getGuidanceCommand(): Promise<
|
|
44
|
-
export declare function getApplianceCommand(): Promise<
|
|
45
|
-
export declare function getCleanupCommand(): Promise<
|
|
46
|
-
export declare function getAutopilotCommand(): Promise<
|
|
22
|
+
export declare function getConfigCommand(): Promise<Command | undefined>;
|
|
23
|
+
export declare function getMigrateCommand(): Promise<Command | undefined>;
|
|
24
|
+
export declare function getWorkflowCommand(): Promise<Command | undefined>;
|
|
25
|
+
export declare function getHiveMindCommand(): Promise<Command | undefined>;
|
|
26
|
+
export declare function getProcessCommand(): Promise<Command | undefined>;
|
|
27
|
+
export declare function getTaskCommand(): Promise<Command | undefined>;
|
|
28
|
+
export declare function getSessionCommand(): Promise<Command | undefined>;
|
|
29
|
+
export declare function getNeuralCommand(): Promise<Command | undefined>;
|
|
30
|
+
export declare function getSecurityCommand(): Promise<Command | undefined>;
|
|
31
|
+
export declare function getPerformanceCommand(): Promise<Command | undefined>;
|
|
32
|
+
export declare function getProvidersCommand(): Promise<Command | undefined>;
|
|
33
|
+
export declare function getPluginsCommand(): Promise<Command | undefined>;
|
|
34
|
+
export declare function getDeploymentCommand(): Promise<Command | undefined>;
|
|
35
|
+
export declare function getClaimsCommand(): Promise<Command | undefined>;
|
|
36
|
+
export declare function getEmbeddingsCommand(): Promise<Command | undefined>;
|
|
37
|
+
export declare function getCompletionsCommand(): Promise<Command | undefined>;
|
|
38
|
+
export declare function getAnalyzeCommand(): Promise<Command | undefined>;
|
|
39
|
+
export declare function getRouteCommand(): Promise<Command | undefined>;
|
|
40
|
+
export declare function getProgressCommand(): Promise<Command | undefined>;
|
|
41
|
+
export declare function getIssuesCommand(): Promise<Command | undefined>;
|
|
42
|
+
export declare function getRuvectorCommand(): Promise<Command | undefined>;
|
|
43
|
+
export declare function getGuidanceCommand(): Promise<Command | undefined>;
|
|
44
|
+
export declare function getApplianceCommand(): Promise<Command | undefined>;
|
|
45
|
+
export declare function getCleanupCommand(): Promise<Command | undefined>;
|
|
46
|
+
export declare function getAutopilotCommand(): Promise<Command | undefined>;
|
|
47
47
|
/**
|
|
48
48
|
* Core commands loaded synchronously (available immediately)
|
|
49
49
|
* Advanced commands loaded on-demand for faster startup
|
|
@@ -54,7 +54,7 @@ export declare const commands: Command[];
|
|
|
54
54
|
* @deprecated Use getCommandsByCategory() for full categorized listing.
|
|
55
55
|
*/
|
|
56
56
|
export declare const commandsByCategory: {
|
|
57
|
-
primary:
|
|
57
|
+
primary: Command[];
|
|
58
58
|
advanced: Command[];
|
|
59
59
|
utility: Command[];
|
|
60
60
|
analysis: Command[];
|
|
@@ -27,10 +27,10 @@ declare class PromptManager {
|
|
|
27
27
|
}): Promise<T>;
|
|
28
28
|
}
|
|
29
29
|
export declare const promptManager: PromptManager;
|
|
30
|
-
export declare const select: <T = string>(options: SelectPromptOptions<T>) => Promise<
|
|
30
|
+
export declare const select: <T = string>(options: SelectPromptOptions<T>) => Promise<T>;
|
|
31
31
|
export declare const confirm: (options: ConfirmPromptOptions) => Promise<boolean>;
|
|
32
32
|
export declare const input: (options: InputPromptOptions) => Promise<string>;
|
|
33
|
-
export declare const multiSelect: <T = string>(options: MultiSelectPromptOptions<T>) => Promise<
|
|
33
|
+
export declare const multiSelect: <T = string>(options: MultiSelectPromptOptions<T>) => Promise<T[]>;
|
|
34
34
|
export declare const text: (message: string, placeholder?: string) => Promise<string>;
|
|
35
35
|
export declare const number: (message: string, options?: {
|
|
36
36
|
default?: number;
|
|
@@ -39,6 +39,6 @@ export declare const number: (message: string, options?: {
|
|
|
39
39
|
}) => Promise<number>;
|
|
40
40
|
export declare const autocomplete: <T = string>(message: string, choices: SelectOption<T>[], options?: {
|
|
41
41
|
limit?: number;
|
|
42
|
-
}) => Promise<
|
|
42
|
+
}) => Promise<T>;
|
|
43
43
|
export {};
|
|
44
44
|
//# sourceMappingURL=prompt.d.ts.map
|