hotsheet 0.16.1 → 0.16.2-rc.1
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 +7 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -16536,6 +16536,13 @@ async function buildWorkflowInstructions(port, secretHeader) {
|
|
|
16536
16536
|
sections.push('You can also include `"details"` in the defaults object for longer descriptions.');
|
|
16537
16537
|
sections.push("Set `up_next: true` only for items that should be prioritized immediately.");
|
|
16538
16538
|
sections.push("");
|
|
16539
|
+
sections.push("## Uploading Attachments");
|
|
16540
|
+
sections.push("");
|
|
16541
|
+
sections.push("You can attach files to tickets via multipart form upload (NOT JSON):");
|
|
16542
|
+
sections.push(` \`curl -s -X POST http://localhost:${port}/api/tickets/{id}/attachments${secretHeader} -F "file=@/path/to/file.png"\``);
|
|
16543
|
+
sections.push("");
|
|
16544
|
+
sections.push("Do NOT set `Content-Type: application/json` \u2014 curl sets the multipart boundary automatically with `-F`.");
|
|
16545
|
+
sections.push("");
|
|
16539
16546
|
sections.push("## Requesting User Feedback");
|
|
16540
16547
|
sections.push("");
|
|
16541
16548
|
sections.push("When you need input from the user before continuing, add a note where the **entire note text begins** with one of these exact prefixes:");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hotsheet",
|
|
3
|
-
"version": "0.16.1",
|
|
3
|
+
"version": "0.16.2-rc.1",
|
|
4
4
|
"description": "A lightweight local project management tool. Create, categorize, and prioritize tickets with a fast bullet-list interface, then export an Up Next worklist for AI tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|