DEVNEXUS
AI-powered developer command center for GitHub context, progress narratives, smart TODOs, project notes, hackathon planning, and a context-aware copilot.
File Explorer
- bug_report.md
- feature_request.md
- ci.yml
- deploy.yml
- auth.py
- __init__.py
- schemas.py
- activity.py
- ai.py
- github.py
- hackathons.py
- notes.py
- todos.py
- utils.py
- __init__.py
- gemini_service.py
- github_service.py
- narrator_service.py
- scheduler.py
- config.py
- main.py
- requirements.txt
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- layout.tsx
- route.ts
- layout.tsx
- page.tsx
- ActivityFeed.tsx
- NotificationBell.tsx
- CommandPalette.tsx
- Header.tsx
- NexusSidebar.tsx
- Sidebar.tsx
- CommitForecast.tsx
- ContributionHeatmap.tsx
- RepoHealthScore.tsx
- StatsCards.tsx
- HackathonCard.tsx
- JudgeSimulator.tsx
- PhaseTracker.tsx
- PitchGenerator.tsx
- MarkdownEditor.tsx
- Providers.tsx
- ThemeSelector.tsx
- VibeMode.tsx
- FocusMode.tsx
- KanbanBoard.tsx
- TodoList.tsx
- VoiceInput.tsx
- avatar.tsx
- api-client.ts
- github.ts
- supabase.ts
- utils.ts
- apple-icon.png
- icon-192.png
- icon-512.png
- icon.png
- manifest.json
- useThemeStore.ts
- globals.css
- next-auth.d.ts
- .env.example
- next-env.d.ts
- next.config.js
- package.json
- postcss.config.js
- tailwind.config.ts
- tsconfig.json
- devnexus-demo-poster.jpg
- devnexus-demo.html
- devnexus-demo.mp4
- 001_initial.sql
- schema.sql
- index.ts
- .gitignore
- CHALLENGES.md
- docker-compose.yml
- LICENSE
- MCP_SERVERS.json
- package-lock.json
- package.json
- README.md
- TECHNOLOGIES.md
- turbo.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git
View Details ▼
git
Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.
git init
Create an empty Git repository:
git clone {{https://example.com/repo.git}}
Clone a remote Git repository from the internet:
git status
View the status of the local repository:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
openssl rand
View Details ▼
openssl rand
Generate random bytes using a cryptographically secure PRNG.
openssl rand -hex 8
Generate an 8-byte (16 characters) hex string and write it to `stdout`:
openssl rand -base64 20
Generate 20 random bytes encoded in base64:
openssl rand -out {{path/to/file}} {{length}}
Generate random bytes and write them to a file (without encoding):
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
uvicorn
View Details ▼
uvicorn
Python ASGI HTTP Server, for asynchronous projects.
uvicorn {{import.path:app_object}}
Run Python web app:
uvicorn --host {{localhost}} --port {{8080}} {{import.path:app_object}}
Listen on port 8080 on localhost:
uvicorn --reload {{import.path:app_object}}
Turn on live reload:
