macroclaw 0.45.0 → 0.46.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/package.json
CHANGED
package/src/claude.test.ts
CHANGED
|
@@ -479,7 +479,7 @@ describe("Claude factory", () => {
|
|
|
479
479
|
claude.newSession(textResult);
|
|
480
480
|
const args = spawnArgs();
|
|
481
481
|
expect(args).toContain("--disallowedTools");
|
|
482
|
-
expect(args).toContain("CronList,CronDelete,CronCreate,AskUserQuestion");
|
|
482
|
+
expect(args).toContain("CronList,CronDelete,CronCreate,AskUserQuestion,RemoteTrigger");
|
|
483
483
|
});
|
|
484
484
|
|
|
485
485
|
it("spawns with stdin: pipe, stdout: pipe, stderr: pipe", () => {
|
package/src/claude.ts
CHANGED
|
@@ -257,7 +257,7 @@ export class Claude {
|
|
|
257
257
|
"--input-format", "stream-json",
|
|
258
258
|
"--output-format", "stream-json",
|
|
259
259
|
"--verbose",
|
|
260
|
-
"--disallowedTools", "CronList,CronDelete,CronCreate,AskUserQuestion",
|
|
260
|
+
"--disallowedTools", "CronList,CronDelete,CronCreate,AskUserQuestion,RemoteTrigger",
|
|
261
261
|
];
|
|
262
262
|
|
|
263
263
|
if (mode.kind === "resume") {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: schedule
|
|
2
|
+
name: schedule-event
|
|
3
3
|
description: "Schedule events, reminders, and recurring tasks. Use when the user wants to: set a reminder, schedule something for later, create a recurring task, set up a periodic check, automate a prompt on a schedule, or plan a one-time or repeating event at a specific time."
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -63,6 +63,8 @@ Skills live in `.claude/skills/`.
|
|
|
63
63
|
|
|
64
64
|
When creating new skills, always put them in `.claude/skills/` within this workspace.
|
|
65
65
|
|
|
66
|
+
**Never use the built-in `/schedule` skill** — it manages cloud remote triggers which we don't use. Always use `/schedule-event` for scheduling.
|
|
67
|
+
|
|
66
68
|
**Before using a skill**, check `TOOLS.md` for operational notes — custom instructions, overrides, workarounds, and tips that supplement the skill's own SKILL.md. Update `TOOLS.md` when you discover new issues or tricks.
|
|
67
69
|
|
|
68
70
|
## Workspace Structure — Keep It Clean!
|
|
@@ -79,7 +81,7 @@ When creating new skills, always put them in `.claude/skills/` within this works
|
|
|
79
81
|
Structure:
|
|
80
82
|
- `.claude/skills/` — local agent skills
|
|
81
83
|
- `memory/` — daily logs (YYYY-MM-DD.md)
|
|
82
|
-
- `data/schedule.json` — scheduled events and reminders (hot-reloaded, no restart needed) (use schedule skill to modify)
|
|
84
|
+
- `data/schedule.json` — scheduled events and reminders (hot-reloaded, no restart needed) (use schedule-event skill to modify)
|
|
83
85
|
|
|
84
86
|
## Safety
|
|
85
87
|
|