소스 정보
- 저장소
- arm2arm/AstroAgentAssistant
- 최근 소스 활동
- 2026년 8월 26일 12:00
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/arm2arm/AstroAgentAssistant --skill deepseek-harness-dsh명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | deepseek-harness-dsh |
| description | Use when running coding tasks via dsh (DeepSeek Harness). |
| version | 1.0.0 |
| author | Arman Khalatyan / Hermes Agent |
| license | MIT |
| platforms | ["linux"] |
| metadata | {"hermes":{"tags":["dsh","deepseek-harness","coding-agent","cli"],"related_skills":["opencode-workflow","claude-code","codex"]}} |
dsh) as a CoderDeepSeek Harness (dsh) is DeepSeek AI's open-source agent harness ("everything is a plugin", Cordis runtime). Repo: https://github.com/deepseek-ai/deepseek-harness. Developer preview — expect breaking changes; re-verify on upgrade.
Installed on this host: dsh in ~/.local/bin (npm, ~/.local global prefix; plain npm i -g without prefix fails with EACCES; pnpm add -g fails with NO_GLOBAL_BIN_DIR). Version 0.1.1-rc.2.
npm config set prefix ~/.local # once, so npm -g writes to ~/.local
npm i -g @deepseek-ai/dsh
dsh --version
Requires Node ^22.19 || >=24.
dsh web (Web UI, port 3080), dsh --profile headless "task" (one fresh persisted session, prints final answer, exits), dsh --profile <name> (other profiles).~/.dsh/profiles/<name>/: package.json (dsh.profile.bundles list), cordis.yml (root, read-only), cordis.patch.yml (the user's editable patch layer).llm-pi-ai (provider routes) and agent-default-model (provider + model). Default headless profile is DeepSeek-locked: deepseek-official / deepseek-v4-flash.$DSH_HOME/settings.yaml (default ~/.dsh/settings.yaml); keys via $DSH_HOME/.credentials.yaml or apiKeyEnv: <ENV_VAR_NAME> in the provider route.dsh --profile headless --dump-config.Write ~/.dsh/profiles/headless/cordis.patch.yml:
- id: llm-pi-ai
config:
providers:
myvllm:
name: My local vLLM
api: openai-completions
baseURL: http://<your-vllm-host>:8000/v1
apiKeyEnv: MY_VLLM_KEY
models:
- id: my-model
- id: agent-default-model
config:
provider: myvllm
model: my-model
apiKeyEnv takes the NAME of an env var, never a literal key. For no-auth endpoints: `export MY_VLLM_KEY=*** (in ~/.bashrc and in the launching shell).apiKey: empty (literal) instead of apiKeyEnv fails: PI_AI_ERROR: No API key for provider.input: [text, image] on the model entry.One-shot coding task in a repo directory:
dsh --profile headless "Refactor auth module and run the tests"
workspace-write with approval: ask. For headless runs that must act unattended, set DSH_PERMISSION_MODE=danger-full-access (approval becomes never) — use deliberately, per workspace.dsh web → http://127.0.0.1:3080.CONTEXT_WINDOW_EXCEEDED (400 BadRequest, input 229K+output 32K > 262144) — usually AFTER most file edits were already written to disk, at the final test-iteration/reporting phase. Mitigations: keep each stage prompt tightly scoped, split big stages in two, and after ANY non-zero exit, diff the working tree to salvage landed work instead of re-running the whole stage; finish the tail yourself.dsh --profile headless background terminal process (notify_on_complete), one bounded prompt per stage, with ground rules in the prompt: no git commit/push (orchestrator commits), don't touch pre-existing dirty files, tests must stay green (give the exact test command), report changed files + pytest line in the final message. On the local ~14–18 tok/s vLLM a full-repo audit took ~30 min; a bounded edit stage runs 20–40 min. Session transcripts persist at ~/.dsh/sessions/<--cwd-->/<session-id>/session.jsonl.zstd (zstd-compressed JSONL — zstd is NOT installed on this host by default; read via python3 -c "import zstandard" only if available, otherwise tail the process log).~/.dsh/profiles/headless/).MISSING_CREDENTIAL: llm-deepseek: no API key for provider route "deepseek-official" — export DEEPSEEK_API_KEY or patch a custom provider.~/.local prefix on this host; pnpm add -g unusable (no global bin dir).session-telemetry-otel); default mode DISABLED; can be disabled in the patch if desired.dsh --profile headless "Respond with exactly: DSH_SMOKE_OK"
# expect output: DSH_SMOKE_OK
Verified 2026-08-25 against a local vLLM endpoint (27B open-weight model): returned DSH_SMOKE_OK.