dsh-aimail 0.1.0-rc.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,26 @@
1
+ # agentmail bundle layer — mounted via `dsh plugin --profile web add agentmail`.
2
+ # Entry list identical to the mail preset: persona + host services + tools.
3
+
4
+ # ── identity ────────────────────────────────────────────────────────────────
5
+
6
+ - id: persona
7
+ name: '@deepseek-ai/dsh-persona'
8
+ config:
9
+ text: >-
10
+ You are an email-capable agent on AgentMail. Use send_mail to reply to
11
+ inbound mail; manage_contacts for your whitelist; contact_profile /
12
+ set_contact_profile for contact context; email_summary /
13
+ set_email_summary for thread notes; board_* tools for A2A board work.
14
+
15
+ # ── AgentMail host services ─────────────────────────────────────────────────
16
+
17
+ - id: mail
18
+ name: '@agentmail/mail'
19
+
20
+ - id: mail-inbound
21
+ name: '@agentmail/mail-inbound'
22
+
23
+ # ── AgentMail tools (bare names) ────────────────────────────────────────────
24
+
25
+ - id: tool-mail
26
+ name: '@agentmail/tool-mail'
package/lib/index.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * agentmail — dsh bundle entry. The bundle patch (cordis.patch.yml) mounts
3
+ * mail / mail-inbound / tool-mail + persona; this entry exposes the shared
4
+ * core API for programmatic use. Installed via:
5
+ * dsh plugin --profile web add agentmail
6
+ */
7
+ export * from '@meterwei/mail-core';
8
+ //# sourceMappingURL=index.d.ts.map
package/lib/index.js ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * agentmail — dsh bundle entry. The bundle patch (cordis.patch.yml) mounts
3
+ * mail / mail-inbound / tool-mail + persona; this entry exposes the shared
4
+ * core API for programmatic use. Installed via:
5
+ * dsh plugin --profile web add agentmail
6
+ */
7
+ export * from '@meterwei/mail-core';
8
+ //# sourceMappingURL=index.js.map
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "dsh-aimail",
3
+ "description": "AgentMail plugin for dsh — install via: dsh plugin --profile web add dsh-aimail",
4
+ "version": "0.1.0-rc.8",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/metercai/dsh-agentmail.git",
11
+ "directory": "packages/agentmail"
12
+ },
13
+ "type": "module",
14
+ "main": "lib/index.js",
15
+ "types": "lib/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./lib/index.d.ts",
19
+ "default": "./lib/index.js"
20
+ },
21
+ "./package.json": "./package.json"
22
+ },
23
+ "files": [
24
+ "lib/**/*.js",
25
+ "lib/**/*.d.ts",
26
+ "cordis.patch.yml"
27
+ ],
28
+ "dsh": {
29
+ "bundle": {
30
+ "patch": "./cordis.patch.yml"
31
+ }
32
+ },
33
+ "license": "GPL-3.0",
34
+ "peerDependencies": {
35
+ "@deepseek-ai/cordis": "^4.0.1"
36
+ },
37
+ "dependencies": {
38
+ "@meterwei/mail-core": "^0.1.0-rc.6",
39
+ "@meterwei/mail": "^0.1.0-rc.6",
40
+ "@meterwei/tool-mail": "^0.1.0-rc.6",
41
+ "@meterwei/mail-inbound": "^0.1.0-rc.6"
42
+ },
43
+ "devDependencies": {
44
+ "@deepseek-ai/cordis": "^4.0.1"
45
+ }
46
+ }