惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
DataBreaches.Net
S
SegmentFault 最新的问题
P
Proofpoint News Feed
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
小众软件
小众软件
博客园 - Franky
有赞技术团队
有赞技术团队
D
Docker
T
Tailwind CSS Blog
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
V
Visual Studio Blog
宝玉的分享
宝玉的分享
爱范儿
爱范儿

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - Dylanchess0320/LuckyD-Code: LuckyD Code - Termin...
dylanchess03 · 2026-05-27 · via Hacker News - Newest: "AI"

The AI coding assistant that thinks before it ships. Terminal-native · Browser-ready · DeepSeek-powered

CI Coverage PyPI Python License Stars Discord


✨ Why LuckyD Code?

LuckyD Code Other Assistants
🧠 Reasoning-first Self-verifies every write/edit automatically Hope the LLM gets it right
🔀 Smart routing Picks the right model tier per prompt Same model for everything
🗺️ Code Knowledge Graph Indexes your codebase; semantic + keyword search Blind to your project
🕸️ Web + Terminal Full CLI and browser UI from the same binary CLI-only or browser-only
🔒 Sandboxed Docker-isolated command execution Raw shell access
📊 Analytics Built-in code health, smell detection, trend tracking None
🔧 Autonomous Fixer Diagnoses bugs → generates patches → validates → opens PR Manual triage

🚀 Quick Start

Prerequisites

  • Python 3.10+python.org or brew install python@3.12
  • Rust – only needed if pip can’t find a pre‑built wheel for your platform (uncommon).

Installation

# Install from PyPI (recommended)
pip install luckyd-code

# With optional RAG support (code search & knowledge graph)
pip install luckyd-code[rag-full]

# Browser automation (for web scraping / testing)
pip install luckyd-code[browser]

Or clone and install in editable mode for development:

git clone https://github.com/Dylanchess0320/LuckyD-Code
cd LuckyD-Code
pip install -e ".[dev]"

Usage

# Start the interactive CLI
luckyd-code

# Launch the web UI (FastAPI + WebSocket)
luckyd-code --web

# Show help
luckyd-code --help

# Quick alias (same as luckyd-code)
ldc

From source:

python main.py                    # CLI
python main.py --web              # Web UI
python main.py --version          # v1.3.4

🔑 Configuration

Create a .env file in the project root or set the environment variable:

# DeepSeek API key (required)
DEEPSEEK_API_KEY=sk-your-deepseek-key-here

Get your key at platform.deepseek.com.

Optional settings (see config.py for all options):

Variable Description
DEEPSEEK_API_KEY Primary API key
OPENAI_API_KEY Fallback/alternative provider
LUCKYD_CONFIG_DIR Custom config directory
LOG_LEVEL DEBUG, INFO, WARNING, ERROR

Settings are resolved in this order: environment variable → config file → defaults.


🌟 Features

Core

  • Think → Act → Verify loop – Model generates code, tools execute it, verification checks syntax, lint, and tests automatically.
  • Smart model routing – Four tiers (T1–T4) from lightweight chat to deep reasoning; heuristic + LLM classifier for sub‑400ms selection.
  • 40+ built‑in tools – File ops, Git operations, Docker sandbox, web fetch, code generators, browser automation, and more.

Code Intelligence

  • Code Knowledge Graph (RAG) – FAISS index + sentence‑transformers for semantic code search across your entire project.
  • Project Memory – Persistent context across sessions: remembers your codebase structure and conversation history.
  • Autonomous Fixer – Detects errors, writes patches, runs verification, and can open a PR automatically.

Interface

  • Full CLI – Rich terminal UI with syntax highlighting, streaming responses, slash commands (/help, /install-rag, etc.).
  • Web UI – FastAPI + WebSocket server, same agent loop, accessible from any browser.
  • Lifecycle hooks – Run custom scripts before/after actions, integrate with CI/CD pipelines.

Security & Analytics

  • Docker‑sandboxed bash – All shell commands run isolated by default.
  • Permission system – Granular control over file read/write, network, and tool access.
  • Code analytics – Smell detection, trend tracking, and health reporting.

🏗️ Architecture

User input (CLI or Browser)
       │
       ▼
  ┌──────────────────┐      ┌──────────────────┐
  │    cli.py /       │      │  web_app.py      │
  │  cli_entry.py     │      │  (FastAPI)       │
  └────────┬─────────┘      └────────┬─────────┘
           │                         │
           └──────────┬──────────────┘
                      │
              ┌───────▼───────┐
              │   router.py    │  Prompt classification → model tier
              │ (heuristic +   │
              │  LLM fallback) │
              └───────┬───────┘
                      │
              ┌───────▼─────────┐
              │  _agent_loop.py  │  Think → Act → Verify (max N turns)
              └───────┬─────────┘
                      │
         ┌────────────┴────────────┐
         │                         │
  ┌──────▼──────┐        ┌─────────▼──────────┐
  │  api.py      │        │  tools/registry.py  │
  │ (stream SSE)│        │  40 tools + 5min TTL│
  └─────────────┘        └─────────────────────┘

For full details, see ARCHITECTURE.md.


🧪 Development & Testing

# Run all tests
pytest

# With coverage (target ≥97%)
pytest --cov=luckyd_code

# Type checking
mypy luckyd_code

# Lint with pre‑commit hooks
pre-commit run --all-files

# Scan for accidentally committed secrets
make secrets-scan   # requires gitleaks

See CONTRIBUTING.md for the full contributor guide.


🤝 Contributing

We welcome contributions! Please read the Contributing Guide for setup instructions, coding standards, and the PR process.

By contributing, you agree that your contributions will be licensed under AGPL v3. For alternative licensing, contact the maintainer.


📄 License

This project is licensed under the GNU Affero General Public License v3. See LICENSE for the full text.


Built with ❤️ by Dylan Kaye.