mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-06-30 18:45:34 +02:00
7813baf16a
* feat(auth): reuse preflight's authenticated session across agents * fix(preflight): verify saved auth state parses and has cookies or origins * fix(prompts): strip shared-session block when no auth is configured * fix(shannon): store shared auth state in the per-session audit dir * fix(prompts): write stub auth-state in pipeline-testing preflight * fix(preflight): clear stale auth-state.json before validate-authentication * fix(preflight): drop auth-state.json on workflow completion * docs(claude): refresh auth-state.json description for new layout and cleanup * refactor(prompts): drop unused PLAYWRIGHT_SESSION resolve in login instructions * style(prompts): collapse verifySavedAuthState signature per biome * refactor(prompts): require AUTH_STATE_FILE on authenticated runs * style(prompts): trim numbered-step comments back to step headers
108 lines
3.5 KiB
TypeScript
108 lines
3.5 KiB
TypeScript
// 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.
|
|
|
|
/**
|
|
* Audit System Utilities
|
|
*
|
|
* Core utility functions for path generation, atomic writes, and formatting.
|
|
* All functions are pure and crash-safe.
|
|
*/
|
|
|
|
import path from 'node:path';
|
|
import { WORKSPACES_DIR } from '../paths.js';
|
|
import { ensureDirectory } from '../utils/file-io.js';
|
|
|
|
export type { SessionMetadata } from '../types/audit.js';
|
|
|
|
import type { SessionMetadata } from '../types/audit.js';
|
|
|
|
/**
|
|
* Extract and sanitize hostname from URL for use in identifiers
|
|
*/
|
|
export function sanitizeHostname(url: string): string {
|
|
return new URL(url).hostname.replace(/[^a-zA-Z0-9-]/g, '-');
|
|
}
|
|
|
|
/**
|
|
* Generate standardized session identifier from workflow ID
|
|
* Workflow IDs already contain hostname, so we use them directly
|
|
*/
|
|
export function generateSessionIdentifier(sessionMetadata: SessionMetadata): string {
|
|
return sessionMetadata.id;
|
|
}
|
|
|
|
/**
|
|
* Generate path to audit log directory for a session
|
|
* Uses custom outputPath if provided, otherwise defaults to WORKSPACES_DIR
|
|
*/
|
|
export function generateAuditPath(sessionMetadata: SessionMetadata): string {
|
|
const sessionIdentifier = generateSessionIdentifier(sessionMetadata);
|
|
const baseDir = sessionMetadata.outputPath || WORKSPACES_DIR;
|
|
return path.join(baseDir, sessionIdentifier);
|
|
}
|
|
|
|
/**
|
|
* Generate path to agent log file
|
|
*/
|
|
export function generateLogPath(
|
|
sessionMetadata: SessionMetadata,
|
|
agentName: string,
|
|
timestamp: number,
|
|
attemptNumber: number,
|
|
): string {
|
|
const auditPath = generateAuditPath(sessionMetadata);
|
|
const filename = `${timestamp}_${agentName}_attempt-${attemptNumber}.log`;
|
|
return path.join(auditPath, 'agents', filename);
|
|
}
|
|
|
|
/**
|
|
* Generate path to prompt snapshot file
|
|
*/
|
|
export function generatePromptPath(sessionMetadata: SessionMetadata, agentName: string): string {
|
|
const auditPath = generateAuditPath(sessionMetadata);
|
|
return path.join(auditPath, 'prompts', `${agentName}.md`);
|
|
}
|
|
|
|
/**
|
|
* Generate path to session.json file
|
|
*/
|
|
export function generateSessionJsonPath(sessionMetadata: SessionMetadata): string {
|
|
const auditPath = generateAuditPath(sessionMetadata);
|
|
return path.join(auditPath, 'session.json');
|
|
}
|
|
|
|
/**
|
|
* Path to the shared authenticated browser session saved by the preflight
|
|
* validator and consumed by downstream agents via `_shared-session.txt`.
|
|
*/
|
|
export function authStateFile(sessionMetadata: SessionMetadata): string {
|
|
return path.join(generateAuditPath(sessionMetadata), 'auth-state.json');
|
|
}
|
|
|
|
/**
|
|
* Generate path to workflow.log file
|
|
*/
|
|
export function generateWorkflowLogPath(sessionMetadata: SessionMetadata): string {
|
|
const auditPath = generateAuditPath(sessionMetadata);
|
|
return path.join(auditPath, 'workflow.log');
|
|
}
|
|
|
|
/**
|
|
* Initialize audit directory structure for a session
|
|
* Creates: workspaces/{sessionId}/, agents/, prompts/, deliverables/
|
|
*/
|
|
export async function initializeAuditStructure(sessionMetadata: SessionMetadata): Promise<void> {
|
|
const auditPath = generateAuditPath(sessionMetadata);
|
|
const agentsPath = path.join(auditPath, 'agents');
|
|
const promptsPath = path.join(auditPath, 'prompts');
|
|
const deliverablesPath = path.join(auditPath, 'deliverables');
|
|
|
|
await ensureDirectory(auditPath);
|
|
await ensureDirectory(agentsPath);
|
|
await ensureDirectory(promptsPath);
|
|
await ensureDirectory(deliverablesPath);
|
|
}
|