SeekFleet
SeekFleet
에이전트를 함대처럼 운영하세요.
DeepSeek Harness 에이전트 함대를 위한 크로스 플랫폼 제어 플레인 — MCP, 영속 세션, 적응형 라우팅, 정책 게이트, 토큰 예산, 휴대폰 친화적인 LAN 대시보드를 갖추고 있습니다.
AI에게 저장소 URL을 주세요. 스킬을 설치하고, MCP를 구성하고, 런타임을 검증하고, 무엇이 변경되었는지 정확히 설명할 수 있습니다.
다국어 개요
제품 페이지에는 다섯 가지 현지화된 경험을 제공하는 영구 언어 전환기가 포함되어 있습니다: 简体中文, English, 日本語, 한국어 및 Español. 페이지는 브라우저 언어를 자동으로 감지하고, 직접 ?lang= 링크를 허용하며, 방문자의 선택을 기억합니다.
언어 | 제품 요약 |
简体中文 | 面向 DeepSeek Harness Agent 集群的跨平台控制平面,统一调度、监控、预算、策略与局域网控制台。 |
English | A cross-platform control plane for routing, observing, budgeting, governing, and stopping DeepSeek Harness agent fleets. |
日本語 | DeepSeek Harness Agent艦隊をルーティング、監視、予算管理、制御するクロスプラットフォーム基盤。 |
한국어 | DeepSeek Harness 에이전트 함대를 라우팅, 관찰, 예산 관리, 정책 적용, 중지하는 크로스 플랫폼 제어 플레인. |
Español | Un plano de control multiplataforma para enrutar, observar, presupuestar, gobernar y detener flotas de agentes DeepSeek Harness. |
30초 요약
SeekFleet는 DeepSeek Harness를 프로세스 모음에서 관찰 가능하고 관리 가능한 함대로 전환합니다:
인터페이스 | 제공 기능 |
MCP 서버 | 안정적인 엔벨로프와 어노테이션을 갖춘 20개의 구조화된 도구 |
SDK | 일회성 작업, 세션, 클러스터 및 DAG를 위한 단일 TypeScript API |
제어 플레인 | 라우팅, 캐시, 서킷 브레이커, 예산, 정책 및 취소 |
LAN 대시보드 | 실시간 에이전트, 요청, 토큰, 비용, 실패, 세션 및 보호된 컨트롤 |
에이전트 스킬 | Codex, Claude, Cursor, Gemini 및 |
이 저장소를 AI에 건네주세요
이 프롬프트를 그대로 복사하세요:
Install SeekFleet from https://github.com/cndoin/seekfleet.
Read INSTALL.md first, install it for this AI client, configure its MCP server,
and verify the installation without exposing credentials.기계가 읽을 수 있는 계약은 INSTALL.md에 있습니다. Windows PowerShell, Linux, macOS 경로, 사용자/프로젝트 스킬 범위, 검증, 업데이트 및 롤백 동작이 포함됩니다.
소스에서 설치
요구 사항: Node.js 20+, npm 10+, @deepseek-ai/dsh 또는 명시적 DSH_MODULE_ROOT.
git clone https://github.com/cndoin/seekfleet seekfleet
cd seekfleet
npm ci
npm run build
node dist/bin/seekfleet.js skill install --target auto
node dist/bin/seekfleet.js inspect지원되는 모든 AI 클라이언트에 스킬을 설치하세요:
node dist/bin/seekfleet.js skill install --target all --force프로젝트 로컬 스킬의 경우 --scope project를 사용하세요. 사용자 프로필을 변경하지 않고 .agents/skills/seekfleet에 설치됩니다.
함대 시작
신뢰할 수 있는 LAN에서 MCP와 휴대폰 대시보드를 함께 실행하세요:
node dist/bin/seekfleet.js serve-mcp같은 네트워크에 연결된 휴대폰에서 출력된 URL을 여세요. 대시보드는 bearer 토큰으로 보호됩니다. 공개 인터넷에 직접 노출하지 마세요.
node dist/bin/seekfleet.js serve-mcp \
--dashboard \
--dashboard-host 0.0.0.0 \
--dashboard-port 8787SDK 한눈에 보기
import { SeekFleet } from "seekfleet";
const fleet = new SeekFleet();
const review = await fleet.run("Review this module for race conditions");
console.log(review.answer);
const clusterId = fleet.cluster({
routing: "adaptive",
instances: [
{ label: "code-a", tags: ["code"] },
{ label: "code-b", tags: ["code"] },
{ label: "review", tags: ["review"] },
],
});
const result = await fleet.clusterRoute(clusterId, {
task: "Audit the authentication flow",
tags: ["review"],
timeoutMs: 120_000,
});
await fleet.clusterShutdown(clusterId);DshPlugin은 더 이상 사용되지 않는 소스 호환 별칭으로 계속 사용할 수 있습니다. MCP 도구 이름은 기존 통합이 계속 작동하도록 dsh_* 접두사를 유지합니다.
실행 모드 선택
모드 | 적합한 용도 | 제어 인터페이스 |
One-shot | 단일 범위 작업 |
|
Session | 장기 실행 및 취소 가능 작업 |
|
Cluster | 병렬 또는 반복 작업 |
|
DAG | 의존성 있는 작업 그래프 |
|
라우팅 전략에는 least-loaded, round-robin, tag, adaptive, random이 포함됩니다.
아키텍처
AI client (Codex / Claude / Cursor / Gemini / Hermes / OpenClaw)
│
MCP or SDK
│
SeekFleet
┌───────────────────┼───────────────────┐
│ │ │
Durable sessions Agent clusters Policy gate
│ routing · cache · DAG │
└───────────────────┼───────────────────┘
│
DeepSeek Harness
│
tools · models · subprocesses크로스 플랫폼 구성
PowerShell:
$env:DSH_MODULE_ROOT = "C:\Tools\deepseek-harness"
$env:DSH_HOME = "$env:USERPROFILE\.dsh"
npm run serve-lanBash 또는 zsh:
export DSH_MODULE_ROOT=/opt/deepseek-harness
export DSH_HOME="$HOME/.dsh"
npm run serve-lanOS 네이티브 절대 경로를 사용하세요. Windows 드라이브 경로를 Linux 또는 macOS 구성에 복사하지 마세요.
환경 변수
변수 | 기본값 | 용도 |
| auto-detected | 설치된 DeepSeek Harness 패키지 |
|
| 프로필 및 영구 런타임 상태 |
|
| Codex 구성 루트 |
|
|
|
|
| 대시보드 바인드 호스트 |
|
| 대시보드 TCP 포트 |
| random | 고정 대시보드 bearer 토큰 |
이전 DSH_DASHBOARD* 이름은 호환 별칭으로 계속 허용됩니다.
프로젝트 맵
src/— SDK, 라우팅, 세션, 정책, 메트릭, 대시보드 및 MCP 서버bin/seekfleet.ts— 크로스 플랫폼 CLI 진입점SKILL.md— 간결한 AI 운영 지침agents/openai.yaml— AI 클라이언트 검색 메타데이터docs/— GitHub Pages 제품 사이트 및 소셜 미리보기 에셋examples/— MCP, SDK, 어댑터 및 클러스터 예제tests/— 94개의 동작 및 통합 테스트
개발
npm ci
npm run format:check
npm run typecheck
npm run lint
npm test
npm run buildCI는 Windows, Ubuntu, macOS에서 Node.js 20, 22, 24로 실행됩니다. 실시간 제품 페이지는 docs/에서 GitHub Pages로 게시됩니다.
보안
SeekFleet는 실제 에이전트 도구와 하위 프로세스를 실행합니다. 자율 사용 전에 정책, 예산, 유한 시간 제한 및 제한된 작업 공간을 구성하세요. 위협 모델 및 공개 절차는 SECURITY.md를 참조하세요.
라이선스
MIT — LICENSE 참조.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cndoin/seekfleet'
If you have feedback or need assistance with the MCP directory API, please join our Discord server