You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,8 @@ and agents attention now? actually sees to th
68
68
- issue-aware operator language such as `review required`, `blocked`, and targeted recommended moves
69
69
- agent-aware routing that distinguishes known company agents from human/operator roles when issue text references them
70
70
- a plugin-local deterministic semantic mapping layer that interprets Paperclip issue, approval, and agent signals before publishing them into Aperture Core
71
+
- richer semantic continuity hints on mapped issue events, including `supersedes` and `resolves` relationships where Paperclip-specific intent is clear
72
+
- document-aware review interpretation for memo/spec-backed issues so Focus can tell the difference between `review is blocked on the artifact` and `the artifact is attached, monitor instead`
71
73
- dynamic re-stacking so items can move between `now`, `next`, and `ambient` as new evidence arrives
72
74
- inline issue commenting from the Focus surface when a Paperclip issue supports written response
73
75
- durable acknowledge/suppression behavior backed by plugin state and ledger replay
@@ -104,14 +106,19 @@ Before releasing, run:
104
106
pnpm release:check
105
107
```
106
108
107
-
For a live local Paperclip smoke test:
109
+
For a live local Paperclip smoke test, start Paperclip first:
108
110
109
111
```bash
110
112
pnpm build
113
+
npx paperclipai run -i default
114
+
```
115
+
116
+
Then, in a second terminal:
117
+
118
+
```bash
111
119
npx paperclipai context set --api-base http://localhost:3100
`0.2.2` keeps the `0.2.x` product surface intact while tightening the semantic bridge into Aperture Core and making review flows more document-aware.
4
+
5
+
## Highlights
6
+
7
+
- Added richer semantic continuity hints on mapped issue events
8
+
- Added better semantic confidence shaping for plugin-authored issue semantics
9
+
- Added document-aware review interpretation for memo/spec-backed issues
10
+
- Added `issue.documents.read` support to the plugin worker
11
+
12
+
## What Changed
13
+
14
+
- issue events now project clearer core-shaped relation hints such as:
15
+
-`same_issue`
16
+
-`supersedes`
17
+
-`resolves`
18
+
- the plugin no longer over-stamps confidence on approval and failure paths when core can infer it from the canonical event shape
19
+
- reconciliation now checks issue documents for blocked and `in_review` issues
20
+
- if a review-blocking memo/spec request has been satisfied by a later document attachment, Focus downgrades that item from interruptive review work into monitor-only follow-up
21
+
22
+
## Why This Matters
23
+
24
+
- better semantic relation hints improve continuity and episode-tracking behavior in Aperture Core without forcing the plugin to abandon its Paperclip-specific ontology
25
+
- document-aware review handling makes Focus less stale in real Paperclip workflows where the critical artifact lives on the issue, not just in comments
26
+
- the architectural line remains the same:
27
+
- Aperture Core owns bounded semantic substrate and attention judgment
28
+
- paperclip-aperture owns Paperclip-specific interpretation and operator language
29
+
30
+
## Dependency Snapshot
31
+
32
+
-`@tomismeta/aperture-core@^0.4.0`
33
+
-`@paperclipai/plugin-sdk@2026.318.0`
34
+
35
+
## Validation
36
+
37
+
-`pnpm test`
38
+
-`pnpm typecheck`
39
+
-`pnpm build`
40
+
- live smoke-tested against a running local Paperclip instance, including document attach -> ambient downgrade behavior
0 commit comments