agentdb-advanced
Master advanced AgentDB features including QUIC synchronization, multi-database management, custom distance metrics, hybrid search, and distributed systems…
One-shot chat completion against DeepSeek's `deepseek-chat` model via the OpenAI-compatible /v1/chat/completions endpoint. Reads DEEPSEEK_API_KEY from the environment; degrades gracefully (exit 0 with a JSON status:degraded envelope) when the key is missing or the API is
$ npx -y skills add ruvnet/ruflo --skill deepseek-chat --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/deepseek-chatContext preview
The summary Claude sees to decide when to auto-load this skill.
One-shot chat completion against DeepSeek's `deepseek-chat` model via the OpenAI-compatible /v1/chat/completions endpoint. Reads DEEPSEEK_API_KEY from the environment; degrades gracefully (exit 0 with a JSON status:degraded envelope) when the key is missing or the API is
name: deepseek-chat description: "One-shot chat completion against DeepSeek's `deepseek-chat` model via the OpenAI-compatible /v1/chat/completions endpoint. Reads DEEPSEEK_API_KEY from the environment; degrades gracefully (exit 0 with a JSON status:degraded envelope) when the key is missing or the API is unreachable. Use for non-reasoning tasks — summarization, extraction, quick classification — where deepseek-reasoner would be overkill." argument-hint: "--prompt <text> [--system <text>] [--model deepseek-chat] [--temperature 0.7] [--max-tokens 1024] [--format table|json] [--alert-on-error]" allowed-tools: Bash
Wraps DeepSeek's chat/completions endpoint in the same subprocess-invocation shape as the other `ruflo-*-harness` skills (see ruflo-metaharness's `harness-score` for the reference). No library import on ruflo's boot path.
use `deepseek-reason` instead — same plugin, different model.
Implementation: [`scripts/chat.mjs`](../../scripts/chat.mjs).
1. Read `DEEPSEEK_API_KEY` from env. If missing, emit `{ status: 'degraded', reason: 'DEEPSEEK_API_KEY is not set', ... }` and exit 0 (ADR-150-style graceful degradation). 2. POST to `https://api.deepseek.com/v1/chat/completions` with `{ model, messages, temperature?, max_tokens? }`. 60s hard timeout. 3. Extract `choices[0].message.content` and usage counters. 4. `--format table` prints only the content (for piping); `--format json` (default) returns the full envelope. 5. `--alert-on-error` exits 1 on any degraded/error status (CI-friendly).
node plugins/ruflo-deepseek-harness/scripts/chat.mjs \ --prompt "In one sentence: what is HNSW?" \ --temperature 0.2
Sample output:
{
"status": "ok",
"model": "deepseek-chat",
"content": "HNSW is a graph-based approximate nearest neighbor …",
"finishReason": "stop",
"usage": { "promptTokens": 12, "completionTokens": 34, "totalTokens": 46 }
}An agent meta-harness for Claude Code and Codex. 📖 RuFlo Explained — Build an AI Team That Plans, Remembers, Tests, and Improves A 14-chapter guide: from the basic idea to a first useful task, then memory, agent teams, plugins, cost and verification.
Repo: ruvnet/ruflo
Master advanced AgentDB features including QUIC synchronization, multi-database management, custom distance metrics, hybrid search, and distributed systems…
Create and train AI learning plugins with AgentDB's 9 reinforcement learning algorithms. Includes Decision Transformer, Q-Learning, SARSA, Actor-Critic, and…
Implement persistent memory patterns for AI agents using AgentDB. Includes session memory, long-term storage, pattern learning, and context management. Use…
Optimize AgentDB performance with quantization (4-32x memory reduction), HNSW indexing (150x faster search), caching, and batch operations. Use when optimizing…
Implement semantic vector search with AgentDB for intelligent document retrieval, similarity matching, and context-aware querying. Use when building RAG…
Quantum-resistant, self-learning version control for AI agents with ReasoningBank intelligence and multi-agent coordination