mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-04-01 18:30:35 +02:00
- Add ActivityLogger interface wrapping Temporal's Context.current().log - Thread logger parameter through claude-executor, message-handlers, git-manager, prompt-manager, reporting, and agent validators - Remove chalk dependency from all service/activity files; CLI files keep console.log for terminal output - Replace colorFn: ChalkInstance parameter with structured logger.info/warn/error calls - Use replay-safe `log` import from @temporalio/workflow in workflows.ts
385 lines
13 KiB
JavaScript
385 lines
13 KiB
JavaScript
#!/usr/bin/env node
|
|
// Copyright (C) 2025 Keygraph, Inc.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License version 3
|
|
// as published by the Free Software Foundation.
|
|
|
|
/**
|
|
* Temporal client for starting Shannon pentest pipeline workflows.
|
|
*
|
|
* Starts a workflow and optionally waits for completion with progress polling.
|
|
*
|
|
* Usage:
|
|
* npm run temporal:start -- <webUrl> <repoPath> [options]
|
|
* # or
|
|
* node dist/temporal/client.js <webUrl> <repoPath> [options]
|
|
*
|
|
* Options:
|
|
* --config <path> Configuration file path
|
|
* --output <path> Output directory for audit logs
|
|
* --pipeline-testing Use minimal prompts for fast testing
|
|
* --workflow-id <id> Custom workflow ID (default: shannon-<timestamp>)
|
|
* --wait Wait for workflow completion with progress polling
|
|
*
|
|
* Environment:
|
|
* TEMPORAL_ADDRESS - Temporal server address (default: localhost:7233)
|
|
*/
|
|
|
|
import { Connection, Client, WorkflowNotFoundError } from '@temporalio/client';
|
|
import dotenv from 'dotenv';
|
|
import { displaySplashScreen } from '../splash-screen.js';
|
|
import { sanitizeHostname } from '../audit/utils.js';
|
|
import { readJson, fileExists } from '../audit/utils.js';
|
|
import path from 'path';
|
|
// Import types only - these don't pull in workflow runtime code
|
|
import type { PipelineInput, PipelineState, PipelineProgress } from './shared.js';
|
|
|
|
/**
|
|
* Session.json structure for resume validation
|
|
*/
|
|
interface SessionJson {
|
|
session: {
|
|
id: string;
|
|
webUrl: string;
|
|
originalWorkflowId?: string;
|
|
resumeAttempts?: Array<{ workflowId: string }>;
|
|
};
|
|
metrics: {
|
|
total_cost_usd: number;
|
|
};
|
|
}
|
|
|
|
dotenv.config();
|
|
|
|
// Query name must match the one defined in workflows.ts
|
|
const PROGRESS_QUERY = 'getProgress';
|
|
|
|
/**
|
|
* Terminate any running workflows associated with a workspace.
|
|
* Returns the list of terminated workflow IDs.
|
|
*/
|
|
async function terminateExistingWorkflows(
|
|
client: Client,
|
|
workspaceName: string
|
|
): Promise<string[]> {
|
|
const sessionPath = path.join('./audit-logs', workspaceName, 'session.json');
|
|
|
|
if (!(await fileExists(sessionPath))) {
|
|
throw new Error(
|
|
`Workspace not found: ${workspaceName}\n` +
|
|
`Expected path: ${sessionPath}`
|
|
);
|
|
}
|
|
|
|
const session = await readJson<SessionJson>(sessionPath);
|
|
|
|
// Collect all workflow IDs associated with this workspace
|
|
const workflowIds = [
|
|
session.session.originalWorkflowId || session.session.id,
|
|
...(session.session.resumeAttempts?.map((r) => r.workflowId) || []),
|
|
].filter((id): id is string => id != null);
|
|
|
|
const terminated: string[] = [];
|
|
|
|
for (const wfId of workflowIds) {
|
|
try {
|
|
const handle = client.workflow.getHandle(wfId);
|
|
const description = await handle.describe();
|
|
|
|
if (description.status.name === 'RUNNING') {
|
|
console.log(`Terminating running workflow: ${wfId}`);
|
|
await handle.terminate('Superseded by resume workflow');
|
|
terminated.push(wfId);
|
|
console.log(`Terminated: ${wfId}`);
|
|
} else {
|
|
console.log(`Workflow already ${description.status.name}: ${wfId}`);
|
|
}
|
|
} catch (error) {
|
|
if (error instanceof WorkflowNotFoundError) {
|
|
console.log(`Workflow not found (already cleaned up): ${wfId}`);
|
|
} else {
|
|
console.log(`Failed to terminate ${wfId}: ${error}`);
|
|
// Continue anyway - don't block resume on termination failure
|
|
}
|
|
}
|
|
}
|
|
|
|
return terminated;
|
|
}
|
|
|
|
/**
|
|
* Validate workspace name: alphanumeric, hyphens, underscores, 1-128 chars,
|
|
* must start with alphanumeric.
|
|
*/
|
|
function isValidWorkspaceName(name: string): boolean {
|
|
return /^[a-zA-Z0-9][a-zA-Z0-9_-]{0,127}$/.test(name);
|
|
}
|
|
|
|
function showUsage(): void {
|
|
console.log('\nShannon Temporal Client');
|
|
console.log('Start a pentest pipeline workflow\n');
|
|
console.log('Usage:');
|
|
console.log(
|
|
' node dist/temporal/client.js <webUrl> <repoPath> [options]\n'
|
|
);
|
|
console.log('Options:');
|
|
console.log(' --config <path> Configuration file path');
|
|
console.log(' --output <path> Output directory for audit logs');
|
|
console.log(' --pipeline-testing Use minimal prompts for fast testing');
|
|
console.log(' --workspace <name> Resume from existing workspace');
|
|
console.log(
|
|
' --workflow-id <id> Custom workflow ID (default: shannon-<timestamp>)'
|
|
);
|
|
console.log(' --wait Wait for workflow completion with progress polling\n');
|
|
console.log('Examples:');
|
|
console.log(' node dist/temporal/client.js https://example.com /path/to/repo');
|
|
console.log(
|
|
' node dist/temporal/client.js https://example.com /path/to/repo --config config.yaml\n'
|
|
);
|
|
}
|
|
|
|
async function startPipeline(): Promise<void> {
|
|
const args = process.argv.slice(2);
|
|
|
|
if (args.includes('--help') || args.includes('-h') || args.length === 0) {
|
|
showUsage();
|
|
process.exit(0);
|
|
}
|
|
|
|
// Parse arguments
|
|
let webUrl: string | undefined;
|
|
let repoPath: string | undefined;
|
|
let configPath: string | undefined;
|
|
let outputPath: string | undefined;
|
|
let displayOutputPath: string | undefined; // Host path for display purposes
|
|
let pipelineTestingMode = false;
|
|
let customWorkflowId: string | undefined;
|
|
let waitForCompletion = false;
|
|
let resumeFromWorkspace: string | undefined;
|
|
|
|
for (let i = 0; i < args.length; i++) {
|
|
const arg = args[i];
|
|
if (arg === '--config') {
|
|
const nextArg = args[i + 1];
|
|
if (nextArg && !nextArg.startsWith('-')) {
|
|
configPath = nextArg;
|
|
i++;
|
|
}
|
|
} else if (arg === '--output') {
|
|
const nextArg = args[i + 1];
|
|
if (nextArg && !nextArg.startsWith('-')) {
|
|
outputPath = nextArg;
|
|
i++;
|
|
}
|
|
} else if (arg === '--display-output') {
|
|
const nextArg = args[i + 1];
|
|
if (nextArg && !nextArg.startsWith('-')) {
|
|
displayOutputPath = nextArg;
|
|
i++;
|
|
}
|
|
} else if (arg === '--workflow-id') {
|
|
const nextArg = args[i + 1];
|
|
if (nextArg && !nextArg.startsWith('-')) {
|
|
customWorkflowId = nextArg;
|
|
i++;
|
|
}
|
|
} else if (arg === '--pipeline-testing') {
|
|
pipelineTestingMode = true;
|
|
} else if (arg === '--workspace') {
|
|
const nextArg = args[i + 1];
|
|
if (nextArg && !nextArg.startsWith('-')) {
|
|
resumeFromWorkspace = nextArg;
|
|
i++;
|
|
}
|
|
} else if (arg === '--wait') {
|
|
waitForCompletion = true;
|
|
} else if (arg && !arg.startsWith('-')) {
|
|
if (!webUrl) {
|
|
webUrl = arg;
|
|
} else if (!repoPath) {
|
|
repoPath = arg;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!webUrl || !repoPath) {
|
|
console.log('Error: webUrl and repoPath are required');
|
|
showUsage();
|
|
process.exit(1);
|
|
}
|
|
|
|
// Display splash screen
|
|
await displaySplashScreen();
|
|
|
|
const address = process.env.TEMPORAL_ADDRESS || 'localhost:7233';
|
|
console.log(`Connecting to Temporal at ${address}...`);
|
|
|
|
const connection = await Connection.connect({ address });
|
|
const client = new Client({ connection });
|
|
|
|
try {
|
|
let terminatedWorkflows: string[] = [];
|
|
let workflowId: string;
|
|
let sessionId: string; // Workspace name (persistent directory)
|
|
let isResume = false;
|
|
|
|
if (resumeFromWorkspace) {
|
|
const sessionPath = path.join('./audit-logs', resumeFromWorkspace, 'session.json');
|
|
const workspaceExists = await fileExists(sessionPath);
|
|
|
|
if (workspaceExists) {
|
|
// === Resume Mode: existing workspace ===
|
|
isResume = true;
|
|
console.log('=== RESUME MODE ===');
|
|
console.log(`Workspace: ${resumeFromWorkspace}\n`);
|
|
|
|
// Terminate any running workflows for this workspace
|
|
terminatedWorkflows = await terminateExistingWorkflows(client, resumeFromWorkspace);
|
|
|
|
if (terminatedWorkflows.length > 0) {
|
|
console.log(`Terminated ${terminatedWorkflows.length} previous workflow(s)\n`);
|
|
}
|
|
|
|
// Validate URL matches workspace
|
|
const session = await readJson<SessionJson>(sessionPath);
|
|
|
|
if (session.session.webUrl !== webUrl) {
|
|
console.error('ERROR: URL mismatch with workspace');
|
|
console.error(` Workspace URL: ${session.session.webUrl}`);
|
|
console.error(` Provided URL: ${webUrl}`);
|
|
process.exit(1);
|
|
}
|
|
|
|
// Generate resume workflow ID
|
|
workflowId = `${resumeFromWorkspace}_resume_${Date.now()}`;
|
|
sessionId = resumeFromWorkspace;
|
|
} else {
|
|
// === New Named Workspace ===
|
|
if (!isValidWorkspaceName(resumeFromWorkspace)) {
|
|
console.error(`ERROR: Invalid workspace name: "${resumeFromWorkspace}"`);
|
|
console.error(' Must be 1-128 characters, alphanumeric/hyphens/underscores, starting with alphanumeric');
|
|
process.exit(1);
|
|
}
|
|
|
|
console.log('=== NEW NAMED WORKSPACE ===');
|
|
console.log(`Workspace: ${resumeFromWorkspace}\n`);
|
|
|
|
workflowId = `${resumeFromWorkspace}_shannon-${Date.now()}`;
|
|
sessionId = resumeFromWorkspace;
|
|
}
|
|
} else {
|
|
// === New Auto-Named Workflow ===
|
|
const hostname = sanitizeHostname(webUrl);
|
|
workflowId = customWorkflowId || `${hostname}_shannon-${Date.now()}`;
|
|
sessionId = workflowId;
|
|
}
|
|
|
|
const input: PipelineInput = {
|
|
webUrl,
|
|
repoPath,
|
|
workflowId, // Add for audit correlation
|
|
sessionId, // Workspace directory name
|
|
...(configPath && { configPath }),
|
|
...(outputPath && { outputPath }),
|
|
...(pipelineTestingMode && { pipelineTestingMode }),
|
|
...(isResume && resumeFromWorkspace && { resumeFromWorkspace }),
|
|
...(terminatedWorkflows.length > 0 && { terminatedWorkflows }),
|
|
};
|
|
|
|
// Determine output directory for display (use sessionId for persistent directory)
|
|
// Use displayOutputPath (host path) if provided, otherwise fall back to outputPath or default
|
|
const effectiveDisplayPath = displayOutputPath || outputPath || './audit-logs';
|
|
const outputDir = `${effectiveDisplayPath}/${sessionId}`;
|
|
|
|
console.log(`✓ Workflow started: ${workflowId}`);
|
|
if (isResume) {
|
|
console.log(` (Resuming workspace: ${sessionId})`);
|
|
}
|
|
console.log();
|
|
console.log(` Target: ${webUrl}`);
|
|
console.log(` Repository: ${repoPath}`);
|
|
console.log(` Workspace: ${sessionId}`);
|
|
if (configPath) {
|
|
console.log(` Config: ${configPath}`);
|
|
}
|
|
if (displayOutputPath) {
|
|
console.log(` Output: ${displayOutputPath}`);
|
|
}
|
|
if (pipelineTestingMode) {
|
|
console.log(` Mode: Pipeline Testing`);
|
|
}
|
|
console.log();
|
|
|
|
// Start workflow by name (not by importing the function)
|
|
const handle = await client.workflow.start<(input: PipelineInput) => Promise<PipelineState>>(
|
|
'pentestPipelineWorkflow',
|
|
{
|
|
taskQueue: 'shannon-pipeline',
|
|
workflowId,
|
|
args: [input],
|
|
}
|
|
);
|
|
|
|
if (!waitForCompletion) {
|
|
console.log('Monitor progress:');
|
|
console.log(` Web UI: http://localhost:8233/namespaces/default/workflows/${workflowId}`);
|
|
console.log(` Logs: ./shannon logs ID=${workflowId}`);
|
|
console.log();
|
|
console.log('Output:');
|
|
console.log(` Reports: ${outputDir}`);
|
|
console.log();
|
|
return;
|
|
}
|
|
|
|
// Poll for progress every 30 seconds
|
|
const progressInterval = setInterval(async () => {
|
|
try {
|
|
const progress = await handle.query<PipelineProgress>(PROGRESS_QUERY);
|
|
const elapsed = Math.floor(progress.elapsedMs / 1000);
|
|
console.log(
|
|
`[${elapsed}s] Phase: ${progress.currentPhase || 'unknown'} | Agent: ${progress.currentAgent || 'none'} | Completed: ${progress.completedAgents.length}/13`
|
|
);
|
|
} catch {
|
|
// Workflow may have completed
|
|
}
|
|
}, 30000);
|
|
|
|
try {
|
|
const result = await handle.result();
|
|
clearInterval(progressInterval);
|
|
|
|
console.log('\nPipeline completed successfully!');
|
|
if (result.summary) {
|
|
console.log(`Duration: ${Math.floor(result.summary.totalDurationMs / 1000)}s`);
|
|
console.log(`Agents completed: ${result.summary.agentCount}`);
|
|
console.log(`Total turns: ${result.summary.totalTurns}`);
|
|
console.log(`Run cost: $${result.summary.totalCostUsd.toFixed(4)}`);
|
|
|
|
// Show cumulative cost from session.json (includes all resume attempts)
|
|
if (isResume) {
|
|
try {
|
|
const session = await readJson<SessionJson>(
|
|
path.join('./audit-logs', sessionId, 'session.json')
|
|
);
|
|
console.log(`Cumulative cost: $${session.metrics.total_cost_usd.toFixed(4)}`);
|
|
} catch {
|
|
// Non-fatal, skip cumulative cost display
|
|
}
|
|
}
|
|
}
|
|
} catch (error) {
|
|
clearInterval(progressInterval);
|
|
console.error('\nPipeline failed:', error);
|
|
process.exit(1);
|
|
}
|
|
} finally {
|
|
await connection.close();
|
|
}
|
|
}
|
|
|
|
startPipeline().catch((err) => {
|
|
console.error('Client error:', err);
|
|
process.exit(1);
|
|
});
|