lonelymoon87/dsh-code-intel0

dsh-code-intel

Symbol-aware code outline and hybrid code search for DeepSeek Harness.

AI 分析

核心用途是为工作区代码提供符号级大纲解析与混合向量检索。适合需要模型深度理解本地代码库结构、进行精准代码问答和重构的开发者。

パッケージ
dsh-code-intel
バージョン
0.1.1
ライセンス
MIT
最終更新
2026/08/14

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:lonelymoon87/dsh-code-intel

ドキュメント

README 全文を読む ↗

Configuration

Lexical mode needs no provider configuration:

- id: code-intel
  name: dsh-code-intel
  config:
    indexDir: .dsh/code-index
    include: [.ts, .tsx, .js, .jsx, .py, .go, .rs, .java]
    exclude: [.dsh, .git, node_modules, dist, build, coverage, vendor]
    maxFileSize: 1000000
    maxChunkChars: 12000
    maxResults: 20
    watch: true
    embedding: false

Hybrid mode uses a complete OpenAI-compatible embeddings URL:

    embedding:
      provider: openai-compatible
      endpoint: https://embedding.example/v1/embeddings
      model: your-embedding-model
      credentialRef: EMBEDDING_API_KEY
      batchSize: 32

indexDir and exclusions must stay workspace-relative. Only the listed, parser-backed extensions are accepted in MVP.