Project ideas from Hacker News discussions.

DeepClaude – Claude Code agent loop with DeepSeek V4 Pro

📝 Discussion Summary (Click to expand)

1. Plug‑and‑play alternative LLMs

"Yes, from Claude Code themselves: https://code.claude.com/docs/en/llm-gateway" – theanonymousone
"ANTHROPIC_BASE_URL=\"https://api.deepseek.com/anthropic\" ANTHROPIC_AUTH_TOKEN=\"$OPENROUTER_API_KEY\" ANTHROPIC_DEFAULT_SONNET_MODEL=\"deepseek/deepseek-v4-flash\" CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1 claude" – jubilanti

2. Security & prompt‑logging worries

"Its not safe. Every first prompt you send is routed through their servers, logged and they can use your data however they want" – esafak
"I could not find any evidence of prompt logging. The code is open; can you point me to it?" – esafak

3. Cost‑effective cheaper models > "I burned only 0.06 USD (I reckon how the same task would have cost me had I used e.g., amp)" – adonese

"DeepSeek v4 pro scores 96.4% on LiveCodeBench and costs $0.87/M output tokens (discount until 2026‑05‑31)" – deadbabe

4. Skepticism toward “vibe‑coded” slop and AI hype

"It's going to be real hard to find headlines that weren't vibe coded from here on out unfortunately." – 2ndorderthought
"Unless I actually know the author I assume everything here is vibeslop and full of mistakes." – SchemaLoad


🚀 Project Ideas

[Claude DeepSeek Proxy CLI]

Summary

  • One‑command wrapper that configures Claude Code to use DeepSeek models via environment variables.
  • Automatic cost tracking and dynamic model switching based on task complexity.
  • Removes manual env‑var setup and reduces token spend.

Details| Key | Value |

|-----|-------| | Target Audience | Claude Code power users who want cheaper models without manual env‑var juggling | | Core Feature | claudedev CLI that injects ANTHROPIC_BASE_URL, ANTHROPIC_AUTH_TOKEN, ANTHROPIC_MODEL and launches Claude Code, while logging per‑task token usage and cost | | Tech Stack | Node.js (child_process), dotenv, OpenRouter API client, Prometheus‑style cost logger | | Difficulty | Medium | | Monetization | Hobby |

Notes

  • HN commenters already posted a one‑liner showing the env‑var approach; a polished wrapper would eliminate that friction.
  • Potential for discussion: simplifies adoption of DeepSeek V4/Flash for coding tasks and could be packaged as a npm package for wider reuse.

[Model Mesh for Claude Code]

Summary

  • SaaS platform to register any Anthropic‑compatible model (DeepSeek, GLM, Qwen, etc.) and manage agents, cost, and permissions.
  • Central dashboard for model selection, sub‑agent orchestration, and combined cost tracking.

Details| Key | Value |

|-----|-------| | Target Audience | Engineering teams building multi‑model AI pipelines that need safe routing and cost control | | Core Feature | Dashboard to add model endpoints, assign user‑level permissions, auto‑track token costs, and spin up sub‑agents on demand | | Tech Stack | React (frontend), FastAPI (backend), PostgreSQL, Docker, OpenAPI spec for Anthropic compatibility | | Difficulty | High | | Monetization | Revenue-ready: SaaS subscription $15/mo per user |

Notes

  • Users noted the proxy‑switching and cost‑tracking features are “buried” in existing repos – a polished UI would surface them.
  • Potential for discussion: could become the “single pane of glass” for teams using Claude Code with multiple LLMs, addressing security and billing concerns.

[Local DeepSeek Studio]

Summary

  • Docker‑based local server that hosts DeepSeek V4 models offline, exposing an Anthropic‑compatible API for Claude Code use.
  • Includes automatic KV‑cache offload and quantization for low‑VRAM machines.

Details

Key Value
Target Audience Developers with local GPU hardware (e.g., Mini‑PC, DGX Spark) who want offline, data‑private inference
Core Feature docker-compose up runs DeepSeek V4 Flash/Pro with vLLM, provides /v1/completions endpoint matching Anthropic schema, and can be plugged into Claude Code via env vars
Tech Stack Python FastAPI, vLLM, CUDA/DirectML, Docker, quantized ggml kernels
Difficulty High
Monetization Hobby (open source); optional paid support tier

Notes

  • DeepSeek already documents Anthropic‑compatible integration; a ready‑to‑run Docker image would make it trivial for HN users to “run locally”.
  • Potential for discussion: addresses privacy and cost‑saving concerns highlighted by commenters wary of cloud API lock‑in.

[Smart Routing Plugin for Claude Code]

Summary

  • CLI plugin that analyses task intent and routes it to the cheapest model that meets quality thresholds.
  • Real‑time cost dashboard and fallback logic to Opus only when needed.

Details

Key Value
Target Audience Individual coders and small startups aiming to minimize token spend while preserving output quality
Core Feature Model selector based on task metadata (complexity, token budget); auto‑fallback to Opus if confidence low; logs savings and provides cost‑predictor UI
Tech Stack Python, rule‑engine for model matching, SQLite cost DB, Prometheus metrics exporter
Difficulty Medium
Monetization Revenue-ready: Freemium with paid premium cost‑predictor API ($0.01 per prediction)

Notes

  • Commenters repeatedly asked “how to avoid paying for Opus?” and discussed cost‑saving stories – this plugin directly answers that need.
  • Potential for discussion: could be published as a plug‑and‑play extension for Claude Code, sparking conversation about optimal model routing strategies.

Read Later