feat: Add POC command page structure and routing

- Created CommandPocPage.tsx with basic layout structure
- Added POC-specific TypeScript interfaces and types
- Implemented basic UI components: PocHeader, PocMessageList, PocMessageBubble, PocCommandInput, PocStatusBar
- Added /command-poc route to Router.tsx
- Set up component folder structure following PRD specifications

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Vaayne
2025-07-30 16:19:00 +08:00
parent 6d0867c27d
commit 75766dbfdc
18 changed files with 2814 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "python-cli-web-poc",
"version": "1.0.0",
"description": "POC for running Python CLI apps through web interface",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js"
},
"dependencies": {
"express": "^4.18.2",
"ws": "^8.14.2"
},
"engines": {
"node": ">=14.0.0"
}
}