Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:0
forks:2
updated:2026년 4월 9일 11:58
SKILL.md
| name | apx |
| description | Quick reference for apx toolkit commands and MCP tools for building Databricks Apps |
apx is the toolkit for building full-stack Databricks Apps with React + FastAPI.
src/retail-in-store-demo/
├── ui/ # React + Vite frontend
│ ├── components/ # UI components (shadcn/ui)
│ ├── routes/ # @tanstack/react-router pages
│ ├── lib/ # Utilities (api client, selector)
│ └── styles/ # CSS styles
└── backend/ # FastAPI backend
├── app.py # Main FastAPI app
├── router.py # API routes
├── models.py # Pydantic models
└── config.py # Configuration
| Command | Description |
|---|---|
uv run apx dev start | 🟢 Start all dev servers (backend + frontend + OpenAPI watcher) |
uv run apx dev stop | 🔴 Stop all dev servers |
uv run apx dev status | 📊 Check status of running servers |
uv run apx dev check | ✅ Check for TypeScript/Python errors |
uv run apx dev logs | 📜 View recent logs (default: last 10m) |
uv run apx dev logs -f | 📡 Follow/stream logs in real-time |
uv run apx build | 📦 Build for production |
uv run apx bun <args> | 🍞 Run bun commands (install, add, etc.) |
uv run apx components add <name> | 🧩 Add a shadcn/ui component |
When the apx MCP server is running, these tools are available:
| Tool | Description |
|---|---|
start | 🟢 Start development server and return the URL |
stop | 🔴 Stop the development server |
restart | 🔄 Restart development server (preserves port if possible) |
logs | 📜 Fetch recent dev server logs |
check | ✅ Check project code for errors (tsc + ty in parallel) |
search_registry_components | 🔍 Search shadcn registry components (semantic search) |
add_component | ➕ Add a component to the project |
docs | 📚 Search Databricks SDK docs for code examples |
databricks_apps_logs | 📊 Fetch logs from deployed app via Databricks CLI |
get_route_info | 🛣️ Get code example for using a specific API route |
refresh_openapi | 🔄 Regenerate OpenAPI schema and API client |
uv run apx dev start # Starts everything in background
uv run apx dev status # Verify servers are running
# Search for components first
uv run apx components add button --yes
uv run apx components add card --yes
uv run apx bun add lucide-react # Add a package
uv run apx bun install # Install all deps
uv run apx dev check # TypeScript + Python linting
uv run apx dev logs # Recent logs (last 10m)
uv run apx dev logs -d 1h # Logs from last hour
uv run apx dev logs -f # Follow/stream logs live
Entity - Database/internal modelEntityIn - Input/request modelEntityOut - Output/response model// Use Suspense hooks with selector()
const { data } = useGetItemsSuspense(selector());
@router.get("/items", response_model=list[ItemOut], operation_id="getItems")
async def get_items():
...
src/retail-in-store-demo/ui/lib/api/ (auto-generated)src/retail-in-store-demo/ui/routes/src/retail-in-store-demo/ui/components/src/retail-in-store-demo/backend/