portable-agent-layer 0.55.0 → 0.55.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.
@@ -132,3 +132,4 @@ User: "mark <project> as complete"
132
132
  - Always check `list` (or `resume <name>`) before writing — match an existing project rather than spawning a near-duplicate.
133
133
  - Slugs are `[a-z0-9_-]+`. Never rename a slug; if the display name needs to change, that's a code-side concern, not a slug change.
134
134
  - The Stop hook handles `updated` automatically when cwd matches `path` — no manual touch needed just to mark a project alive.
135
+ - **Always announce a new ISC with the 🎟️ emoji — every single time, no exceptions.** Whenever you open an ISC (`add-isc`), report it back to the user on its own line prefixed with the ticket emoji and the ISC number, e.g. `🎟️ ISC #71 — <title>`. This holds in every response mode and context (ALGORITHM, NATIVE, or a bare reply); opening an ISC without the 🎟️ marker is a defect.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "portable-agent-layer",
3
- "version": "0.55.0",
3
+ "version": "0.55.1",
4
4
  "description": "PAL — Portable Agent Layer: persistent personal context for AI coding assistants",
5
5
  "type": "module",
6
6
  "bin": {
@@ -375,7 +375,14 @@ function cmdAddIsc(args: string[]): void {
375
375
  p.criteria = current ? `${current.trimEnd()}\n${newLine}` : newLine;
376
376
  p.updated = now();
377
377
  writeProject(p);
378
- ok({ added: true, id, title });
378
+ ok({
379
+ added: true,
380
+ id,
381
+ title,
382
+ announce: `🎟️ ISC #${id} — ${title}`,
383
+ reminder:
384
+ "Surface the `announce` line to the user verbatim, on its own line. Every ISC you open MUST be announced with the 🎟️ ticket marker, in any response mode — omitting it is a defect.",
385
+ });
379
386
  }
380
387
 
381
388
  function cmdCompleteIsc(args: string[]): void {