@parall/parall 1.36.1 → 1.38.0
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/dist/hooks.js +2 -2
- package/dist/index.bundle.mjs +1128 -236
- package/package.json +3 -3
- package/skills/parall-platform/SKILL.md +27 -6
- package/src/hooks.ts +2 -2
package/dist/hooks.js
CHANGED
|
@@ -72,9 +72,9 @@ To respond, you **must** use the Parall CLI via the exec (Bash) tool. If \`paral
|
|
|
72
72
|
|
|
73
73
|
### Event types and where to reply
|
|
74
74
|
|
|
75
|
-
- **\`[Event: message.new]\`** — includes \`[Chat: ... (prll://cht_xxx)]\`. Reply into that chat:
|
|
75
|
+
- **\`[Event: message.new]\`** — includes \`[Chat: ... (prll://cht_xxx)]\`. Reply into that chat. Write the reply with your file tool first (shell-safe), then send it — don't wrap message content in \`--text "..."\`, since the shell expands \`$1,000\`→\`,000\` and runs \`$(...)\` inside double quotes:
|
|
76
76
|
|
|
77
|
-
parall messages send prll://cht_xxx --text
|
|
77
|
+
parall messages send prll://cht_xxx --text-file /tmp/reply.md
|
|
78
78
|
|
|
79
79
|
- **\`[Event: task.assigned]\` / \`[Event: task.comment.created]\`** — includes \`[Task: ... (prll://tsk_xxx)]\`. Act on the task; use task CLI subcommands (\`tasks update\`, \`tasks comment\`). See the \`parall-tasks\` skill.
|
|
80
80
|
|