-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconductor.html
More file actions
78 lines (69 loc) · 3.82 KB
/
conductor.html
File metadata and controls
78 lines (69 loc) · 3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conductor — Code Katz</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Lora:ital,wght@0,400;0,500;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="nav">
<a href="index.html" class="nav-logo">
<img src="https://github.com/code-katz/.github/blob/main/media/logos/flavicon.png?raw=true" alt="Code Katz" class="nav-logo-img">
<span class="nav-brand">Code Katz</span>
</a>
<div class="nav-links">
<a href="index.html" class="nav-link">Home</a>
<a href="tools.html" class="nav-link">Tools</a>
<a href="docs.html" class="nav-link">Get Started</a>
<a href="https://github.com/code-katz" class="nav-link nav-gh" target="_blank" rel="noopener">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"/></svg>
</a>
</div>
</nav>
<section class="project-banner" style="--accent: #d4a843;">
<div class="project-banner-inner">
<div class="project-banner-name">claude-<span class="accent">conductor</span></div>
<div class="project-banner-tagline">Coordinate parallel Claude Code sessions</div>
<hr class="project-banner-rule">
</div>
</section>
<section class="project-body">
<h2>Mission control for Claude Code sessions.</h2>
<p>When you're running 6+ Claude Code sessions simultaneously, the hardest part isn't the coding — it's knowing what each session is doing. Conductor gives you a bird's-eye view with real-time monitoring, token tracking, and session orchestration so you never lose track of your parallel workstreams.</p>
<div class="project-prompt">
<div class="project-prompt-label">Example prompt</div>
<div class="code-block">
<div class="code-header">
<span class="code-lang">terminal</span>
<span class="code-label">Conductor</span>
</div>
<pre><code>conductor status
# See all active sessions, their current tasks,
# token usage, and elapsed time in one view.</code></pre>
</div>
</div>
<div class="project-screenshot">
<div class="project-screenshot-placeholder">
Screenshot coming soon — check the README for a live preview
</div>
</div>
<div class="project-actions">
<a href="https://github.com/code-katz/claude-conductor" class="btn btn-primary" target="_blank" rel="noopener">View on GitHub</a>
<a href="tools.html" class="btn btn-secondary">← All Tools</a>
</div>
</section>
<footer class="footer">
<div class="footer-inner">
<span class="footer-brand">Code Katz</span>
<span class="footer-sep">•</span>
<a href="https://github.com/code-katz" target="_blank" rel="noopener">GitHub</a>
<span class="footer-sep">•</span>
<span>An independent community project</span>
</div>
</footer>
</body>
</html>