@fickydev/pigent 0.1.11 → 0.1.12
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/CHANGELOG.md +1 -0
- package/package.json +1 -1
- package/src/daemon/AgentDaemon.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
- Added session-scoped model and thinking level overrides with `/model` and `/thinking` Telegram commands.
|
|
59
59
|
- Planned Telegram inline-button model and thinking level pickers backed by configured model choices.
|
|
60
60
|
- Added Telegram inline-button pickers for `/model` and `/thinking`, callback handling, and bot command menu registration.
|
|
61
|
+
- Added `/task` to Telegram bot command list (shows subcommands in help text).
|
|
61
62
|
- Changed `/model` picker to use Pi's currently available models automatically when explicit `modelChoices` are not configured.
|
|
62
63
|
- Kept daemon process alive after startup so CLI runs do not exit after `pigent ready`.
|
|
63
64
|
|
package/package.json
CHANGED
|
@@ -181,5 +181,6 @@ function telegramCommands() {
|
|
|
181
181
|
{ command: "model", description: "Choose model for this chat session" },
|
|
182
182
|
{ command: "thinking", description: "Choose thinking level for this chat session" },
|
|
183
183
|
{ command: "agent", description: "Send message to a specific agent" },
|
|
184
|
+
{ command: "task", description: "Manage scheduled tasks" },
|
|
184
185
|
];
|
|
185
186
|
}
|