Package Exports
- dsk-coder-cli
- dsk-coder-cli/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dsk-coder-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
DSK Coder CLI
AI-powered coding assistant CLI that leverages the powerful DeepSeek Coder models to accelerate your development workflows.
Features
- Code Completion & Generation: Intelligent code suggestions across 100+ languages
- Local AI Support: Works with Ollama for privacy-focused local inference
- Cloud API: Optional DeepSeek API integration
- Interactive Chat: Rich REPL experience with syntax highlighting
- Project Context: Automatic repository analysis and context inclusion
Quick Start
Local Setup (Recommended)
# Install Ollama first: https://ollama.ai
ollama pull deepseek-coder:6.7b
# Install CLI
npm install -g dsk-coder-cli
# Start using
dskCloud Setup
export DEEPSEEK_API_KEY="your_api_key_here"
npm install -g dsk-coder-cli
dskUsage
# Interactive mode
dsk
# Quick command
dsk chat "Write a Python function for binary search"
# With specific model
dsk --model deepseek-coder:33b
# Show help
dsk --helpConfiguration
Create .env file:
DEEPSEEK_USE_LOCAL=true
DEEPSEEK_MODEL=deepseek-coder:6.7b
OLLAMA_HOST=http://localhost:11434Requirements
- Node.js >= 16.0.0
- Windows, macOS, or Linux
License
MIT © DeepSeek Community