@feniix/pi-code-reasoning 1.0.1 → 1.0.3
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/extensions/index.ts +17 -0
- package/package.json +42 -42
package/extensions/index.ts
CHANGED
|
@@ -420,6 +420,23 @@ const codeReasoningParams = Type.Object(
|
|
|
420
420
|
// Extension Entry Point
|
|
421
421
|
// =============================================================================
|
|
422
422
|
|
|
423
|
+
export {
|
|
424
|
+
buildError,
|
|
425
|
+
buildSuccess,
|
|
426
|
+
createThoughtTracker,
|
|
427
|
+
DEFAULT_CONFIG_FILE,
|
|
428
|
+
formatToolOutput,
|
|
429
|
+
getExampleThought,
|
|
430
|
+
isRecord,
|
|
431
|
+
normalizeNumber,
|
|
432
|
+
parseConfig,
|
|
433
|
+
resolveConfigPath,
|
|
434
|
+
resolveEffectiveLimits,
|
|
435
|
+
splitParams,
|
|
436
|
+
toJsonString,
|
|
437
|
+
writeTempFile,
|
|
438
|
+
};
|
|
439
|
+
|
|
423
440
|
export default function codeReasoning(pi: ExtensionAPI) {
|
|
424
441
|
// Register CLI flags
|
|
425
442
|
pi.registerFlag("--code-reasoning-config", {
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@feniix/pi-code-reasoning",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Code Reasoning extension for pi — reflective problem-solving through sequential thinking with branching and revision support",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi",
|
|
7
|
+
"pi-package",
|
|
8
|
+
"pi-extension",
|
|
9
|
+
"pi-coding-agent",
|
|
10
|
+
"ai",
|
|
11
|
+
"code-reasoning",
|
|
12
|
+
"sequential-thinking",
|
|
13
|
+
"branching",
|
|
14
|
+
"revision",
|
|
15
|
+
"problem-solving"
|
|
16
|
+
],
|
|
17
|
+
"type": "module",
|
|
18
|
+
"files": [
|
|
19
|
+
"extensions/",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"pi": {
|
|
24
|
+
"extensions": [
|
|
25
|
+
"./extensions/index.ts"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@mariozechner/pi-ai": "*",
|
|
30
|
+
"@mariozechner/pi-coding-agent": "*",
|
|
31
|
+
"@sinclair/typebox": "*"
|
|
32
|
+
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://github.com/feniix/pi-packages.git",
|
|
36
|
+
"directory": "packages/pi-code-reasoning"
|
|
37
|
+
},
|
|
38
|
+
"author": "feniix",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/feniix/pi-packages/issues"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/feniix/pi-packages/tree/main/packages/pi-code-reasoning#readme"
|
|
44
44
|
}
|