From ea45e55c977b8e0da4d4c84075f61c5d6b7d3abd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=E1=BB=B3nh=20Th=C6=B0=C6=A1ng?= <252359928+Huynhthuongg@users.noreply.github.com> Date: Thu, 4 Jun 2026 18:40:02 +0700 Subject: [PATCH 1/2] Polish RKIX3 mobile interface --- index.html | 980 ++++++++++------------------------------------------- 1 file changed, 180 insertions(+), 800 deletions(-) diff --git a/index.html b/index.html index 495149b..4ecaa39 100644 --- a/index.html +++ b/index.html @@ -1,805 +1,185 @@ - + - - - RKIX3 AI - Lập trình, Code, Build, Tự động hoá - - - - - + + + RKIX3 — Developer Workspace Platform + + - - - - -
- - - - -
-
-
- - - -
- -
- - - -
-
- -
-
-
- RKIX3 Logo -
-
-

Model chủ lực

GPT-5.5 / Gemini 2.5

-

Workflow

Auth · Init · AI · DB · Deploy

-

Mobile CLI

Termux-ready

-

Preview

HTML live sandbox

-
-

Chúng ta nên bắt đầu từ đâu?

-
- -
-
- - -
-
- - - -
-
- - - -
-
-
-

Không đặt API key thật trong code public. Dùng key tạm ở modal hoặc backend proxy khi triển khai production.

-
- - - -
-

Lập trình

Viết code, debug và tối ưu hệ thống

-

Build

Tạo UI/web app phẳng vuông góc

-

Tự động hoá

Auth CLI, GitHub, CI, deploy

-

AI thông minh

GPT-5.5, Gemini, context file

-

CLI OAuth

Local loopback Termux flow

-

Database

Supabase/Neon schema + env

-
-
-
- - -
- - - - - -
Hệ thống thông báo!
- - + +
+ +

RKIX3 Command Layer

Dashboard

main · healthy
+
RKIX3
+
+ From ac90d757c919c65d54162710513177a9350310ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=E1=BB=B3nh=20Th=C6=B0=C6=A1ng?= <252359928+Huynhthuongg@users.noreply.github.com> Date: Fri, 5 Jun 2026 02:44:21 +0700 Subject: [PATCH 2/2] Update index.html MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> Signed-off-by: Huỳnh Thương <252359928+Huynhthuongg@users.noreply.github.com> --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 4ecaa39..bfafc91 100644 --- a/index.html +++ b/index.html @@ -169,7 +169,7 @@ function taskCard(t){return `
${t.id}${t.priority}

${t.title}

${t.project}

`} function renderHome(){$('#home').innerHTML=`

Developer Workspace Platform

Build faster with AI, projects, code, docs, and deploys in one command deck.

RKIX3 combines an AI workspace, project roadmap, code studio, build center, library hub, integrations, and profile controls in a sleek dark-first developer UI.

${card(`

Live agent stream

${badge('AI Online')}

✓ Indexed 3 snippets into Code Studio

→ Generated deploy plan for Vercel + GitHub

● Monitoring 4 active projects

`)}
${metric('Active projects',entities.projects.length)}${metric('Open tasks',entities.tasks.filter(t=>t.status!=='done').length)}${metric('Code snippets',entities.snippets.length)}${metric('Integrations','8')}
${card(`

Project pulse

Roadmap-ready entities with progress, owners, and delivery status.

${entities.projects.map(projectCard).join('')}
`)}`} function renderAI(){$('#ai').innerHTML=`

AI Workspace

Chat interface with an AI agent, mode switcher, and prompt accelerators.

${badge('Agent Ready')}
${['Generate code','Debug issue','Plan sprint','Write docs'].map(x=>``).join('')}
${card(`

AI Tools

${['Code generator','Task decomposer','Release note writer','Security reviewer','API schema planner'].map((x,i)=>``).join('')}
`)}
`; renderChat()} -function renderChat(){$('#chatLog').innerHTML=entities.messages.map(m=>`
${m.role==='user'?'YOU':'RKIX3 AGENT'}

${m.text}

`).join('')} +function renderChat(){$('#chatLog').innerHTML=entities.messages.map(m=>`
${m.role==='user'?'YOU':'RKIX3 AGENT'}

${esc(m.text)}

`).join('')} function renderWorkspace(){const cols=[['todo','Todo'],['doing','In progress'],['review','Review'],['done','Done']];$('#workspace').innerHTML=`${card(`

Project & Task Management

Kanban board, project list, and roadmap planning view.

${badge('6 tasks')}
${cols.map(([k,l])=>`

${l}

${entities.tasks.filter(t=>t.status===k).map(taskCard).join('')}
`).join('')}
`)}
${card(`

Projects List

${entities.projects.map(p=>`
${p.name}

${p.owner} · ${p.stack} · ${p.due}

`).join('')}
`)}${card(`

Roadmap View

${entities.projects.map(p=>`
${p.name}
${p.due}
`).join('')}`)}
`} function renderCode(){$('#code').innerHTML=`

Code Studio

Editor surface with snippets, templates, and AI coding actions.

${esc(entities.snippets[0].code)}
${card(`

Snippets Manager

${entities.snippets.map(s=>``).join('')}

AI Coding

${['Explain','Refactor','Test','Optimize'].map(x=>``).join('')}
`)}
${card(`

Code Templates

${['Next.js API route','Express worker','Astro docs site'].map(x=>`

${x}

Starter files, env notes, and test checklist.

`).join('')}
`)}`} function renderBuild(){const f=['Next.js','Vite React','Astro','SvelteKit','Node API','Static HTML'];$('#build').innerHTML=card(`

Build Center

Create, configure, and queue builds across common frameworks.

${f.map((x,i)=>`
${badge(i%2?'Template':'Ready')}

${x}

Includes scripts, env schema, CI hints, and deployment presets.

`).join('')}
`)}