diff --git a/README.md b/README.md
index dd3167b..3431b46 100644
--- a/README.md
+++ b/README.md
@@ -372,3 +372,6 @@ This project is currently private and proprietary.
Built with ❤️ by the Supercode team!
+
+
+
\ No newline at end of file
diff --git a/apps/supercode-cli/server/.gitignore b/apps/supercode-cli/server/.gitignore
new file mode 100644
index 0000000..a14702c
--- /dev/null
+++ b/apps/supercode-cli/server/.gitignore
@@ -0,0 +1,34 @@
+# dependencies (bun install)
+node_modules
+
+# output
+out
+dist
+*.tgz
+
+# code coverage
+coverage
+*.lcov
+
+# logs
+logs
+_.log
+report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
+
+# dotenv environment variable files
+.env
+.env.development.local
+.env.test.local
+.env.production.local
+.env.local
+
+# caches
+.eslintcache
+.cache
+*.tsbuildinfo
+
+# IntelliJ based IDEs
+.idea
+
+# Finder (MacOS) folder config
+.DS_Store
diff --git a/apps/supercode-cli/server/CLAUDE.md b/apps/supercode-cli/server/CLAUDE.md
new file mode 100644
index 0000000..ebda995
--- /dev/null
+++ b/apps/supercode-cli/server/CLAUDE.md
@@ -0,0 +1,111 @@
+---
+description: Use Bun instead of Node.js, npm, pnpm, or vite.
+globs: "*.ts, *.tsx, *.html, *.css, *.js, *.jsx, package.json"
+alwaysApply: false
+---
+
+Default to using Bun instead of Node.js.
+
+- Use `bun ` instead of `node ` or `ts-node `
+- Use `bun test` instead of `jest` or `vitest`
+- Use `bun build ` instead of `webpack` or `esbuild`
+- Use `bun install` instead of `npm install` or `yarn install` or `pnpm install`
+- Use `bun run
+