@felan-ai/ext-context 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/LICENSE +1 -0
- package/NOTICE +3 -2
- package/README.md +11 -0
- package/package.json +7 -3
package/LICENSE
CHANGED
package/NOTICE
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
@felan-ai/ext-context
|
|
2
2
|
|
|
3
|
-
Includes code adapted from pi-progressive-context in
|
|
4
|
-
|
|
3
|
+
Includes code adapted from packages/pi-progressive-context in
|
|
4
|
+
https://github.com/mslavov/pi-extensions at source commit
|
|
5
|
+
9571293d422db11de893fa80ed0fc3e39945c657.
|
|
5
6
|
|
|
6
7
|
Copyright (c) 2026 Milko Slavov
|
|
7
8
|
Licensed under the MIT License included in this package.
|
package/README.md
CHANGED
|
@@ -25,6 +25,17 @@ symlink escapes.
|
|
|
25
25
|
Use `/progressive-context` to show the nested instruction files loaded in the
|
|
26
26
|
current session.
|
|
27
27
|
|
|
28
|
+
## Development
|
|
29
|
+
|
|
30
|
+
Source: `packages/ext-context` in <https://github.com/felan-ai/felan>.
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
corepack enable
|
|
34
|
+
pnpm install --frozen-lockfile
|
|
35
|
+
pnpm --filter @felan-ai/ext-context build
|
|
36
|
+
pnpm --filter @felan-ai/ext-context test
|
|
37
|
+
```
|
|
38
|
+
|
|
28
39
|
## Trigger limitations
|
|
29
40
|
|
|
30
41
|
- Progressive context affects the model call after a file read or attachment.
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felan-ai/ext-context",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.3",
|
|
4
4
|
"description": "Progressive-context extension 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-context"
|
|
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",
|