Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
# Database
sessions.db

# Node
node_modules/

# Python
__pycache__/
*.py[cod]
Expand Down
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProductOS</title>
<script defer src="https://cdn.vercel-insights.com/v1/script.js"></script>
<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=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap" rel="stylesheet">
Expand Down Expand Up @@ -855,7 +856,7 @@
.idle-ps { color: var(--muted); }
.idle-arr { color: var(--muted2); }

/* ── Config strip ────────────────────────────────────────────── */
/* ── Config strip ────────────────────────���────────────────────── */
.idle-config-strip {
width: 100%;
margin-top: 28px;
Expand Down Expand Up @@ -2452,7 +2453,7 @@
} catch { toast('Failed to load session'); }
}

// ── Keyboard ─────────────────────────────────────────────────────────────────
// ── Keyboard ──────���───────────────────────────────────────────────────────────
document.getElementById('idea-input').addEventListener('keydown', e => {
if (e.key==='Enter') { e.preventDefault(); startAnalysis(); }
});
Expand Down
58 changes: 58 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "primary",
"version": "1.0.0",
"description": "ProductOS turns a one-line product idea into a full engineering plan in under two minutes. Four AI agents run in sequence, each building on the previous one's output, streamed live to the browser.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mugeshgithub/ProductOS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mugeshgithub/ProductOS/issues"
},
"homepage": "https://github.com/Mugeshgithub/ProductOS#readme",
"dependencies": {
"@vercel/analytics": "^2.0.1"
}
}