Changelog: bump to 1.2.0 unreleased
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.1.1 — Unreleased
|
## 1.2.0 — Unreleased
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
- Web relay now supports configurable command heartbeats (`inbound.reply.heartbeatMinutes`, default 30m) that ping Claude with a `HEARTBEAT_OK` sentinel; outbound messages are skipped when the token is returned, and normal/verbose logs record each heartbeat tick.
|
- Web relay now supports configurable command heartbeats (`inbound.reply.heartbeatMinutes`, default 30m) that ping Claude with a `HEARTBEAT_OK` sentinel; outbound messages are skipped when the token is returned, and normal/verbose logs record each heartbeat tick.
|
||||||
|
|||||||
@@ -181,6 +181,10 @@ Examples:
|
|||||||
.description("Trigger a heartbeat poll once (web provider, no tmux)")
|
.description("Trigger a heartbeat poll once (web provider, no tmux)")
|
||||||
.option("--provider <provider>", "auto | web", "auto")
|
.option("--provider <provider>", "auto | web", "auto")
|
||||||
.option("--to <number>", "Override target E.164; defaults to allowFrom[0]")
|
.option("--to <number>", "Override target E.164; defaults to allowFrom[0]")
|
||||||
|
.option(
|
||||||
|
"--session-id <id>",
|
||||||
|
"Force a session id for this heartbeat (resumes a specific Claude session)",
|
||||||
|
)
|
||||||
.option(
|
.option(
|
||||||
"--all",
|
"--all",
|
||||||
"Send heartbeat to all active sessions (or allowFrom entries when none)",
|
"Send heartbeat to all active sessions (or allowFrom entries when none)",
|
||||||
@@ -194,6 +198,7 @@ Examples:
|
|||||||
warelay heartbeat # uses web session + first allowFrom contact
|
warelay heartbeat # uses web session + first allowFrom contact
|
||||||
warelay heartbeat --verbose # prints detailed heartbeat logs
|
warelay heartbeat --verbose # prints detailed heartbeat logs
|
||||||
warelay heartbeat --to +1555123 # override destination
|
warelay heartbeat --to +1555123 # override destination
|
||||||
|
warelay heartbeat --session-id <uuid> --to +1555123 # resume a specific session
|
||||||
warelay heartbeat --all # send to every active session recipient or allowFrom entry`,
|
warelay heartbeat --all # send to every active session recipient or allowFrom entry`,
|
||||||
)
|
)
|
||||||
.action(async (opts) => {
|
.action(async (opts) => {
|
||||||
@@ -246,6 +251,7 @@ Examples:
|
|||||||
to,
|
to,
|
||||||
verbose: Boolean(opts.verbose),
|
verbose: Boolean(opts.verbose),
|
||||||
runtime: defaultRuntime,
|
runtime: defaultRuntime,
|
||||||
|
sessionId: opts.sessionId,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
|
|||||||
Reference in New Issue
Block a user