@rync/moorline-discord-default 0.0.2
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.
- package/index.mjs +9 -0
- package/manifest.json +21 -0
- package/moorline.dist.json +26 -0
- package/package.json +36 -0
- package/packages/plugins/rync/discord-runtime/index.mjs +1195 -0
- package/packages/plugins/rync/discord-runtime/manifest.json +37 -0
- package/packages/plugins/rync/discord-runtime/modules/routing/coordination.md +9 -0
- package/packages/plugins/rync/discord-runtime/modules/routing/session.md +7 -0
- package/packages/plugins/rync/discord-runtime/moorline.dist.json +8 -0
- package/packages/transports/rync/discord/index.mjs +76839 -0
- package/packages/transports/rync/discord/manifest.json +48 -0
- package/packages/transports/rync/discord/moorline.dist.json +26 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "rync/discord-runtime",
|
|
3
|
+
"name": "rync/discord-runtime",
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"type": "plugin",
|
|
6
|
+
"description": "Discord runtime commands and message routing for Moorline.",
|
|
7
|
+
"entrypoint": "index.mjs",
|
|
8
|
+
"priority": 100,
|
|
9
|
+
"capabilities": [
|
|
10
|
+
"runtime.control",
|
|
11
|
+
"memory.read",
|
|
12
|
+
"transport.message.send",
|
|
13
|
+
"transport.resource.create",
|
|
14
|
+
"transport.resource.update",
|
|
15
|
+
"transport.resource.delete",
|
|
16
|
+
"net.connect",
|
|
17
|
+
"fs.read",
|
|
18
|
+
"session.inspect",
|
|
19
|
+
"session.create",
|
|
20
|
+
"session.archive",
|
|
21
|
+
"session.delete"
|
|
22
|
+
],
|
|
23
|
+
"hooks": [
|
|
24
|
+
"onAction",
|
|
25
|
+
"onDomainEvent",
|
|
26
|
+
"onTransportEvent"
|
|
27
|
+
],
|
|
28
|
+
"defaultEnabled": true,
|
|
29
|
+
"dependencies": [
|
|
30
|
+
{
|
|
31
|
+
"surface": "transport",
|
|
32
|
+
"packageId": "rync/discord",
|
|
33
|
+
"requiredState": "active",
|
|
34
|
+
"reason": "Discord runtime routing and commands depend on the rync Discord transport."
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
You are replying inside the Moorline discord coordination resource.
|
|
2
|
+
|
|
3
|
+
This surface is for coordination, planning, normal assistant conversation, and direct machine-level work when requested.
|
|
4
|
+
|
|
5
|
+
This surface uses the configured Moorline default runtime mode.
|
|
6
|
+
|
|
7
|
+
This is not a durable worker workspace. Use it for direct runtime-root work, inspection, and coordination. Create managed sessions when the work needs an isolated workspace or long-running delegation.
|
|
8
|
+
|
|
9
|
+
You may still use approved Moorline tools that operate on runtime-owned surfaces, such as skills.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
You are replying inside a Moorline discord session resource backed by a live Pi workspace thread.
|
|
2
|
+
|
|
3
|
+
This surface supports both assistant help and runtime work.
|
|
4
|
+
|
|
5
|
+
When the user asks for work, do the work in the session workspace and then report the outcome clearly.
|
|
6
|
+
|
|
7
|
+
When the user is asking a general question, answer naturally instead of forcing a workspace summary.
|