This content has not been translated yet.

Command-Line Tools

CLI scripts and commands used in the Akita system

Shell Scripts

All scripts live in scripts/:

ScriptPurpose
start-web.shStart Astro dev server (port 4321)
start-api.shStart Hono API server (port 2077)
start-mcp-gateway.shStart MCP gateway (port 8710)
publish-web.shDeploy to Cloudflare Pages via wrangler

Key Commands

Astro

npm run dev          # Start dev server
npm run build        # Production build
npm run preview      # Preview production build

Content Submodule

Content lives in akita-web/src/content as a git submodule (remote: akita-content).

cd akita-web/src/content
git pull             # Update content
git add . && git commit -m "..."  # Commit content changes

Qdrant

qdrant                           # Start the vector DB
curl http://localhost:6333/collections  # List collections

Package Managers

  • npm — Astro frontend (akita-web/)
  • Bun — API server
  • uv / pip — MCP gateway (Python)