- New modular pipeline architecture allowing custom workflow combinations
- Per-step LLM provider configuration (Claude, OpenAI, Gemini, Deepseek, Moonshot, Mistral)
- Visual pipeline builder and runner interfaces with drag-and-drop
- 10 predefined pipeline templates (minimal-test to originality-bypass)
- Pipeline CRUD operations via ConfigManager and REST API
- Fix variable resolution in instructions (HTML tags were breaking {{variables}})
- Fix hardcoded LLM providers in AdversarialCore
- Add TESTS_LLM_PROVIDER.md documentation with validation results
- Update dashboard to disable legacy config editor
API Endpoints:
- POST /api/pipeline/save, execute, validate, estimate
- GET /api/pipeline/list, modules, templates
Backward compatible with legacy modular workflow system.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
356 lines
10 KiB
HTML
356 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Pipeline Runner - SEO Generator</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--primary: #667eea;
|
|
--secondary: #764ba2;
|
|
--success: #48bb78;
|
|
--warning: #ed8936;
|
|
--error: #f56565;
|
|
--bg-light: #f7fafc;
|
|
--bg-dark: #1a202c;
|
|
--text-dark: #2d3748;
|
|
--text-light: #a0aec0;
|
|
--border-light: #e2e8f0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
min-height: 100vh;
|
|
color: var(--text-dark);
|
|
padding: 20px;
|
|
}
|
|
|
|
.container { max-width: 1400px; margin: 0 auto; }
|
|
|
|
header {
|
|
background: white;
|
|
border-radius: 10px;
|
|
padding: 20px 30px;
|
|
margin-bottom: 20px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
header h1 { color: var(--text-dark); font-size: 1.8em; }
|
|
|
|
.btn-back {
|
|
background: var(--bg-light);
|
|
color: var(--text-dark);
|
|
padding: 10px 20px;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.btn-back:hover { background: var(--border-light); }
|
|
|
|
.panel {
|
|
background: white;
|
|
border-radius: 10px;
|
|
padding: 25px;
|
|
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.panel h2 {
|
|
color: var(--text-dark);
|
|
margin-bottom: 15px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 2px solid var(--border-light);
|
|
}
|
|
|
|
.form-group { margin-bottom: 20px; }
|
|
|
|
.form-group label {
|
|
display: block;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
.form-group select,
|
|
.form-group input {
|
|
width: 100%;
|
|
padding: 12px;
|
|
border: 2px solid var(--border-light);
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.pipeline-preview {
|
|
background: var(--bg-light);
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.pipeline-summary {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.summary-item {
|
|
background: white;
|
|
padding: 10px;
|
|
border-radius: 6px;
|
|
text-align: center;
|
|
}
|
|
|
|
.summary-label {
|
|
font-size: 11px;
|
|
color: var(--text-light);
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.summary-value {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: var(--primary);
|
|
}
|
|
|
|
.step-list {
|
|
margin-top: 15px;
|
|
padding: 10px;
|
|
background: white;
|
|
border-radius: 6px;
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.step-item {
|
|
padding: 8px 12px;
|
|
margin-bottom: 5px;
|
|
background: var(--bg-light);
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
button {
|
|
padding: 12px 20px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.btn-run {
|
|
background: linear-gradient(135deg, var(--success), #38a169);
|
|
color: white;
|
|
width: 100%;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.btn-run:hover:not(:disabled) {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(72, 187, 120, 0.4);
|
|
}
|
|
|
|
.btn-run:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.progress-bar {
|
|
width: 100%;
|
|
height: 8px;
|
|
background: var(--border-light);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
margin: 15px 0;
|
|
display: none;
|
|
}
|
|
|
|
.progress-fill {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, var(--primary), var(--secondary));
|
|
width: 0%;
|
|
transition: width 0.5s ease;
|
|
}
|
|
|
|
.progress-text {
|
|
color: var(--text-light);
|
|
font-size: 14px;
|
|
margin-top: 10px;
|
|
display: none;
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 15px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.stat-card {
|
|
background: var(--bg-light);
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 12px;
|
|
color: var(--text-light);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: var(--primary);
|
|
}
|
|
|
|
.execution-log {
|
|
background: var(--bg-dark);
|
|
color: #e2e8f0;
|
|
border-radius: 8px;
|
|
padding: 15px;
|
|
font-family: 'Fira Code', monospace;
|
|
font-size: 12px;
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.log-entry {
|
|
margin-bottom: 5px;
|
|
padding: 5px;
|
|
border-left: 3px solid transparent;
|
|
}
|
|
|
|
.log-success { border-left-color: var(--success); color: #68d391; }
|
|
.log-error { border-left-color: var(--error); color: #fc8181; }
|
|
|
|
.status {
|
|
padding: 12px;
|
|
border-radius: 8px;
|
|
margin-bottom: 20px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
display: none;
|
|
}
|
|
|
|
.status.success {
|
|
background: #c6f6d5;
|
|
color: #22543d;
|
|
border: 1px solid #9ae6b4;
|
|
}
|
|
|
|
.status.error {
|
|
background: #fed7d7;
|
|
color: #822727;
|
|
border: 1px solid #f56565;
|
|
}
|
|
|
|
.status.loading {
|
|
background: #bee3f8;
|
|
color: #2b6cb0;
|
|
border: 1px solid #63b3ed;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1>🚀 Pipeline Runner</h1>
|
|
<a href="index.html" class="btn-back">← Retour Accueil</a>
|
|
</header>
|
|
|
|
<div class="status" id="status"></div>
|
|
|
|
<!-- Pipeline Selection -->
|
|
<div class="panel">
|
|
<h2>📂 Sélection Pipeline</h2>
|
|
|
|
<div class="form-group">
|
|
<label for="pipelineSelect">Pipeline à exécuter :</label>
|
|
<select id="pipelineSelect" onchange="loadPipeline()">
|
|
<option value="">-- Sélectionner un pipeline --</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="pipeline-preview" id="pipelinePreview" style="display: none;">
|
|
<h3 style="margin-bottom: 10px; color: var(--text-dark);" id="pipelineName"></h3>
|
|
<p style="font-size: 13px; color: var(--text-light);" id="pipelineDesc"></p>
|
|
|
|
<div class="pipeline-summary">
|
|
<div class="summary-item">
|
|
<div class="summary-label">Étapes</div>
|
|
<div class="summary-value" id="summarySteps">-</div>
|
|
</div>
|
|
<div class="summary-item">
|
|
<div class="summary-label">Durée Estimée</div>
|
|
<div class="summary-value" id="summaryDuration">-</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="step-list" id="stepList"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Execution Settings -->
|
|
<div class="panel">
|
|
<h2>⚙️ Paramètres d'Exécution</h2>
|
|
|
|
<div class="form-group">
|
|
<label for="rowNumber">Ligne Google Sheets :</label>
|
|
<input type="number" id="rowNumber" value="2" min="2" max="1000">
|
|
</div>
|
|
|
|
<button class="btn-run" id="btnRun" onclick="runPipeline()" disabled>
|
|
🚀 Lancer l'Exécution
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Progress Section -->
|
|
<div class="panel" id="progressSection" style="display: none;">
|
|
<h2>⏳ Progression</h2>
|
|
|
|
<div class="progress-bar" id="progressBar">
|
|
<div class="progress-fill" id="progressFill"></div>
|
|
</div>
|
|
|
|
<div class="progress-text" id="progressText"></div>
|
|
</div>
|
|
|
|
<!-- Results Section -->
|
|
<div class="panel" id="resultsSection" style="display: none;">
|
|
<h2>📊 Résultats</h2>
|
|
|
|
<div class="stats-grid">
|
|
<div class="stat-card">
|
|
<div class="stat-label">Durée Totale</div>
|
|
<div class="stat-value" id="statDuration">-</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-label">Étapes Réussies</div>
|
|
<div class="stat-value" id="statSuccessSteps">-</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-label">Personnalité</div>
|
|
<div class="stat-value" id="statPersonality">-</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h3 style="margin-top: 25px; margin-bottom: 10px;">📝 Log d'Exécution</h3>
|
|
<div class="execution-log" id="executionLog"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="pipeline-runner.js"></script>
|
|
</body>
|
|
</html>
|