DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Macos Calendar — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
M

dsh-macos-calendar

Macos Calendar

DSH plugin dsh-macos-calendar

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:nicecx/dsh-macos-calendar#6d9d2d7df9f25845d78944955010575d216bf326
READMECompatibilityVersions

Description

DSH plugin dsh-macos-calendar

Compatibility and provenance

Macos Calendar is published as dsh-macos-calendar and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/24/2026

Versions

0.1.0stable
8/24/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/29/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the web GUI

README

dsh-macos-calendar

A host-side plugin for DeepSeek Harness (DSH) that gives agents real macOS Calendar integration: create, list, query and delete events in the Apple Calendar app through AppleScript (EventKit automation).

Unlike in-GUI calendar plugins (e.g. MAGMA27/dsh-calendar, which schedules Agent runs inside the DSH web UI), this plugin writes real system calendar events — they sync to iCloud and appear in Calendar on all your devices.

Tools

ToolDescription
calendar_listList all calendar names (read-only)
calendar_addCreate an event: title, start/end YYYY-MM-DD HH:MM, calendar, notes, alert_minutes
calendar_eventsList events of a calendar for the next N days (read-only)
calendar_deleteDelete events whose summary contains a title (pass from to protect old events)

Usage in any DSH session: just ask "add a calendar event on ..." — the agent calls the tools directly. The tools run inside the dsh web host process, so no per-session approval is needed once the macOS automation permission is granted.

Install

dsh plugin --profile web add /path/to/dsh-macos-calendar
# restart dsh web

Requires Node >= 22, macOS, and Automation permission for the host process (System Settings → Privacy & Security → Automation → allow the dsh host to control Calendar). The permission prompt appears on the first osascript call.

Notes for plugin authors (Cordis 4)

This plugin consumed ctx.tools and initially crashed the whole dsh web with cannot get property "tools" without inject (231 crash-loop restarts). Cordis 4 requires every consumed service to be declared:

export const inject = ['tools']   // module export form
apply.inject = ['tools']          // function-property form (loader reads this)

Keep both forms so the include loader resolves the dependency regardless of which form it reads.

AppleScript date strings depend on the system locale (an ISO string was parsed as year 12194 in testing) — always construct dates via date components (set year/month/day/hours/minutes of d to ...), which is locale-independent.

License

MIT

Development

npm test            # unit tests (node:test, zero deps)

See TROUBLESHOOTING.md for permission and osascript failure diagnosis.