@felan-ai/ext-prewalk 0.1.0-alpha.2 → 0.1.0-alpha.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/NOTICE +2 -1
- package/README.md +11 -0
- package/package.json +7 -3
package/NOTICE
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
@felan-ai/ext-prewalk
|
|
2
2
|
|
|
3
3
|
This package includes adapted portions of packages/pi-prewalk from
|
|
4
|
-
mslavov/pi-extensions at commit
|
|
4
|
+
https://github.com/mslavov/pi-extensions at commit
|
|
5
|
+
7e72e509fe45a5a87c4c2e176cb711de994a8c1d.
|
|
5
6
|
|
|
6
7
|
Copyright (c) 2026 Dimitar Panayotov
|
|
7
8
|
Copyright (c) 2026 Milko Slavov
|
package/README.md
CHANGED
|
@@ -57,6 +57,17 @@ Prewalk uses Pi's namespaced extension flags and does not read a configuration f
|
|
|
57
57
|
- Session quit, reload, replacement, or fork while the target is active attempts planner restoration as a graceful shutdown backstop.
|
|
58
58
|
- Reaching the automatic continuation limit lets the run settle normally.
|
|
59
59
|
|
|
60
|
+
## Development
|
|
61
|
+
|
|
62
|
+
Source: `packages/ext-prewalk` in <https://github.com/felan-ai/felan>.
|
|
63
|
+
|
|
64
|
+
```sh
|
|
65
|
+
corepack enable
|
|
66
|
+
pnpm install --frozen-lockfile
|
|
67
|
+
pnpm --filter @felan-ai/ext-prewalk build
|
|
68
|
+
pnpm --filter @felan-ai/ext-prewalk test
|
|
69
|
+
```
|
|
70
|
+
|
|
60
71
|
## Attribution
|
|
61
72
|
|
|
62
73
|
This package adapts the MIT-licensed `packages/pi-prewalk` implementation from `mslavov/pi-extensions` at commit `7e72e509fe45a5a87c4c2e176cb711de994a8c1d`. See [NOTICE](./NOTICE) and [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felan-ai/ext-prewalk",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.3",
|
|
4
4
|
"description": "Same-session planner-to-implementation model handoff for Felan",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"repository":
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/felan-ai/felan.git",
|
|
10
|
+
"directory": "packages/ext-prewalk"
|
|
11
|
+
},
|
|
8
12
|
"engines": {
|
|
9
13
|
"node": ">=22.19.0"
|
|
10
14
|
},
|
|
@@ -21,7 +25,7 @@
|
|
|
21
25
|
}
|
|
22
26
|
},
|
|
23
27
|
"dependencies": {
|
|
24
|
-
"@felan-ai/agent-core": "0.1.0-alpha.
|
|
28
|
+
"@felan-ai/agent-core": "0.1.0-alpha.3"
|
|
25
29
|
},
|
|
26
30
|
"publishConfig": {
|
|
27
31
|
"access": "public",
|