@hk_net/pi-thinking-command 0.1.4 → 0.1.6
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 +10 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# `/thinking` command extension for pi
|
|
2
2
|
|
|
3
|
-
Adds a `/thinking` slash command to pi for changing the active thinking/reasoning level from inside a session.
|
|
3
|
+
Adds a `/thinking` slash command to pi `>=0.81.1` for changing the active thinking/reasoning level from inside a session.
|
|
4
4
|
|
|
5
5
|
Normally in pi, changing the thinking/reasoning level means opening the settings menu, navigating to **Thinking**, and selecting the requested level. This extension is a convenience shortcut for that workflow, so you can switch levels directly with commands such as `/thinking low` or `/thinking xhigh`.
|
|
6
6
|
|
|
@@ -73,3 +73,12 @@ If no argument is provided, `/thinking` sets the level to `medium`.
|
|
|
73
73
|
- Shows a `thinking` status item with the current level.
|
|
74
74
|
- Updates the status item when the thinking level changes.
|
|
75
75
|
- Validates input and displays an error for unknown levels.
|
|
76
|
+
|
|
77
|
+
## Issues and feedback
|
|
78
|
+
|
|
79
|
+
Found a bug or have a feature request? Please report it on
|
|
80
|
+
[GitHub Issues](https://github.com/hknet/pi-extensions/issues).
|
|
81
|
+
|
|
82
|
+
For security vulnerabilities, please use
|
|
83
|
+
[GitHub's private vulnerability reporting](https://github.com/hknet/pi-extensions/security/advisories/new)
|
|
84
|
+
instead of opening a public issue.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hk_net/pi-thinking-command",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Pi extension that adds a /thinking slash command for changing reasoning level",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"README.md"
|
|
27
27
|
],
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@earendil-works/pi-coding-agent": ">=0.
|
|
30
|
-
"@earendil-works/pi-tui": ">=0.
|
|
29
|
+
"@earendil-works/pi-coding-agent": ">=0.81.1",
|
|
30
|
+
"@earendil-works/pi-tui": ">=0.81.1"
|
|
31
31
|
},
|
|
32
32
|
"pi": {
|
|
33
33
|
"extensions": [
|