Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI Project HQ

A single-file productivity dashboard for tracking AI projects, session logs, and feature backlogs — with a Claude-powered "Suggest Next Feature" button.

![Dark mode dashboard with projects, session log, backlog, and AI suggest panel]

Features

  • Projects — track name, status (Active / Paused / Planning / Done), and notes
  • Session Log — daily entries for what you built and what's next
  • Feature Backlog — per-project feature list with priority and status
  • AI Suggest — Claude analyzes your project state and recommends what to build next; one click saves the recommendation to your backlog

Data is stored in localStorage — nothing leaves your browser except the AI suggest call, which goes through the local proxy server.

Setup

1. Install dependencies

npm install

2. Add your Anthropic API key

Create a .env file in the project root (or edit the one that's there):

ANTHROPIC_API_KEY=sk-ant-...your-key-here...

Get a key at console.anthropic.com → API Keys → Create Key. You only see the full key once, so copy it immediately.

3. Start the server

npm start

You should see:

AI Project HQ running at http://localhost:3001/dashboard.html

4. Open the dashboard

Open http://localhost:3001/dashboard.html in your browser.

You need to run npm start each time you want to use the AI Suggest feature. The rest of the dashboard works fine as a plain HTML file, but the AI button requires the local proxy server to be running.

Project structure

dashboard.html   — the entire frontend (vanilla HTML/CSS/JS)
server.js        — minimal Express proxy that forwards AI requests to Anthropic
.env             — your API key (never committed)
package.json     — dependencies (express, dotenv)

Tech

  • Vanilla HTML/CSS/JS, no frameworks
  • localStorage for persistence
  • Node.js + Express proxy server
  • Anthropic API (claude-sonnet-4-6)

About

AI project dashboard — track builds, log sessions, manage feature backlogs, and get Claude-powered suggestions on what to build next.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages