快速了解
它能做什么
一个可从固定 Git 源交付、用于在 Cordis 中注册 @open-pets/dsh 的 DSH 套件。
本站提供的是中文说明,不代表该项目或 Plugin 自身提供中文界面;语言支持请以上游文档为准。
dsh Profile, cordis Profile
Not declared in supplied evidence
证据已验证
核对日期 2026/9/15 UTC 14:31
有代码证据的贡献
它为 DSH 增加什么
通过 Cordis 补丁注册 @open-pets/dsh 包。
机制证据 ↗选择前先看
该套件包含 @open-pets/dsh 包及其 DSH 补丁,补丁会将其作为 openpets-dsh 插入。包声明 @deepseek-ai/cordis ^4.0.1 为对等依赖。
适合谁
希望从固定仓库源向 Cordis 环境添加 OpenPets 包的 DSH 与 Cordis 用户。
常见任务
- 向基于 Cordis 的配置添加 OpenPets DSH 包。
- 安装前审查固定版本的套件清单和补丁。
- 当对应 npm 包版本不可用时,使用基于 Git 的套件来源。
权限与数据
提供的套件清单未声明运行时权限或数据处理方式。
局限
- 提供的证据中没有安装脚本。
- 提供的分发证据中未找到对应 npm 包版本。
- 未执行或验证运行时行为、权限和安装成功情况。
DSHub 已核对
- 源提交已固定。
- 包结构和 DSH 补丁已验证。
- 补丁会将 @open-pets/dsh 作为 openpets-dsh 插入。
DSHub 未核对
- 在 DSH 宿主中的安装。
- 除已声明 Cordis 对等依赖外的运行时兼容性。
- 任何运行时数据访问或网络行为。
固定版本安装
安装 OpenPets DSH Bundle
这个Plugin Bundle没有 DSH Plugin 安装操作,请根据源码文档使用真实交付方式。
维护者原文
项目 README
Download OpenPets
Download the latest OpenPets desktop release and launch it. A pet appears immediately; no agent setup required.
- Desktop pets: animated companions that idle, wander, react, and keep your workspace from feeling empty.
- Official plugins: focus timers, reminders, mood check-ins, mini games, launch shortcuts, hydration nudges, and virtual-pet stats.
- Plugin SDK v3: a sandboxed JavaScript/TypeScript runtime for building new pet abilities with permissions, quotas, storage, schedules, commands, panels, events, audio, notifications, and more.
- Optional agent layer: Claude Code, OpenCode, Cursor, Pi, and MCP clients can drive local pet reactions without exposing prompts, code, paths, logs, or secrets in speech bubbles.
Star OpenPets
If OpenPets makes your coding setup or desktop workspace a little more fun, please give the repo a star.
<p align="center"> <img src="assets/star-repo.gif" alt="Starring the OpenPets repository" width="100%" /> </p>For Users: Getting Started
You do not need to be a developer or connect any AI agents to enjoy OpenPets. The desktop app is fully functional out of the box with the official plugin lineup.
1. Install OpenPets Desktop
Download the package for your operating system from OpenPets Releases:
- macOS Apple Silicon:
OpenPets-*-mac-arm64.dmg - macOS Intel:
OpenPets-*-mac-x64.dmg - Windows:
OpenPets-*-win-x64-setup.exe - Linux:
OpenPets-*-linux-x86_64.AppImage
Note: Windows release installers are signed. macOS builds may still be unsigned and can trigger a security warning; if macOS blocks execution, remove the quarantine flag via terminal:
xattr -dr com.apple.quarantine /Applications/OpenPets.app
2. Manage and Customize Pets
Browse installed pets, preview their animation frames, and configure which pet monitors each workspace or agent window from the built-in Pet Gallery.
<p align="center"> <img src="assets/manage-pets.png" alt="Managing pets in the OpenPets desktop app" width="100%" /> </p>3. Enable Official Plugins
OpenPets v3 ships with a modular Official Plugin Catalog. Enable or configure plugins via the desktop Control Center to add focus timers, reminders, and mini interactive games.
Shipped official lineup
- Day Routine: Tracks habits and reminds you to stretch or step away.
- Focus Buddy: Pomodoro-style focus timers to manage work cycles.
- Fortune Cookie: Cracks open randomized daily advice and wisdom.
- Launch Buddy: Allows registering shortcut commands to quickly open local folders, projects, or applications.
- Magic 8 Ball: Ask questions and receive playful, randomized answers from your pet.
- Mood Check-in: Periodically checks in on your mood to support emotional well-being.
- Reminders: Renders snoozeable, bell-alert notifications with custom audio tones.
- Virtual Pet: Turns your desktop companion into a Tamagotchi-style pet with hunger, affection, and energy levels tracked via a live status pin.
- Water Reminder: Keeps you hydrated with regular, customizable drinking prompts.
Plugin Platform & SDK v3
The OpenPets plugin system offers a secure, developer-friendly SDK (@open-pets/plugin-sdk) for creating custom companion behavior.
Security & Architecture
- Sandboxed Runtime: Each JS plugin runs inside a sandboxed BrowserWindow host environment.
- Host-Rendered UI: Plugins describe actions, HUDs, and notifications; the desktop host renders them. HTML/JS code cannot render raw HTML or execute arbitrary scripting inside a pet window.
- Permissions Model: Permissions must be declared in the manifest and approved by the user at install. Flagged sensitive APIs (like
voice:listen,clipboard, andpet:speak:dynamic) require explicit consent toggles. - SSRF & Private Host Guards: Network fetch requests are limited to developer-declared hostnames and guarded against local SSRF.
The SDK surface (ctx)
Plugins hook into the desktop environment via the ctx object, exposing:
ctx.pets/ctx.pet: Manage default and spawned pet instances: spawn, move, animate, and react.ctx.ui: Alerts, transient/pinned bubbles, custom menus, panels, and status HUDs. Pinned mini HUD bubbles support compact 2x2 grid layouts with progress bars, such as Virtual Pet stats.ctx.audio: Trigger host-managed alert tones or user-imported custom audio.ctx.schedule: Set precise timer hooks (once,every,daily,cron,at).ctx.ai/ctx.secrets: Hook into the user's host-configured AI provider (Anthropic, OpenAI, Ollama) without exposing API keys to the plugin source.ctx.storage: Simple JSON key-value store with change subscriptions.- Other APIs:
events,assets,bus,net(with streaming support),notify,voice(TTS & push-to-talk STT),auth(PKCE browser flow),files(secure picked OS dialogs),system,commands,status, andlog.
Developer Tools & Commands
Create, validate, and test plugins using the official CLI.
1. Scaffold a new plugin
Create a template from any of the official layouts (blank, reminder, ambient, ai-chat, tamagotchi, calendar):
npx @open-pets/cli plugin new "My Plugin" --template tamagotchi
2. Validate
Verify manifest layout, permissions, and configuration schemas before packing:
npx @open-pets/cli plugin validate ./my-plugin
3. Test harness
Write deterministic tests without launching the desktop app. Using @open-pets/plugin-sdk/testing's createTestHarness, you can mock the host, advance clocks, trigger actions, and verify reactions:
import { createTestHarness } from "@open-pets/plugin-sdk/testing";
import { register } from "./index.js";
const h = createTestHarness(register, { permissions: ["pet:speak", "schedule"] });
await h.start();
h.expectScheduled("decay");
await h.clock.advance("30m");
h.expectSpoke(/need attention/i);
Run plugin tests from your plugin project:
npm test
Advanced: Agent Integrations
If you want your development agent to drive your desktop companion, OpenPets provides an optional local MCP (Model Context Protocol) integration layer.
<p align="center"> <img src="assets/integrations.png" alt="OpenPets desktop integrations screen" width="100%" /> </p>How it works
When you configure an agent, OpenPets exposes standard MCP tools. The agent can trigger animations, change status, and display text bubbles locally:
- Claude Code: Installs OpenPets MCP, memory instructions in
~/.claude/CLAUDE.md, and hooks in~/.claude/settings.json. - OpenCode: Installs OpenPets MCP, custom project instruction files, and the
@open-pets/opencodeautomatic hook plugin. - Cursor / Other MCP Clients: Register OpenPets as a standard stdio or TCP MCP server.
Diagnose your setup
Check whether the Claude hook and project Cursor MCP integrations are installed, need an update, or are broken, and whether the desktop app is reachable:
npx @open-pets/cli doctor
Pass --cwd <path> to inspect a different project's .cursor/mcp.json, or --json for machine-readable output. The command exits non-zero only when an integration is broken, so it is safe to run before reporting a bug.
MCP Server Configuration
To run OpenPets as an MCP tool, add the server to your agent's configuration:
{
"mcpServers": {
"openpets": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@open-pets/mcp@latest"]
}
}
}
Tip: To target a specific pet, pass the --pet <petId> argument.
Available MCP Tools
openpets_status: Retrieve target pet ID and check runtime connectivity.openpets_react: Set pet reaction animations (e.g.,thinking,editing,testing,success,error).openpets_say: Display a short speech bubble.
Local Privacy & Safety
- All automated reactions run on static local triggers (e.g., when a command runs or a file is written).
- Speech content is validated to prevent leaking sensitive variables, paths, secrets, or multiline code snippets.
- Real-time interaction requires a local discovery token write/read, protecting the IPC bridge from external network triggers.
Development Workspace
For contributing to the OpenPets codebase, testing changes, or building the desktop packages locally.
Prerequisites
- Node.js: version 20 or higher
- pnpm: version 11 or higher
- TypeScript: compiler support
Commands
Install project workspace dependencies:
pnpm install
Launch the Electron application in local developer mode:
pnpm dev:desktop
Launch with live official plugins loaded and monitored:
pnpm dev:desktop:plugins
Run workspace typechecking, code-conformance validations, and tests:
pnpm check
pnpm typecheck
pnpm test
Package the desktop application:
# Build & package into target OS directory
pnpm package:desktop:dir
# Build & package into final installer / setup archives
pnpm package:desktop
Workspace Structure
apps/desktop Electron desktop application
packages/client @open-pets/client (IPC helper library)
packages/mcp @open-pets/mcp (Model Context Protocol stdio server)
packages/claude @open-pets/claude (Claude integrations, memory, & hooks)
packages/opencode @open-pets/opencode (OpenCode plugins & instruction configs)
packages/pi @open-pets/pi (Pi CLI extension integration)
packages/agent-events Shared sanitizers and events helper package
packages/cli @open-pets/cli (User entry point CLI for configuration & scaffolding)
packages/sdk @open-pets/plugin-sdk (Plugin SDK v3 declarations & testing harness)
packages/pet-format @open-pets/pet-format (Pet manifest and schema types)
plugins/official Official first-party plugin workspace (bundled with host catalog)
docs/ Technical specifications and architecture documentation
Documentation
Explore detailed architectural and platform documentation inside the docs/ folder:
docs/architecture.md- The one-page mental model: runtime topology, package spine, end-to-end flows.docs/desktop.md- The Electron app: process model, tray-first UX, Control Center, security model.docs/agent-integrations.md- How Claude Code, MCP, OpenCode, Cursor, and Pi are configured.docs/plugins.md- Plugin platform SDK v3 manifest, permissions, and sandboxed runtime.docs/sdk.md- Public SDK v3 contract for plugin authors: capability namespaces, permission surface, test harness.docs/catalog.md- Pet and plugin catalog contracts: v3/v2, pagination, install artifacts.docs/development.md- Developer experience: monorepo layout, command surface, dev modes.docs/testing-and-validation.md- Quality gates: behavior tests, runtime checks, release validators.docs/release.md- Application packaging and release processes.
Ownership & Promise
OpenPets is developed and maintained by Boring Dystopia Development. No foundation, no investors, no hidden agenda — an open project with a named owner. The deal, stated plainly:
- The code is MIT, and stays MIT. Fork it, ship it, remix it, hatch your own pets.
- Local-first, forever. No accounts, no sign-ups, no central AI server. AI features run through connections you configure, with your keys, on your machine.
- The catalog is a convenience, not a leash. Pets and plugins are fetched from
openpets.dev, but the app is fully functional without it. - Users are not the business. OpenPets will never paywall core features, the plugin SDK, or agent integrations — and it will never sell you content you could make yourself for free.
If you want to support the project: star the repo, hatch a pet, share it with a friend.
Safety and Privacy
- Local-Only: OpenPets IPC works using a local socket/named pipe, secured with a per-run random security token.
- SSRF Safety: Plugin network connections are restricted to approved domains and blocked from local network/private IP access.
- Dynamic Content Sanitization: Any dynamic AI-speech text runs through strict local filters to redact paths, URLs, secrets, or multiline code snippets.
- Sensitive Permission Consent: Features accessing clipboard, microphone, or dynamic AI responses are off by default and require explicit user opt-in.
Code signing policy
OpenPets Windows release artifacts are built only by the project's GitHub Actions trusted-build workflow and signed through the configured SignPath release policy. The canonical public policy is openpets.dev/code-signing-policy.
- Maintainer, committer, reviewer, and signing approver: Alvin Unreal.
- Review: Changes to release workflows, signing configuration, or Windows packaging require maintainer review before release approval.
- Scope: SignPath signing is limited to official OpenPets open-source release artifacts.
- Signing ops: The SignPath GitHub workflow may pause on release-signing requests that need approver review; approvals must be completed in the SignPath dashboard before publishing proceeds.
- Privacy: See the Privacy & network behaviour policy.
Free code signing provided by SignPath.io, certificate by SignPath Foundation.
有意识地管理
安装与管理
前置条件与目标 Profile
目标: dsh Profile, cordis Profile
交付方式: Git Bundle — OpenPetsHQ/openpets#e83ead8a63f8eb25be36066602341f0acef2577a。
验证、更新与移除
显示生命周期命令
dsh plugin --profile dsh list兼容性与访问范围
Requires @deepseek-ai/cordis ^4.0.1 as a peer dependency: Not declared in supplied evidence。
风险事实
MIT-licensed source
证据 ↗证据与编辑审查Manifest、Bundle patch、分发与新鲜度
不可变证据
审查状态与源码活动
请使用不可变的 Git 套件路径;不要假定可通过 npm 安装。
AI 审查于 2026/9/15 UTC 14:31。GitHub 事实核对日期: 2026/9/15 UTC 14:31。
自当前证据基线以来,没有记录到重要源码变化。