feat: recruiter-scannable cards + Poimen Memory deep dive page (#14)
CI / CI (push) Successful in 5m52s

## Summary

   Rewrite all portfolio cards for 6-second HR scannability and add a dedicated Poimen Memory deep dive page.

   ## Changes

   ### Timeline Cards (all 6 rewritten)
   - **Poimen (Ποιμήν)** — NEW card. Graph-RAG memory + Temporal workflow pillars
   - **riotpiao.com** — 5 sections: Infrastructure, GitOps, Security, Observability, AI/ML
   - **RBC** — State migration (500+ files, zero corruption), drift detection (3wk → <24hr), 3× velocity
   - **AWS** — Distributed-Map ownership (57+ regions, sub-100ms P99), Redrive Execution launch
   - **Titus** — 97.8% accuracy, 28% P99 improvement, 5× deployment speed
   - **NAV Canada** — ATC weather briefing (ReactJS), Django, SonarQube

   ### Project Cards
   - Reorder: **Poimen Orchestration → Memory → Homelab** → RBC → AWS
   - Homelab: production-grade framing, "Explore the Architecture →"
   - Poimen: etymology intro ("shepherd"), connected narrative across cards
   - All cards use `dangerouslySetInnerHTML` for **bold** framework names

   ### Poimen Memory Page (`/poimen/memory`)
   - Hero: "Teaching the Shepherd to Remember"
   - 🏗️ Architecture diagram — Rust microservice, actix-web, Authentik JWT, pgvector
   - 🔄 Dataflow diagram — episode → entity/fact extraction → temporal graph
   -  Sequence diagram — async ingest lifecycle (202 accepted, background LLM pipeline)
   - Three-tier retrieval cards: signature match (50ms), graph-boosted hybrid, Obsidian fallback
   - Technology stack grid (Rust, pgvector, Ollama, TEI, Authentik, K8s)

   ### CI & Build Fixes
   - API allowlist updated for `riotpiao-poimen/` org repos
   - Commit SHA: `NEXT_PUBLIC_COMMIT_SHA` in Dockerfile + `--build-arg` in CI workflow
   - ExperienceTimeline CI badges wired for Poimen + Homelab repos

   ## Files Changed
   - `lib/translations.json` — all card content (EN + ZH)
   - `app/page.tsx` — project order, deepDive links, ciRepos mapping
   - `app/poimen/memory/page.tsx` — NEW deep dive page
   - `components/ExperienceTimeline.tsx` — Poimen card, HTML rendering, CI badges
   - `app/api/ci-status/route.ts` — allowlist for riotpiao-poimen org
   - `Dockerfile` + `.gitea/workflows/build-push.yml` — SHA fix
   - `public/poimen-memory/` — 3 archify diagrams (architecture, dataflow, sequence)

---------

Co-authored-by:  poimen <[email protected]>
Reviewed-on: #14
This commit was merged in pull request #14.
This commit is contained in:
2026-09-09 23:29:14 +00:00
co-authored by poimen
parent fff4d59e39
commit 4640935993
13 changed files with 45434 additions and 91 deletions
+9 -4
View File
@@ -48,6 +48,7 @@ function CIBadge({ repo, forgejoUrl }: { repo: string; forgejoUrl: string }) {
}
const colors = [
'from-purple-500 to-purple-600',
'from-green-500 to-green-600',
'from-red-500 to-red-600',
'from-orange-500 to-orange-600',
@@ -56,6 +57,7 @@ const colors = [
]
const skills = [
['Temporal', 'Graph-RAG', 'pgvector', 'Rust', 'Go', 'vLLM', 'KServe', 'TEI', 'Kafka', 'OIDC', 'Obsidian'],
['Kubernetes', 'Talos', 'ArgoCD', 'Terraform', 'Authentik', 'Prometheus', 'Grafana', 'vLLM', 'Temporal', 'Kafka', 'PostgreSQL', 'Go'],
['Golang', 'Terraform', 'IaC', 'OpenShift', 'Docker', 'Distributed Systems', 'Grafana'],
['Java', 'AWS', 'DynamoDB', 'CloudWatch', 'gRPC', 'Distributed Systems', 'Ownership', 'Disaster Recovery', 'Observability'],
@@ -64,6 +66,7 @@ const skills = [
]
const links = [
'#project-poimen-workflow', // Poimen - link to poimen project showcase
'#project-homelab', // Homelab - link to homelab project showcase
'#project-rbc', // RBC - link to RBC project showcase
'#project-aws', // AWS - link to AWS project showcase
@@ -75,6 +78,7 @@ const linkTexts = [
'Learn more →',
'Learn more →',
'Learn more →',
'Learn more →',
'',
'View Product →',
]
@@ -142,14 +146,15 @@ export function ExperienceTimeline() {
{item.period}
</span>
{index === 0 && (
<CIBadge repo="rock/homelab" forgejoUrl="https://forgejo.riotpiao.com/riotpiao-poimen/homelab" />
<CIBadge repo="riotpiao-poimen/poimen-workflows" forgejoUrl="https://forgejo.riotpiao.com/riotpiao-poimen/poimen-workflows" />
)}
{index === 1 && (
<CIBadge repo="riotpiao-poimen/homelab" forgejoUrl="https://forgejo.riotpiao.com/riotpiao-poimen/homelab" />
)}
</div>
</div>
<p className="text-sm text-gray-700 dark:text-gray-300 mb-3">
{item.description}
</p>
<p className="text-sm text-gray-700 dark:text-gray-300 mb-3 whitespace-pre-line" dangerouslySetInnerHTML={{ __html: item.description }} />
<div className="flex flex-wrap gap-2 mb-4">
{skills[index]?.map((skill) => (