DeepSeek Harness 插件

skills

Collection of skills for Upstash(英文原文)

跳到安装方式

来源信息

GitHub 仓库
upstash/skills
最近更新
2026年8月20日
分类
工具与能力
GitHub stars
19
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/upstash/skills
插件名:skills
作者:upstash

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器4 个文件
README.md来源说明 · 只读预览

Upstash Agent Skills

A collection of skills for AI coding agents working with Upstash SDKs. Skills are packaged instructions and resources that extend agent capabilities.

This repo works as an Agent Skills repo, a Claude Code plugin, a Cursor plugin, an OpenAI Codex plugin, and a DeepSeek Harness bundle.

Available Skills

SkillDescription
[upstash](skills/upstash/)Combined skill covering all Upstash SDKs.
[upstash-box-js](skills/upstash-box-js/)Sandboxed cloud containers with AI agents, shell, filesystem, and git.
[upstash-box-py](skills/upstash-box-py/)The same sandboxed cloud containers, from the Python SDK.
[upstash-cli](skills/upstash-cli/)Drive the Upstash Developer API from the terminal with the upstash CLI.
[upstash-qstash-js](skills/upstash-qstash-js/)Serverless messaging and scheduling via HTTP endpoints.
[upstash-ratelimit-js](skills/upstash-ratelimit-js/)Rate limiting with the Redis Rate Limit TypeScript SDK.
[upstash-redis-js](skills/upstash-redis-js/)Serverless Redis — caching, sessions, leaderboards, full-text search.
[upstash-redis-start](skills/upstash-redis-start/)Provision a zero-config, no-signup scratch Redis database for an agent.
[upstash-search-js](skills/upstash-search-js/)Full-text search quick starts, core concepts, and TypeScript SDK.
[upstash-vector-js](skills/upstash-vector-js/)Vector database features, SDK usage, and framework integrations.
[upstash-workflow-js](skills/upstash-workflow-js/)Durable workflows — define, trigger, and manage multi-step processes.

Installation

Claude Code Plugin

# Add the marketplace
/plugin marketplace add upstash/skills

# Install the plugin
/plugin install upstash@upstash

Cursor Plugin

We are waiting for this plugin to be accepted to the official Cursor Marketplace. Once listed, it can be installed from Customize in the Cursor sidebar.

OpenAI Codex Plugin

# Add the marketplace
codex plugin marketplace add upstash/skills

# Install the plugin
codex plugin add upstash@upstash

Zed

Zed loads Agent Skills from .agents/skills/ in a project and ~/.agents/skills/ globally, which is exactly where the Agent Skills CLI writes them:

# Available in every project
npx skills add upstash/skills --agent zed --global

# Or just this project
npx skills add upstash/skills --agent zed

The skills then show up in Zed's Agent Panel, and the agent can load them on its own or via /upstash. Zed's extension marketplace carries languages, themes, debuggers, snippets, and MCP servers, but has no channel for skills, so the CLI is the only way to install them. The Zed extension in zed-extension/ covers the [MCP server](#mcp-server) instead.

Context7 CLI

npx ctx7 skills install upstash/skills

Agent Skills CLI

npx skills add upstash/skills

DeepSeek Harness

Installs the skills and the [Upstash MCP server](#mcp-server) in one step. Requires pnpm on your PATH.

# Install into a profile (`web` is the one `dsh web` boots)
dsh plugin --profile web add github:upstash/skills

# Start the harness
dsh web

Then store your Upstash credentials from inside a session:

/upstash-login YOUR_EMAIL YOUR_API_KEY

Credentials are stored in ~/.dsh/.credentials.yaml and the MCP server connects as soon as both are set. The skills work without them.

MCP Server

For full access to Upstash APIs (create databases, publish messages, query vectors, etc.), you can also set up the @upstash/mcp-server:

<details> <summary>Claude Code</summary>

claude mcp add upstash -- npx -y @upstash/mcp-server@latest --email YOUR_EMAIL --api-key YOUR_API_KEY

</details>

<details> <summary>Cursor</summary>

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "upstash": {
      "command": "npx",
      "args": ["-y", "@upstash/mcp-server@latest", "--email", "YOUR_EMAIL", "--api-key", "YOUR_API_KEY"]
    }
  }
}

</details>

<details> <summary>Zed</summary>

This repo ships a Zed MCP extension in [zed-extension/](zed-extension/). Once it is accepted into the Zed extension registry, install Upstash Redis MCP Server from Settings → AI → MCP Servers → Add Server → Install from Extensions, and Zed will prompt for upstash_email and upstash_api_key. Until then, install it as a dev extension (zed: install dev extension, then pick the zed-extension/ directory).

To skip the extension entirely, add the server to your Zed settings by hand (zed: open settings file):

{
  "context_servers": {
    "upstash": {
      "command": "npx",
      "args": ["-y", "@upstash/mcp-server@latest", "--email", "YOUR_EMAIL", "--api-key", "YOUR_API_KEY"]
    }
  }
}

</details>

<details> <summary>DeepSeek Harness</summary>

Already included in the bundle — see [DeepSeek Harness](#deepseek-harness) above. </details>

Making changes

Updating an existing skill

1. Edit the files in the individual skill folder (e.g. skills/upstash-qstash-js/). 2. Run npm run build to regenerate skills/upstash/. 3. Commit both the source changes and the regenerated output.

Adding a new skill

1. Create a new folder under skills/ (e.g. skills/upstash-redis-js/). 2. Add a SKILL.md with the standard frontmatter (name and description) and any supporting files. 3. Run npm run build — the new skill will be picked up automatically. 4. Commit everything.

Changing the combined skill header

The frontmatter and introductory text for skills/upstash/SKILL.md comes from scripts/header.md. Edit that file, then run npm run build.

Updating the plugin version

When making a release, bump the version field in every manifest that carries one: plugin.json (the portable Agent Plugins manifest), .claude-plugin/plugin.json, .cursor-plugin/plugin.json, and .codex-plugin/plugin.json.

The Zed extension

zed-extension/ is a Zed MCP server extension that runs [@upstash/mcp-server](#mcp-server). It is a Rust crate compiled to WebAssembly, and it is only about the MCP server — Zed extensions cannot carry skills.

cd zed-extension
rustup target add wasm32-wasip2   # once
cargo build --release --target wasm32-wasip2

Test a local build with zed: install dev extension and point Zed at zed-extension/. Open Zed on a folder while testing — context servers are project-scoped, so with no project open (or one whose worktree fails to open) the server never starts and the panel sits on "Connecting Server..." until Zed's 60s timeout.

To publish or update it, open a PR against zed-industries/extensions that adds this repo as a submodule under extensions/mcp-server-upstash and an entry in extensions.toml:

[mcp-server-upstash]
submodule = "extensions/mcp-server-upstash"
path = "zed-extension"
version = "0.1.0"

The version there has to match version in zed-extension/extension.toml, so bump both together. zed-extension/LICENSE is a symlink to the repo's MIT license — Zed requires a license at the extension path, not just at the repo root, and rejects the PR in CI without one.

> Zed plans to deprecate MCP server extensions > in favor of the official MCP registry. If that lands, publishing @upstash/mcp-server to > registry.modelcontextprotocol.io replaces this > extension.

Scripts

ScriptCommandDescription
buildnpm run buildRegenerates skills/upstash/ from all individual skills.
checknpm run checkRuns the build, then fails if there is a git diff — used in CI to ensure the generated output is committed.

CI

The GitHub Actions workflow (.github/workflows/check.yml) runs npm run check on every push and PR. If you forget to run npm run build before pushing, CI will fail.