Build PI-hub: research dashboard for the eSPUD PI - #1
Merged
Conversation
A Next.js + TypeScript app for managing a Principal Investigator's research practice. Single PI runs many projects, each with its own team, plan, setup, log, artifacts, and target venues. Features: - PI profile (identity, contact, online profiles, focus areas, expertise, education, publications) - Projects (status, plan, setup, Discord + Overleaf links, contributors, artifacts, append-only exploration log) - First-class team Members with avatars, role, expertise, and per-project assignment toggles - Call-for-paper deadline tracking with timeline visualization, live D:HH:MM:SS countdown, and per-assignment assessment status (not started / in progress / submitted / accepted / rejected / late / abandoned) - Dashboard with greeting, breadcrumb path, status overview donut, top-3 upcoming deadlines, activity feed, contributor leaderboard - Global URL-backed search across projects, members, expertise, and CFP topics - Archive instead of delete; /archives page restores or permanently deletes items - One-click PDF report export per project (@react-pdf/renderer) Storage: markdown files under content/ (YAML frontmatter is the source of truth; body is auto-generated). No external database. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Sticky footer inside the shell crediting the builder and tooling. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
- Flat-config ESLint (eslint-config-next/core-web-vitals + typescript) - typecheck script (tsc --noEmit) - GitHub Actions workflow runs lint + typecheck + build on PRs and main - Drop unused Section helper from report.tsx - Use useNow() in Timeline to satisfy react-hooks/purity - Downgrade react-hooks/set-state-in-effect to warn (intentional pattern) - CONTRIBUTING: document the new validation commands and CI Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Suppresses the Node 20 deprecation warning on actions/checkout and actions/setup-node. Node 20 is removed from runners on Sep 16, 2026; Node 24 becomes the default on Jun 2, 2026. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Builds out the PI-hub app from a one-line placeholder into a working Next.js + TypeScript research dashboard for the eSPUD PI. Single PI runs many projects; each project has its own team, plan, setup, log, artifacts, and target venues. All data lives as markdown files under `content/` — no external database.
Features
Stack
Storage model
```
content/
├── pi.md
├── projects/.md
├── members/.md
└── cfps/.md
```
Each file is YAML frontmatter (source of truth) + a generated human-readable markdown body. Relationships live on the parent: project's `memberIds` and `cfpAssignments`. Archived items carry `archivedAt: `; empty means active.
Test plan
🤖 Generated with Claude Code