@felan-ai/agent-core 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 +11 -0
- package/README.md +11 -0
- package/package.json +7 -2
package/NOTICE
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
@felan-ai/agent-core
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Felan contributors
|
|
4
|
+
|
|
5
|
+
This package uses @earendil-works/pi-coding-agent 0.82.1 and its Pi runtime
|
|
6
|
+
packages from https://github.com/earendil-works/pi, licensed under the MIT
|
|
7
|
+
License. Copyright (c) 2025 Mario Zechner.
|
|
8
|
+
|
|
9
|
+
This package uses TypeBox 1.1.38 from
|
|
10
|
+
https://github.com/sinclairzx81/typebox, licensed under the MIT License.
|
|
11
|
+
Copyright (c) 2017-2026 Haydn Paterson.
|
package/README.md
CHANGED
|
@@ -36,3 +36,14 @@ changing shared agent behavior.
|
|
|
36
36
|
Applications may pass an explicit `skills` list into session composition.
|
|
37
37
|
Agent Core exposes only that list while project, user, and package skill
|
|
38
38
|
discovery remain disabled.
|
|
39
|
+
|
|
40
|
+
## Development
|
|
41
|
+
|
|
42
|
+
Source: `packages/agent-core` in <https://github.com/felan-ai/felan>.
|
|
43
|
+
|
|
44
|
+
```sh
|
|
45
|
+
corepack enable
|
|
46
|
+
pnpm install --frozen-lockfile
|
|
47
|
+
pnpm --filter @felan-ai/agent-core build
|
|
48
|
+
pnpm --filter @felan-ai/agent-core test
|
|
49
|
+
```
|
package/package.json
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felan-ai/agent-core",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.3",
|
|
4
4
|
"description": "Portable Felan agent contracts and composition",
|
|
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/agent-core"
|
|
11
|
+
},
|
|
8
12
|
"engines": {
|
|
9
13
|
"node": ">=22.19.0"
|
|
10
14
|
},
|
|
11
15
|
"files": [
|
|
12
16
|
"dist",
|
|
13
17
|
"LICENSE",
|
|
18
|
+
"NOTICE",
|
|
14
19
|
"README.md"
|
|
15
20
|
],
|
|
16
21
|
"exports": {
|