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. 8. 14.

설치

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

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.