instar 0.25.6 → 0.25.7
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/cli.js +0 -0
- package/dist/commands/server.js +1 -1
- package/dist/commands/server.js.map +1 -1
- package/dist/core/SessionManager.js +1 -1
- package/dist/core/SessionManager.js.map +1 -1
- package/dist/messaging/slack/SlackAdapter.d.ts +5 -0
- package/dist/messaging/slack/SlackAdapter.d.ts.map +1 -1
- package/dist/messaging/slack/SlackAdapter.js +65 -1
- package/dist/messaging/slack/SlackAdapter.js.map +1 -1
- package/dist/scheduler/JobScheduler.d.ts.map +1 -1
- package/dist/scheduler/JobScheduler.js +9 -3
- package/dist/scheduler/JobScheduler.js.map +1 -1
- package/package.json +1 -1
- package/src/data/builtin-manifest.json +5 -5
- package/upgrades/0.25.5.md +19 -0
- package/upgrades/0.25.6.md +21 -5
- package/upgrades/0.25.7.md +18 -0
- /package/.claude/skills/secret-setup/{skill.md → SKILL.md} +0 -0
package/dist/cli.js
CHANGED
|
File without changes
|
package/dist/commands/server.js
CHANGED
|
@@ -2381,7 +2381,7 @@ export async function startServer(options) {
|
|
|
2381
2381
|
if (imagePath === 'download-failed') {
|
|
2382
2382
|
return '[User sent a photo but the download failed]';
|
|
2383
2383
|
}
|
|
2384
|
-
return `[User sent a photo — read the image file at ${imagePath} to view it]`;
|
|
2384
|
+
return `[User sent a photo — read the image file at ${imagePath} to view it. If the image cannot be processed, acknowledge you received it and describe what you can see, or let the user know the image format may not be supported.]`;
|
|
2385
2385
|
}).replace(/\[document:([^\]]+)\]/g, (_, docPath) => {
|
|
2386
2386
|
if (docPath === 'download-failed') {
|
|
2387
2387
|
return '[User sent a file but the download failed]';
|