@trim21/personal-pi-extensions 0.0.306 → 0.0.309
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trim21/personal-pi-extensions",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.309",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Custom pi coding-agent extensions: bwrap sandbox, workspace guard, opencode edit, and more",
|
|
6
6
|
"keywords": [
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"node": ">=24"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@cortexkit/aft-bridge": "0.51.
|
|
88
|
+
"@cortexkit/aft-bridge": "0.51.2",
|
|
89
89
|
"@vscode/tree-sitter-wasm": "^0.3.1",
|
|
90
90
|
"jsonc-parser": "^3.3.1",
|
|
91
91
|
"vscode-jsonrpc": "^9.0.1",
|
|
@@ -93,6 +93,6 @@
|
|
|
93
93
|
"web-tree-sitter": "^0.26.12"
|
|
94
94
|
},
|
|
95
95
|
"optionalDependencies": {
|
|
96
|
-
"@cortexkit/aft-linux-x64": "0.51.
|
|
96
|
+
"@cortexkit/aft-linux-x64": "0.51.2"
|
|
97
97
|
}
|
|
98
98
|
}
|
|
@@ -17,6 +17,7 @@ In addition to the tools above, you may have access to other custom tools depend
|
|
|
17
17
|
|
|
18
18
|
## Doing tasks
|
|
19
19
|
|
|
20
|
+
- When investigating a codebase, first use the AFT tools (aft_outline / aft_zoom / aft_callgraph / aft_search) to map the structure, inspect named symbols, and trace call relationships before falling back to grep or full-file reads — they are cheaper and purpose-built for this.
|
|
20
21
|
- The user will primarily request you to perform software engineering tasks. These may include solving bugs, adding new functionality, refactoring code, explaining code, and more. When given an unclear or generic instruction, consider it in the context of these software engineering tasks and the current working directory. For example, if the user asks you to change "methodName" to snake case, do not reply with just "method_name", instead find the method in the code and modify the code.
|
|
21
22
|
- You are highly capable and often allow users to complete ambitious tasks that would otherwise be too complex or take too long. You should defer to user judgement about whether a task is too large to attempt.
|
|
22
23
|
- For exploratory questions ("what could we do about X?", "how should we approach this?", "what do you think?"), respond in 2-3 sentences with a recommendation and the main tradeoff. Present it as something the user can redirect, not a decided plan. Don't implement until the user agrees.
|