mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-13 06:18:31 +00:00
Each web demo builds with its base path under /ai-coding-workflow-labs/, a single deploy workflow assembles them with a root index, and the per-directory workflows from the standalone repos are removed.
32 lines
1.3 KiB
HTML
32 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>AI Coding Workflow Labs</title>
|
|
<style>
|
|
:root { color-scheme: light dark; }
|
|
body { font-family: system-ui, sans-serif; max-width: 42rem; margin: 3rem auto; padding: 0 1rem; line-height: 1.6; }
|
|
h1 { font-size: 1.5rem; }
|
|
li { margin: .5rem 0; }
|
|
.note { opacity: .7; font-size: .9rem; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>AI Coding Workflow Labs</h1>
|
|
<p>Experiments with AI-assisted coding workflows. Each entry was a standalone
|
|
repository, merged here with full history.</p>
|
|
<ul>
|
|
<li><a href="./claudekit/">claudekit</a> — trying the ClaudeKit workflow</li>
|
|
<li><a href="./superpowers/">superpowers</a> — trying the Superpowers skill set</li>
|
|
<li><a href="./bmad/">bmad</a> — trying the BMAD method</li>
|
|
<li><a href="./oh-my-claudecode/">oh-my-claudecode</a> — trying oh-my-claudecode</li>
|
|
<li><a href="./gstack/">gstack</a> — trying the gstack starter</li>
|
|
</ul>
|
|
<p class="note">Not deployed here:
|
|
<a href="https://cc4e-course-lilac.vercel.app">cc4e-course</a> (hosted on Vercel) and
|
|
<a href="https://github.com/tiennm99/ai-coding-workflow-labs/tree/main/advanced-claude-workflows">advanced-claude-workflows</a> (notes only).
|
|
</p>
|
|
</body>
|
|
</html>
|