@felan-ai/felan 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 ADDED
@@ -0,0 +1,11 @@
1
+ @felan-ai/felan
2
+
3
+ Copyright (c) 2026 Felan contributors
4
+
5
+ This package composes the MIT-licensed @felan-ai/agent-core and Felan extension
6
+ packages listed in package.json. Their package-level LICENSE and NOTICE files
7
+ contain the applicable attribution and source provenance.
8
+
9
+ The terminal application uses @earendil-works/pi-coding-agent 0.82.1 from
10
+ https://github.com/earendil-works/pi, licensed under the MIT License.
11
+ Copyright (c) 2025 Mario Zechner.
package/README.md CHANGED
@@ -32,3 +32,14 @@ felan --diagnostics
32
32
  ```
33
33
 
34
34
  Diagnostics include the Felan, Agent Core, Pi, and Node.js versions.
35
+
36
+ ## Development
37
+
38
+ Source: `apps/tui` in <https://github.com/felan-ai/felan>.
39
+
40
+ ```sh
41
+ corepack enable
42
+ pnpm install --frozen-lockfile
43
+ pnpm --filter @felan-ai/felan build
44
+ pnpm --filter @felan-ai/felan test
45
+ ```
@@ -1 +1 @@
1
- {"version":3,"file":"extensions.d.ts","sourceRoot":"","sources":["../src/extensions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAErE,eAAO,MAAM,sBAAsB,wFAIzB,CAAC;AAQX,eAAO,MAAM,oBAAoB,EAAE,wBAMlC,CAAC"}
1
+ {"version":3,"file":"extensions.d.ts","sourceRoot":"","sources":["../src/extensions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAErE,eAAO,MAAM,sBAAsB,wFAIzB,CAAC;AAIX,eAAO,MAAM,oBAAoB,EAAE,wBAKlC,CAAC"}
@@ -3,16 +3,11 @@ export const localExtensionPackages = [
3
3
  '@felan-ai/ext-context',
4
4
  '@felan-ai/ext-powerline',
5
5
  ];
6
- const localExtensionImporters = {
7
- '@felan-ai/ext-prewalk': () => import('@felan-ai/ext-prewalk'),
8
- '@felan-ai/ext-context': () => import('@felan-ai/ext-context'),
9
- '@felan-ai/ext-powerline': () => import('@felan-ai/ext-powerline'),
10
- };
6
+ const localExtensionPackageSet = new Set(localExtensionPackages);
11
7
  export const importLocalExtension = async (packageName) => {
12
- const importExtension = localExtensionImporters[packageName];
13
- if (!importExtension) {
8
+ if (!localExtensionPackageSet.has(packageName)) {
14
9
  throw new Error(`Unknown local extension package: ${packageName}`);
15
10
  }
16
- return importExtension();
11
+ return import(packageName);
17
12
  };
18
13
  //# sourceMappingURL=extensions.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"extensions.js","sourceRoot":"","sources":["../src/extensions.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,sBAAsB,GAAG;IACpC,uBAAuB;IACvB,uBAAuB;IACvB,yBAAyB;CACjB,CAAC;AAEX,MAAM,uBAAuB,GAA2C;IACtE,uBAAuB,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,uBAAuB,CAAC;IAC9D,uBAAuB,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,uBAAuB,CAAC;IAC9D,yBAAyB,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,yBAAyB,CAAC;CACnE,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAA6B,KAAK,EAAE,WAAW,EAAE,EAAE;IAClF,MAAM,eAAe,GAAG,uBAAuB,CAAC,WAAW,CAAC,CAAC;IAC7D,IAAI,CAAC,eAAe,EAAE,CAAC;QACrB,MAAM,IAAI,KAAK,CAAC,oCAAoC,WAAW,EAAE,CAAC,CAAC;IACrE,CAAC;IACD,OAAO,eAAe,EAAE,CAAC;AAC3B,CAAC,CAAC"}
1
+ {"version":3,"file":"extensions.js","sourceRoot":"","sources":["../src/extensions.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,sBAAsB,GAAG;IACpC,uBAAuB;IACvB,uBAAuB;IACvB,yBAAyB;CACjB,CAAC;AAEX,MAAM,wBAAwB,GAAwB,IAAI,GAAG,CAAC,sBAAsB,CAAC,CAAC;AAEtF,MAAM,CAAC,MAAM,oBAAoB,GAA6B,KAAK,EAAE,WAAW,EAAE,EAAE;IAClF,IAAI,CAAC,wBAAwB,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE,CAAC;QAC/C,MAAM,IAAI,KAAK,CAAC,oCAAoC,WAAW,EAAE,CAAC,CAAC;IACrE,CAAC;IACD,OAAO,MAAM,CAAC,WAAW,CAAC,CAAC;AAC7B,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,16 +1,21 @@
1
1
  {
2
2
  "name": "@felan-ai/felan",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0-alpha.3",
4
4
  "description": "Local Felan terminal agent",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "repository": "github:felan-ai/felan",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/felan-ai/felan.git",
10
+ "directory": "apps/tui"
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
  "bin": {
@@ -24,10 +29,10 @@
24
29
  },
25
30
  "dependencies": {
26
31
  "@earendil-works/pi-coding-agent": "0.82.1",
27
- "@felan-ai/agent-core": "0.1.0-alpha.2",
28
- "@felan-ai/ext-powerline": "0.1.0-alpha.2",
29
- "@felan-ai/ext-context": "0.1.0-alpha.2",
30
- "@felan-ai/ext-prewalk": "0.1.0-alpha.2"
32
+ "@felan-ai/ext-context": "0.1.0-alpha.3",
33
+ "@felan-ai/agent-core": "0.1.0-alpha.3",
34
+ "@felan-ai/ext-powerline": "0.1.0-alpha.3",
35
+ "@felan-ai/ext-prewalk": "0.1.0-alpha.3"
31
36
  },
32
37
  "publishConfig": {
33
38
  "access": "public",