-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog.html
More file actions
518 lines (507 loc) · 38.3 KB
/
Copy pathchangelog.html
File metadata and controls
518 lines (507 loc) · 38.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>pstack · upstream changelog</title>
<meta name="description" content="Weekly upstream changelog for the pstack plugin in cursor/plugins.">
<meta property="og:title" content="pstack · upstream changelog">
<meta property="og:description" content="Weekly upstream changelog for the pstack plugin in cursor/plugins.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://hustlecoding.github.io/pstack-explained/changelog.html">
<meta property="og:image" content="https://hustlecoding.github.io/pstack-explained/og.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="640">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://hustlecoding.github.io/pstack-explained/og.png">
<link rel="canonical" href="https://hustlecoding.github.io/pstack-explained/changelog.html">
<link rel="alternate" type="text/markdown" href="changelog.md" title="Markdown changelog">
<link rel="alternate" type="application/json" href="changelog.json" title="JSON changelog">
<link rel="alternate" type="text/plain" href="llms.txt" title="LLM context for this site">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="shortcut icon" href="favicon.ico">
<meta name="theme-color" content="#ffffff">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root{
--bg:#ffffff; --ink:#1a1a1a; --soft:#3d3d3d; --dim:#6b6b6b; --faint:#9b9b9b;
--rule:#ededed; --rule2:#e0e0e0;
--accent:#b45309; --accent-soft:#fdf4ea; --accent-line:#e8c39a;
--maxw:880px; --navh:54px;
--ff:"Hanken Grotesk",system-ui,-apple-system,sans-serif;
--ff-mono:"IBM Plex Mono",ui-monospace,monospace;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%}
body{
margin:0; background:var(--bg); color:var(--ink);
font-family:var(--ff); font-size:17px; line-height:1.65;
-webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 clamp(20px,5vw,40px); position:relative}
code{font-family:var(--ff-mono); font-size:.92em; color:var(--accent)}
header.mast{padding:clamp(56px,9vw,96px) 0 clamp(36px,5vw,52px)}
.mark{display:flex; align-items:center; gap:13px; margin-bottom:22px}
.glyph{width:26px; height:26px; position:relative; flex:none}
.glyph i{position:absolute; left:0; height:20%; background:var(--accent); border-radius:1px}
.glyph i:nth-child(1){bottom:0; width:100%; opacity:.4}
.glyph i:nth-child(2){bottom:40%; width:68%; opacity:.65}
.glyph i:nth-child(3){bottom:80%; width:40%}
h1.wordmark{font-family:var(--ff); font-weight:700; font-size:clamp(36px,6vw,50px); letter-spacing:-.025em; margin:0; line-height:1}
h1.wordmark span{color:var(--accent)}
.tagline{font-size:clamp(19px,2.6vw,23px); line-height:1.45; color:var(--soft); max-width:52ch; margin:0 0 18px; font-weight:500; letter-spacing:-.005em}
.tagline em{font-style:normal; color:var(--ink); border-bottom:2px solid var(--accent-line)}
.intro-lead{color:var(--dim); font-size:16px; line-height:1.6; max-width:62ch; margin:0}
nav.bar{position:sticky; top:0; z-index:20; background:rgba(255,255,255,.9); backdrop-filter:blur(8px); border-bottom:1px solid var(--rule)}
nav.bar .wrap{display:flex; gap:2px; padding-top:7px; padding-bottom:7px; overflow-x:auto; scrollbar-width:none}
nav.bar .wrap::-webkit-scrollbar{display:none}
nav.bar a{color:var(--dim); text-decoration:none; font-size:14px; font-weight:500; white-space:nowrap; padding:8px 13px; border-radius:8px; transition:background .15s,color .15s}
nav.bar a:hover,nav.bar a:focus-visible{background:var(--accent-soft); color:var(--accent); outline:none}
nav.bar a[aria-current="page"]{background:var(--accent-soft); color:var(--accent)}
section{padding:clamp(52px,8vw,84px) 0; border-bottom:1px solid var(--rule); scroll-margin-top:var(--navh)}
.sh{margin-bottom:clamp(26px,4vw,38px); max-width:64ch}
.sh .num{color:var(--accent); font-family:var(--ff-mono); font-size:12px; letter-spacing:.04em}
.sh h2{font-weight:600; font-size:clamp(24px,3.6vw,31px); margin:7px 0 12px; letter-spacing:-.018em; line-height:1.15}
.sh .lead{color:var(--dim); font-size:16px; line-height:1.6; margin:0; max-width:60ch}
.changelog-meta{margin:0 0 18px; font-size:14px; color:var(--dim)}
.changelog-meta a{color:var(--accent); text-decoration:none; border-bottom:1px solid var(--accent-line)}
.changelog-meta a:hover{border-bottom-color:var(--accent)}
.changelog-meta .ch-time{font-family:var(--ff-mono); color:var(--faint)}
.changelog-list{animation:rise .5s both}
.changelog-entry{display:flex; gap:18px; align-items:flex-start; padding:15px 0; border-bottom:1px solid var(--rule); animation:rise .5s both}
.changelog-entry:last-child{border-bottom:none}
.changelog-date{flex:none; width:84px; font-family:var(--ff-mono); font-size:12.5px; color:var(--faint); text-align:right; padding-top:3px}
.changelog-body{flex:1}
.changelog-title{font-weight:600; font-size:16px; line-height:1.35; color:var(--ink); margin-bottom:5px}
.changelog-title a{color:inherit; text-decoration:none; border-bottom:1px solid var(--rule)}
.changelog-title a:hover{color:var(--accent); border-bottom-color:var(--accent)}
.changelog-meta .ch-sha{font-family:var(--ff-mono); font-size:12px; color:var(--faint)}
.changelog-empty{color:var(--faint); font-size:15px; margin:12px 0 0}
footer{padding:clamp(40px,6vw,60px) 0 calc(40px + env(safe-area-inset-bottom)); color:var(--faint); font-size:14px; line-height:1.7}
footer p{margin:0 0 8px; max-width:62ch}
footer a{color:var(--accent); text-decoration:none; border-bottom:1px solid var(--accent-line)}
footer a:hover{border-bottom-color:var(--accent)}
@keyframes rise{from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:none}}
@keyframes fade{from{opacity:0} to{opacity:1}}
@media (prefers-reduced-motion:reduce){
*{animation:none !important; transition:none !important}
html{scroll-behavior:auto}
}
@media (max-width:640px){
.changelog-entry{flex-direction:column; gap:6px}
.changelog-date{text-align:left}
}
</style>
</head>
<body>
<header class="mast">
<div class="wrap">
<div class="mark">
<div class="glyph" aria-hidden="true"><i></i><i></i><i></i></div>
<h1 class="wordmark">p<span>stack</span></h1>
</div>
<p class="tagline">Upstream changelog for the <code>pstack</code> plugin in <code>cursor/plugins</code>.</p>
<p class="intro-lead">This page is updated automatically every Monday by a GitHub Actions workflow that polls the pstack directory and appends any new commits.</p>
</div>
</header>
<nav class="bar">
<div class="wrap">
<a href="index.html">Home</a>
<a href="changelog.html" aria-current="page">Changelog</a>
</div>
</nav>
<section id="changelog">
<div class="wrap">
<div class="sh">
<span class="num">01</span>
<h2>Upstream changelog</h2>
<p class="lead">Weekly changes to the <code>pstack</code> plugin in <code>cursor/plugins</code>. We poll the repo and surface any commits that touch the pstack directory.</p>
</div>
<div class="changelog-meta" id="changelog-meta">Tracking <a href="https://github.com/cursor/plugins/tree/main/pstack" target="_blank" rel="noopener">cursor/plugins/pstack</a> · synced <span class="ch-time">July 20, 2026</span></div>
<div class="changelog-list">
<div class="changelog-entry" style="animation-delay:0ms">
<div class="changelog-date">2026-07-14</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/3fe2823ce17c1656c222d4b7c59d3f82fbf20143" target="_blank" rel="noopener">pstack: parity sweep with the private skill tree (#156)</a></div>
<div class="changelog-meta"><span class="ch-sha">3fe2823</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:30ms">
<div class="changelog-date">2026-07-13</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/f4d9e39d979815fee68af6398c693144d5d38521" target="_blank" rel="noopener">poteto-mode: give the perf playbook its eight strategy families (#155)</a></div>
<div class="changelog-meta"><span class="ch-sha">f4d9e39</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:60ms">
<div class="changelog-date">2026-07-12</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/a29f5a8ca161b1de4ffc5484454958bebc04eaa5" target="_blank" rel="noopener">pstack: bump version to 0.11.2 (#154)</a></div>
<div class="changelog-meta"><span class="ch-sha">a29f5a8</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:90ms">
<div class="changelog-date">2026-07-12</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/8f008c41981dca484d5beaf688d3aa2ea4ecf89b" target="_blank" rel="noopener">pstack: add the teach skill (compose how + why into one explanation) (#153)</a></div>
<div class="changelog-meta"><span class="ch-sha">8f008c4</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:120ms">
<div class="changelog-date">2026-07-12</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/20bdb6cdfdd8ffa683befe62d76104e5654c861d" target="_blank" rel="noopener">pstack: bump version to 0.11.1 (#152)</a></div>
<div class="changelog-meta"><span class="ch-sha">20bdb6c</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:150ms">
<div class="changelog-date">2026-07-12</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/6714489fa233263f00e419f6cfc4759b07c81056" target="_blank" rel="noopener">maintain-verification-skill: cleanup granularity, re-doctor, evidence checks (#151)</a></div>
<div class="changelog-meta"><span class="ch-sha">6714489</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:180ms">
<div class="changelog-date">2026-07-12</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/e42d29fd5c8fe4f13e3bee7f53b35f410f65aee8" target="_blank" rel="noopener">pstack: add create-verification-skill and maintain-verification-skill (#150)</a></div>
<div class="changelog-meta"><span class="ch-sha">e42d29f</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:210ms">
<div class="changelog-date">2026-07-11</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/9d2a3f2d12bbe0dca3e61bbc0e9dbfe2df09fb56" target="_blank" rel="noopener">pstack: give poteto-mode a human display name (#149)</a></div>
<div class="changelog-meta"><span class="ch-sha">9d2a3f2</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:240ms">
<div class="changelog-date">2026-07-11</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/9251b2666bc9876396825c1f0df5685dbdaaddb5" target="_blank" rel="noopener">pstack: lead the README with the two-step quickstart (#148)</a></div>
<div class="changelog-meta"><span class="ch-sha">9251b26</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:270ms">
<div class="changelog-date">2026-07-11</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/a8145426e541afa424a403e3866496216c1b8142" target="_blank" rel="noopener">pstack: add model-the-domain principle; true up README (#147)</a></div>
<div class="changelog-meta"><span class="ch-sha">a814542</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:300ms">
<div class="changelog-date">2026-07-09</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/0dda29e839d15464a137af9935665a5a47ee09b8" target="_blank" rel="noopener">pstack: make poteto-mode a sticky mode with a conditional reminder (#144)</a></div>
<div class="changelog-meta"><span class="ch-sha">0dda29e</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:330ms">
<div class="changelog-date">2026-07-08</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/9b80b5349872b2a3404be58bd9236cc9b83833bb" target="_blank" rel="noopener">pstack: route hardest tasks to claude-fable-5-thinking-max (#143)</a></div>
<div class="changelog-meta"><span class="ch-sha">9b80b53</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:360ms">
<div class="changelog-date">2026-07-08</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/dc2fae6625a268361243ca044eb5af141c124704" target="_blank" rel="noopener">pstack: route composer slots to grok-4.5-fast-xhigh (#142)</a></div>
<div class="changelog-meta"><span class="ch-sha">dc2fae6</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:390ms">
<div class="changelog-date">2026-06-24</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/0452e08a314c03621ec5ac1324f1ad1dd824f1a4" target="_blank" rel="noopener">pstack: add Benny issue automation pack (#137)</a></div>
<div class="changelog-meta"><span class="ch-sha">0452e08</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:420ms">
<div class="changelog-date">2026-06-17</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/e46364b8be46000b7df0f260550cd712afbb8d36" target="_blank" rel="noopener">pstack: add recall and blast-radius skills (#135)</a></div>
<div class="changelog-meta"><span class="ch-sha">e46364b</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:450ms">
<div class="changelog-date">2026-06-14</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/cfd81b3961ef5fddc90e9f2994fa1c87cd454e61" target="_blank" rel="noopener">pstack: bump to 0.9.1, list the hillclimb playbook in the README (#133)</a></div>
<div class="changelog-meta"><span class="ch-sha">cfd81b3</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:480ms">
<div class="changelog-date">2026-06-14</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/b64f02a456924867d0d293cdb2f94eaecd25b50a" target="_blank" rel="noopener">poteto-mode: add the Hillclimb playbook and tighten Autonomous run stop semantics (#132)</a></div>
<div class="changelog-meta"><span class="ch-sha">b64f02a</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:510ms">
<div class="changelog-date">2026-06-07</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/74dd2291e8e37b12fd6dc49b2acbd655c6bdaf12" target="_blank" rel="noopener">pstack: sync README with shipped principles and playbooks (#126)</a></div>
<div class="changelog-meta"><span class="ch-sha">74dd229</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:540ms">
<div class="changelog-date">2026-06-07</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/a5cda8b561bb6536e880481734199a568cb647f4" target="_blank" rel="noopener">pstack: bump version to 0.9.0 (#125)</a></div>
<div class="changelog-meta"><span class="ch-sha">a5cda8b</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:570ms">
<div class="changelog-date">2026-06-06</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/91707573f17bde34e376f772ef4dd8f504747cb6" target="_blank" rel="noopener">poteto-mode: shape refactoring commits before opening the PR (#124)</a></div>
<div class="changelog-meta"><span class="ch-sha">9170757</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:600ms">
<div class="changelog-date">2026-06-06</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/318e8f74ccc316b5f53e058de03fd1978ba5e041" target="_blank" rel="noopener">pstack: self-unblock empirical forks with a sketch instead of asking (#122)</a></div>
<div class="changelog-meta"><span class="ch-sha">318e8f7</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:630ms">
<div class="changelog-date">2026-06-06</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/27daaa309189aabce2dcaa2554cc940d65749a25" target="_blank" rel="noopener">pstack: add 'sequence work into verifiable units' principle (#123)</a></div>
<div class="changelog-meta"><span class="ch-sha">27daaa3</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:660ms">
<div class="changelog-date">2026-06-06</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/6605d7adc3d4733b87273158c4cc49ae184409ab" target="_blank" rel="noopener">pstack: per-role model configuration via /setup-pstack (#121)</a></div>
<div class="changelog-meta"><span class="ch-sha">6605d7a</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:690ms">
<div class="changelog-date">2026-06-06</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/881e794248cd8d3855807abd7e48f2083809d175" target="_blank" rel="noopener">pstack: bump version to 0.7.0 (#117)</a></div>
<div class="changelog-meta"><span class="ch-sha">881e794</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:720ms">
<div class="changelog-date">2026-06-06</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/97d645a601330acf0257e51ce646aa497855c35f" target="_blank" rel="noopener">pstack: add skeptical-reviewer trigger and arena routing for multi-shape work (#116)</a></div>
<div class="changelog-meta"><span class="ch-sha">97d645a</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:750ms">
<div class="changelog-date">2026-06-06</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/2f3a47e6c404daa4bd24e8a0686751be39ed889b" target="_blank" rel="noopener">pstack: add pause-safely playbook (clean checkpoint for suspending work) (#115)</a></div>
<div class="changelog-meta"><span class="ch-sha">2f3a47e</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:780ms">
<div class="changelog-date">2026-06-05</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/64fe0147d32e0c05d2953501ddf9ff65ebcadc54" target="_blank" rel="noopener">pstack: fold enforcement-strength rung into encode-lessons-in-structure (#114)</a></div>
<div class="changelog-meta"><span class="ch-sha">64fe014</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:810ms">
<div class="changelog-date">2026-05-30</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/c8402bc8e3673b973719fe3acc2c4837fef34f86" target="_blank" rel="noopener">pstack: concision pass on how, interrogate, architect, reflect (#106)</a></div>
<div class="changelog-meta"><span class="ch-sha">c8402bc</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:840ms">
<div class="changelog-date">2026-05-30</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/f7e01457bba4499be1ce302484e4225f9a3c9eca" target="_blank" rel="noopener">pstack: concision pass on why and poteto-mode (#105)</a></div>
<div class="changelog-meta"><span class="ch-sha">f7e0145</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:870ms">
<div class="changelog-date">2026-05-29</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/683cdbda983ea8be4b766ac3fe94b7b88e7f75ad" target="_blank" rel="noopener">pstack: bump to 0.6.0 and refresh README (#104)</a></div>
<div class="changelog-meta"><span class="ch-sha">683cdbd</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:900ms">
<div class="changelog-date">2026-05-29</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/c532aa167cdbceb3440706ceacea2361e4d395df" target="_blank" rel="noopener">pstack: frame reply impact for the consumer and the maintainer (#103)</a></div>
<div class="changelog-meta"><span class="ch-sha">c532aa1</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:930ms">
<div class="changelog-date">2026-05-29</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/ba7781cce69f65bf3edc0e789d28233d9e967f96" target="_blank" rel="noopener">pstack: build-the-lever defaults to building the tool for any non-trivial work (#102)</a></div>
<div class="changelog-meta"><span class="ch-sha">ba7781c</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:960ms">
<div class="changelog-date">2026-05-29</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/bb3e1656658b12f0b1f2f1aa868449b678779487" target="_blank" rel="noopener">pstack: bump version to 0.5.0 (#101)</a></div>
<div class="changelog-meta"><span class="ch-sha">bb3e165</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:990ms">
<div class="changelog-date">2026-05-29</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/939812915e8a1c2359b0ea8d93fee7c29c41f60e" target="_blank" rel="noopener">pstack: interrogate gains a multi-model code-quality lens (#100)</a></div>
<div class="changelog-meta"><span class="ch-sha">9398129</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1020ms">
<div class="changelog-date">2026-05-29</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/ec44aed93cda65227954d46c75be3a2f218144a3" target="_blank" rel="noopener">pstack: update Opus 4.7 references to 4.8 (#98)</a></div>
<div class="changelog-meta"><span class="ch-sha">ec44aed</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1050ms">
<div class="changelog-date">2026-05-28</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/0fe5b8a0952fd8888f9068f0693099ae74d25902" target="_blank" rel="noopener">pstack: architect usage-first design (caller's usage as the spec) (#99)</a></div>
<div class="changelog-meta"><span class="ch-sha">0fe5b8a</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1080ms">
<div class="changelog-date">2026-05-28</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/9da4009e1278994a5623f23c262f8bde55830598" target="_blank" rel="noopener">pstack: bump version to 0.4.0 (#93)</a></div>
<div class="changelog-meta"><span class="ch-sha">9da4009</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1110ms">
<div class="changelog-date">2026-05-28</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/65f4dacee2ed677a295de8d295b889bbfe2ad27c" target="_blank" rel="noopener">pstack: build-the-lever can be a skill your subagents follow (#91)</a></div>
<div class="changelog-meta"><span class="ch-sha">65f4dac</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1140ms">
<div class="changelog-date">2026-05-27</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/6f2e0c63189ce3b661040153d82a32a2038560ba" target="_blank" rel="noopener">pstack: bump version to 0.3.0 (#90)</a></div>
<div class="changelog-meta"><span class="ch-sha">6f2e0c6</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1170ms">
<div class="changelog-date">2026-05-27</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/47f3df82728f0df2233ed9d773ba0fba74cd79e3" target="_blank" rel="noopener">show-me-your-work: add cross-model review of the trail (#89)</a></div>
<div class="changelog-meta"><span class="ch-sha">47f3df8</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1200ms">
<div class="changelog-date">2026-05-26</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/8d7ca2653dfe8632f02a33c426df28c064ca41be" target="_blank" rel="noopener">pstack: bug-fix binary-search hypothesis loop, synthetic repro, /loop (#88)</a></div>
<div class="changelog-meta"><span class="ch-sha">8d7ca26</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1230ms">
<div class="changelog-date">2026-05-26</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/21327bee99f30a73758c99f6c6459571bc9f6e98" target="_blank" rel="noopener">pstack: bump version to 0.2.0 (#86)</a></div>
<div class="changelog-meta"><span class="ch-sha">21327be</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1260ms">
<div class="changelog-date">2026-05-26</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/7dddd9bcfe5f53136ee4d9a8377da96a4860ef4a" target="_blank" rel="noopener">pstack: refresh README playbooks (full list as a table) (#85)</a></div>
<div class="changelog-meta"><span class="ch-sha">7dddd9b</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1290ms">
<div class="changelog-date">2026-05-26</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/7b1c32e4c3427c30ad2595630ed74815c52fe4e9" target="_blank" rel="noopener">pstack: add build-the-lever principle (#84)</a></div>
<div class="changelog-meta"><span class="ch-sha">7b1c32e</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1320ms">
<div class="changelog-date">2026-05-26</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/bbc0d75eb2f115124f6fbe9e5c8f27f579779345" target="_blank" rel="noopener">pstack: add session-pickup and trace-forensics playbooks (#83)</a></div>
<div class="changelog-meta"><span class="ch-sha">bbc0d75</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1350ms">
<div class="changelog-date">2026-05-26</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/f18ffc1bd6b41a017ab97c53debcf140a8f754fd" target="_blank" rel="noopener">pstack: add refactoring playbook (#81)</a></div>
<div class="changelog-meta"><span class="ch-sha">f18ffc1</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1380ms">
<div class="changelog-date">2026-05-25</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/a9e675642ea4297553a4d8c23f5d8a5b004f6626" target="_blank" rel="noopener">pstack: add figure-it-out and show-me-your-work to README examples (#80)</a></div>
<div class="changelog-meta"><span class="ch-sha">a9e6756</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1410ms">
<div class="changelog-date">2026-05-25</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/11ecc12a3ffc037b4ef3b64de2be449668e8afc7" target="_blank" rel="noopener">pstack: harden show-me-your-work log.sh (formula-injection + mkdir -p) and shorten skill descriptions (#79)</a></div>
<div class="changelog-meta"><span class="ch-sha">11ecc12</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1440ms">
<div class="changelog-date">2026-05-24</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/35f33923cde39e9c27d68d95517e4e4e83719c7c" target="_blank" rel="noopener">pstack: add figure-it-out and show-me-your-work skills (#78)</a></div>
<div class="changelog-meta"><span class="ch-sha">35f3392</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1470ms">
<div class="changelog-date">2026-05-24</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/b8f2564c2e8da66b331c1dd63c2a2925d6739961" target="_blank" rel="noopener">pstack: simplify the feature README example (#77)</a></div>
<div class="changelog-meta"><span class="ch-sha">b8f2564</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1500ms">
<div class="changelog-date">2026-05-23</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/3dd382f4dbf3753ea5c5fac0935bb5a8a0789021" target="_blank" rel="noopener">pstack: add usage examples to README (#76)</a></div>
<div class="changelog-meta"><span class="ch-sha">3dd382f</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1530ms">
<div class="changelog-date">2026-05-23</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/6754d3c09e5ea95de453ac1330f8648a82bbe00a" target="_blank" rel="noopener">pstack: add typescript-best-practices to README skills table</a></div>
<div class="changelog-meta"><span class="ch-sha">6754d3c</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
<div class="changelog-entry" style="animation-delay:1560ms">
<div class="changelog-date">2026-05-23</div>
<div class="changelog-body">
<div class="changelog-title"><a href="https://github.com/cursor/plugins/commit/24bd6eb895d63a6e76fabfea2cb344384d177d79" target="_blank" rel="noopener">Add pstack plugin</a></div>
<div class="changelog-meta"><span class="ch-sha">24bd6eb</span> · <a href="https://github.com/poteto" target="_blank" rel="noopener">poteto</a></div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="wrap">
<p>pstack is <a href="https://x.com/poteto" target="_blank" rel="noopener">poteto's</a> set of engineering skills for coding agents, installed with <code>/add-plugin pstack</code>. This page is an unofficial reading aid.</p>
<p>Source and deploy: <a href="https://github.com/HustleCoding/pstack-explained" target="_blank" rel="noopener">HustleCoding/pstack-explained</a>, live at this URL via GitHub Actions.</p>
</div>
</footer>
</body>
</html>