pisesh 0.1.0 → 0.1.2
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/README.md +8 -6
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# pisesh
|
|
2
2
|
|
|
3
|
+
**English** | [한국어](docs/README.ko.md)
|
|
4
|
+
|
|
3
5
|
[](https://www.npmjs.com/package/pisesh)
|
|
4
6
|
[](https://github.com/Blue-B/pisesh/actions/workflows/ci.yml)
|
|
5
7
|
[](LICENSE)
|
|
6
8
|
[](https://nodejs.org/)
|
|
7
9
|
[](package.json)
|
|
8
10
|
|
|
9
|
-
**Bookmark, search, and resume [pi coding-agent](https://github.com/earendil-works/pi
|
|
11
|
+
**Bookmark, search, and resume [pi coding-agent](https://github.com/earendil-works/pi) sessions with a fast keyboard-driven TUI.**
|
|
10
12
|
|
|
11
13
|
> `pi --resume` lists every session you ever started. After a week that's 50+ entries with no titles, no tags, no order — just scroll and pray. **pisesh** adds the one thing that was missing: ⭐ favorites, instant search, and a `[NOW]` badge for the session you're attached to.
|
|
12
14
|
|
|
@@ -103,7 +105,7 @@ pisesh --help
|
|
|
103
105
|
|
|
104
106
|
## Tech Stack
|
|
105
107
|
|
|
106
|
-
[](https://nodejs.org/) [](https://developer.mozilla.org/docs/Web/JavaScript) [](https://www.typescriptlang.org/) [](https://github.com/earendil-works/pi
|
|
108
|
+
[](https://nodejs.org/) [](https://developer.mozilla.org/docs/Web/JavaScript) [](https://www.typescriptlang.org/) [](https://github.com/earendil-works/pi)
|
|
107
109
|
|
|
108
110
|
| Area | Details |
|
|
109
111
|
| ------------------- | ------------------------------------------------------------------------------------------------ |
|
|
@@ -228,8 +230,8 @@ If pisesh saves you context-switching time or just makes pi nicer to live in, su
|
|
|
228
230
|
|
|
229
231
|
## Acknowledgments
|
|
230
232
|
|
|
231
|
-
- [pi-coding-agent](https://github.com/earendil-works/pi
|
|
232
|
-
- [interactive-shell example extension](https://github.com/earendil-works/pi
|
|
233
|
+
- [pi-coding-agent](https://github.com/earendil-works/pi) by [@mariozechner](https://github.com/mariozechner) — the agent and its extension API that make `/sesh` possible.
|
|
234
|
+
- [interactive-shell example extension](https://github.com/earendil-works/pi/blob/main/packages/coding-agent/examples/extensions/interactive-shell.ts) — pattern reference for `ui.custom` + `tui.stop` TTY handoff.
|
|
233
235
|
- Inspiration for the favorites + tabs UX: [droid CLI](https://github.com/factory-ai/droid) and tmux's [sesh](https://github.com/joshmedeski/sesh).
|
|
234
236
|
|
|
235
237
|
## Contributors
|
|
@@ -240,12 +242,12 @@ Thanks to everyone who helps make pisesh better! 🙏
|
|
|
240
242
|
|
|
241
243
|
## Repository activity
|
|
242
244
|
|
|
243
|
-

|
|
244
246
|
|
|
245
247
|
## Star History
|
|
246
248
|
|
|
247
249
|
<a href="https://star-history.com/#Blue-B/pisesh&Date">
|
|
248
|
-
<img src="https://api.star-history.com/svg?repos=Blue-B/pisesh&type=Date" alt="Star History Chart" width="600" />
|
|
250
|
+
<img src="https://api.star-history.com/svg?repos=Blue-B/pisesh&type=Date&v=20260531" alt="Star History Chart" width="600" />
|
|
249
251
|
</a>
|
|
250
252
|
|
|
251
253
|
## License
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pisesh",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Bookmark, search, and resume pi coding-agent sessions with a fast keyboard-driven TUI.",
|
|
5
5
|
"keywords": [
|
|
6
|
+
"pi-package",
|
|
6
7
|
"pi",
|
|
7
8
|
"pi-coding-agent",
|
|
8
9
|
"session",
|
|
@@ -41,7 +42,8 @@
|
|
|
41
42
|
"pi": {
|
|
42
43
|
"extensions": [
|
|
43
44
|
"./extensions/sesh.ts"
|
|
44
|
-
]
|
|
45
|
+
],
|
|
46
|
+
"image": "https://raw.githubusercontent.com/Blue-B/pisesh/main/assets/preview.png"
|
|
45
47
|
},
|
|
46
48
|
"scripts": {
|
|
47
49
|
"test": "node --check bin/pisesh && echo 'pisesh: syntax OK'",
|