@inference-gateway/cli 0.166.0 → 0.167.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.
Files changed (2) hide show
  1. package/README.md +7 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1048,7 +1048,7 @@ export INFER_CHANNELS_TELEGRAM_ALLOWED_USERS="123456789"
1048
1048
  **4. Start the channel listener:**
1049
1049
 
1050
1050
  ```bash
1051
- infer channels-manager
1051
+ infer daemon
1052
1052
  ```
1053
1053
 
1054
1054
  **5. Send a message** to your bot in Telegram - the agent will respond.
@@ -1094,9 +1094,10 @@ For detailed documentation including custom channel development, see [Channels D
1094
1094
 
1095
1095
  ### Scheduled Tasks
1096
1096
 
1097
- When the channels-manager daemon is running, you can ask the bot to schedule
1098
- prompts on a cron schedule. The agent's response is delivered back through
1099
- the originating channel (e.g. the Telegram chat where you set it up).
1097
+ When the daemon is running, the agent can schedule prompts on a cron
1098
+ schedule. Every fire runs an agent and records the run to storage; jobs
1099
+ created from a channel chat (e.g. Telegram) additionally deliver the
1100
+ response back through that channel.
1100
1101
 
1101
1102
  > *"Send me an inspiring quote every day at 8 AM"* - recurring
1102
1103
  > *"Remind me at 6pm today to call mum"* - one-off (deletes itself after firing)
@@ -1128,7 +1129,7 @@ walkthroughs, see [Scheduling Documentation](docs/scheduling.md).
1128
1129
  Heartbeat wakes the agent on a fixed interval - without any user input -
1129
1130
  so it can check for pending todos, background tasks, or anything else
1130
1131
  your system prompt tells it to monitor. It runs alongside the scheduler
1131
- inside the `infer channels-manager` daemon and is **disabled by default**.
1132
+ inside the `infer daemon` process and is **disabled by default**.
1132
1133
 
1133
1134
  Unlike the [Schedule](docs/scheduling.md) tool (which the LLM uses to
1134
1135
  create user-driven cron jobs that deliver to a channel), heartbeat is a
@@ -1154,7 +1155,7 @@ wake-up behaviour separately from chat-mode behaviour.
1154
1155
  Then start the daemon:
1155
1156
 
1156
1157
  ```bash
1157
- infer channels-manager
1158
+ infer daemon
1158
1159
  ```
1159
1160
 
1160
1161
  Heartbeat alone is a valid run mode - you don't need any channel
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference-gateway/cli",
3
- "version": "0.166.0",
3
+ "version": "0.167.0",
4
4
  "description": "A Git-first CLI coding agent that turns ideas, issues, and tasks into real code changes.",
5
5
  "bin": {
6
6
  "infer": "bin/run.js"