pi-qq 0.1.9 → 0.1.10
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 +24 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,9 +1,33 @@
|
|
|
1
1
|
# pi-qq
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/pi-qq)
|
|
4
|
+
[](https://www.npmjs.com/package/pi-qq)
|
|
5
|
+
[](./LICENSE)
|
|
6
|
+
|
|
3
7
|
Ask quick side questions about your current [pi](https://pi.dev) session without polluting the main transcript.
|
|
4
8
|
|
|
9
|
+
```text
|
|
10
|
+
You: refactor this auth flow…
|
|
11
|
+
agent: [making changes]
|
|
12
|
+
You (alt+q): is there a reason we're not using the existing AuthClient?
|
|
13
|
+
↳ overlay: Yes — AuthClient does X, but this path needs Y because…
|
|
14
|
+
You: [keeps editing, transcript untouched]
|
|
15
|
+
```
|
|
16
|
+
|
|
5
17
|
`pi-qq` adds `/qq <question>` plus an **alt+q** / **Option+Q** shortcut that toggles `/qq ` in the editor. Answers appear in a dismissible bottom overlay, can be reopened from in-memory `/qq-history`, and never enter the main conversation.
|
|
6
18
|
|
|
19
|
+
## Try these first
|
|
20
|
+
|
|
21
|
+
```text
|
|
22
|
+
/qq is this safe to merge?
|
|
23
|
+
/qq why are we doing it this way and not X?
|
|
24
|
+
/qq summarize what's happened so far
|
|
25
|
+
/qq what's the risk in this plan?
|
|
26
|
+
/qq what files have we touched this session?
|
|
27
|
+
/qq --recent did the last tool call succeed?
|
|
28
|
+
/qq --full what decisions have we made so far?
|
|
29
|
+
```
|
|
30
|
+
|
|
7
31
|
## Why try it?
|
|
8
32
|
|
|
9
33
|
- **A real side channel:** ask `/qq why are we changing this file?` while the main agent keeps working. The answer shows in a bottom overlay and does not enter the main transcript.
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-qq",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Ask transcript-safe, context-aware side questions in Pi with /qq or alt+q, then reopen recent answers with /qq-history.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
7
7
|
"pi-extension",
|
|
8
|
+
"pi-qq",
|
|
8
9
|
"quick-question",
|
|
9
10
|
"side-question",
|
|
10
11
|
"context-aware",
|