@felan-ai/felan 0.17.0 → 0.18.0
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/README.md +17 -3
- package/dist/application.js +1 -0
- package/dist/application.js.map +1 -1
- package/dist/extensions.d.ts.map +1 -1
- package/dist/extensions.js +13 -0
- package/dist/extensions.js.map +1 -1
- package/dist/runtime.d.ts +3 -0
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +9 -0
- package/dist/runtime.js.map +1 -1
- package/dist/startup-header.d.ts.map +1 -1
- package/dist/startup-header.js +64 -37
- package/dist/startup-header.js.map +1 -1
- package/dist/subagents/agent-navigator.d.ts +1 -0
- package/dist/subagents/agent-navigator.d.ts.map +1 -1
- package/dist/subagents/agent-navigator.js +45 -8
- package/dist/subagents/agent-navigator.js.map +1 -1
- package/dist/subagents/host.d.ts +12 -0
- package/dist/subagents/host.d.ts.map +1 -1
- package/dist/subagents/host.js +139 -1
- package/dist/subagents/host.js.map +1 -1
- package/dist/themes/felan-dark.json +85 -0
- package/dist/themes/felan-light.json +85 -0
- package/package.json +11 -11
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/earendil-works/pi/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "felan-dark",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#1a1b26",
|
|
6
|
+
"fg": "#d7d9e2",
|
|
7
|
+
"surface1": "#1e202b",
|
|
8
|
+
"surface2": "#242631",
|
|
9
|
+
"surface3": "#2b2d39",
|
|
10
|
+
"brand": "#75a58a",
|
|
11
|
+
"brandStrong": "#87b398",
|
|
12
|
+
"border": "#343743",
|
|
13
|
+
"borderMuted": "#484b58",
|
|
14
|
+
"muted": "#9699a6",
|
|
15
|
+
"dim": "#737684",
|
|
16
|
+
"success": "#82aa91",
|
|
17
|
+
"error": "#c77d84",
|
|
18
|
+
"warning": "#c3a36a",
|
|
19
|
+
"info": "#879bc5",
|
|
20
|
+
"panelSuccess": "#242631",
|
|
21
|
+
"panelError": "#242631"
|
|
22
|
+
},
|
|
23
|
+
"colors": {
|
|
24
|
+
"accent": "brand",
|
|
25
|
+
"text": "fg",
|
|
26
|
+
"border": "border",
|
|
27
|
+
"borderAccent": "brand",
|
|
28
|
+
"borderMuted": "borderMuted",
|
|
29
|
+
"success": "success",
|
|
30
|
+
"error": "error",
|
|
31
|
+
"warning": "warning",
|
|
32
|
+
"muted": "muted",
|
|
33
|
+
"dim": "dim",
|
|
34
|
+
"thinkingText": "muted",
|
|
35
|
+
"selectedBg": "surface3",
|
|
36
|
+
"scrollbarThumb": "surface3",
|
|
37
|
+
"searchMatchBg": "surface3",
|
|
38
|
+
"searchMatchText": "fg",
|
|
39
|
+
"userMessageBg": "surface1",
|
|
40
|
+
"userMessageText": "fg",
|
|
41
|
+
"customMessageBg": "surface1",
|
|
42
|
+
"customMessageText": "fg",
|
|
43
|
+
"customMessageLabel": "brandStrong",
|
|
44
|
+
"toolPendingBg": "surface1",
|
|
45
|
+
"toolSuccessBg": "surface1",
|
|
46
|
+
"toolErrorBg": "surface1",
|
|
47
|
+
"toolTitle": "fg",
|
|
48
|
+
"toolOutput": "muted",
|
|
49
|
+
"mdHeading": "fg",
|
|
50
|
+
"mdLink": "info",
|
|
51
|
+
"mdLinkUrl": "muted",
|
|
52
|
+
"mdCode": "brand",
|
|
53
|
+
"mdCodeBlock": "fg",
|
|
54
|
+
"mdCodeBlockBorder": "borderMuted",
|
|
55
|
+
"mdQuote": "muted",
|
|
56
|
+
"mdQuoteBorder": "borderMuted",
|
|
57
|
+
"mdHr": "border",
|
|
58
|
+
"mdListBullet": "brand",
|
|
59
|
+
"toolDiffAdded": "success",
|
|
60
|
+
"toolDiffRemoved": "error",
|
|
61
|
+
"toolDiffContext": "muted",
|
|
62
|
+
"syntaxComment": "muted",
|
|
63
|
+
"syntaxKeyword": "info",
|
|
64
|
+
"syntaxFunction": "fg",
|
|
65
|
+
"syntaxVariable": "fg",
|
|
66
|
+
"syntaxString": "success",
|
|
67
|
+
"syntaxNumber": "warning",
|
|
68
|
+
"syntaxType": "brand",
|
|
69
|
+
"syntaxOperator": "muted",
|
|
70
|
+
"syntaxPunctuation": "dim",
|
|
71
|
+
"thinkingOff": "border",
|
|
72
|
+
"thinkingMinimal": "dim",
|
|
73
|
+
"thinkingLow": "muted",
|
|
74
|
+
"thinkingMedium": "brand",
|
|
75
|
+
"thinkingHigh": "info",
|
|
76
|
+
"thinkingXhigh": "warning",
|
|
77
|
+
"thinkingMax": "error",
|
|
78
|
+
"bashMode": "warning"
|
|
79
|
+
},
|
|
80
|
+
"export": {
|
|
81
|
+
"pageBg": "#1a1b26",
|
|
82
|
+
"cardBg": "#1e202b",
|
|
83
|
+
"infoBg": "#242631"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/earendil-works/pi/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "felan-light",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#fcfcfc",
|
|
6
|
+
"fg": "#282522",
|
|
7
|
+
"surface1": "#f8f7f6",
|
|
8
|
+
"surface2": "#f1f0ee",
|
|
9
|
+
"surface3": "#e8e6e3",
|
|
10
|
+
"brand": "#356b50",
|
|
11
|
+
"brandStrong": "#255f44",
|
|
12
|
+
"border": "#dedbd7",
|
|
13
|
+
"borderMuted": "#bcb7b2",
|
|
14
|
+
"muted": "#706b67",
|
|
15
|
+
"dim": "#8d8782",
|
|
16
|
+
"success": "#4f765f",
|
|
17
|
+
"error": "#a9585f",
|
|
18
|
+
"warning": "#8b6a35",
|
|
19
|
+
"info": "#526f9b",
|
|
20
|
+
"panelSuccess": "#f1f0ee",
|
|
21
|
+
"panelError": "#f1f0ee"
|
|
22
|
+
},
|
|
23
|
+
"colors": {
|
|
24
|
+
"accent": "brand",
|
|
25
|
+
"text": "fg",
|
|
26
|
+
"border": "border",
|
|
27
|
+
"borderAccent": "brand",
|
|
28
|
+
"borderMuted": "borderMuted",
|
|
29
|
+
"success": "success",
|
|
30
|
+
"error": "error",
|
|
31
|
+
"warning": "warning",
|
|
32
|
+
"muted": "muted",
|
|
33
|
+
"dim": "dim",
|
|
34
|
+
"thinkingText": "muted",
|
|
35
|
+
"selectedBg": "surface3",
|
|
36
|
+
"scrollbarThumb": "surface3",
|
|
37
|
+
"searchMatchBg": "surface3",
|
|
38
|
+
"searchMatchText": "fg",
|
|
39
|
+
"userMessageBg": "surface1",
|
|
40
|
+
"userMessageText": "fg",
|
|
41
|
+
"customMessageBg": "surface1",
|
|
42
|
+
"customMessageText": "fg",
|
|
43
|
+
"customMessageLabel": "brandStrong",
|
|
44
|
+
"toolPendingBg": "surface1",
|
|
45
|
+
"toolSuccessBg": "surface1",
|
|
46
|
+
"toolErrorBg": "surface1",
|
|
47
|
+
"toolTitle": "fg",
|
|
48
|
+
"toolOutput": "muted",
|
|
49
|
+
"mdHeading": "fg",
|
|
50
|
+
"mdLink": "info",
|
|
51
|
+
"mdLinkUrl": "muted",
|
|
52
|
+
"mdCode": "brand",
|
|
53
|
+
"mdCodeBlock": "fg",
|
|
54
|
+
"mdCodeBlockBorder": "borderMuted",
|
|
55
|
+
"mdQuote": "muted",
|
|
56
|
+
"mdQuoteBorder": "borderMuted",
|
|
57
|
+
"mdHr": "border",
|
|
58
|
+
"mdListBullet": "brand",
|
|
59
|
+
"toolDiffAdded": "success",
|
|
60
|
+
"toolDiffRemoved": "error",
|
|
61
|
+
"toolDiffContext": "muted",
|
|
62
|
+
"syntaxComment": "muted",
|
|
63
|
+
"syntaxKeyword": "info",
|
|
64
|
+
"syntaxFunction": "fg",
|
|
65
|
+
"syntaxVariable": "fg",
|
|
66
|
+
"syntaxString": "success",
|
|
67
|
+
"syntaxNumber": "warning",
|
|
68
|
+
"syntaxType": "brand",
|
|
69
|
+
"syntaxOperator": "muted",
|
|
70
|
+
"syntaxPunctuation": "dim",
|
|
71
|
+
"thinkingOff": "borderMuted",
|
|
72
|
+
"thinkingMinimal": "muted",
|
|
73
|
+
"thinkingLow": "muted",
|
|
74
|
+
"thinkingMedium": "brand",
|
|
75
|
+
"thinkingHigh": "info",
|
|
76
|
+
"thinkingXhigh": "warning",
|
|
77
|
+
"thinkingMax": "error",
|
|
78
|
+
"bashMode": "warning"
|
|
79
|
+
},
|
|
80
|
+
"export": {
|
|
81
|
+
"pageBg": "#fcfcfc",
|
|
82
|
+
"cardBg": "#ffffff",
|
|
83
|
+
"infoBg": "#f1f0ee"
|
|
84
|
+
}
|
|
85
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felan-ai/felan",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Local Felan terminal agent",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -33,30 +33,30 @@
|
|
|
33
33
|
"@modelcontextprotocol/client": "2.0.0",
|
|
34
34
|
"@napi-rs/keyring": "1.3.0",
|
|
35
35
|
"open": "11.0.0",
|
|
36
|
-
"@felan-ai/agent-core": "0.5.
|
|
37
|
-
"@felan-ai/ext-ask-user": "0.3.0",
|
|
36
|
+
"@felan-ai/agent-core": "0.5.4",
|
|
38
37
|
"@felan-ai/ext-background-bash": "0.4.1",
|
|
39
|
-
"@felan-ai/ext-browser": "0.2.0",
|
|
40
38
|
"@felan-ai/ext-codex": "0.2.1",
|
|
39
|
+
"@felan-ai/ext-ask-user": "0.3.0",
|
|
40
|
+
"@felan-ai/ext-browser": "0.2.0",
|
|
41
41
|
"@felan-ai/ext-mcp": "0.2.0",
|
|
42
42
|
"@felan-ai/ext-subagents": "0.5.0",
|
|
43
|
+
"@felan-ai/ext-tasks": "0.2.2",
|
|
43
44
|
"@felan-ai/ext-context": "0.4.0",
|
|
44
|
-
"@felan-ai/ext-tasks": "0.2.1",
|
|
45
|
-
"@felan-ai/ext-felan-api": "0.2.0",
|
|
46
|
-
"@felan-ai/ext-output-style": "0.2.2",
|
|
47
45
|
"@felan-ai/ext-memory": "0.2.1",
|
|
46
|
+
"@felan-ai/ext-felan-api": "0.2.0",
|
|
47
|
+
"@felan-ai/ext-output-style": "0.3.0",
|
|
48
48
|
"@felan-ai/ext-markitdown": "0.2.0",
|
|
49
|
-
"@felan-ai/ext-
|
|
50
|
-
"@felan-ai/ext-
|
|
49
|
+
"@felan-ai/ext-prewalk": "0.5.1",
|
|
50
|
+
"@felan-ai/ext-powerline": "0.6.0",
|
|
51
51
|
"@felan-ai/ext-rtk-optimizer": "0.4.1",
|
|
52
|
-
"@felan-ai/ext-
|
|
52
|
+
"@felan-ai/ext-web-access": "0.4.2"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public",
|
|
56
56
|
"provenance": true
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
|
-
"build": "rm -rf dist && tsc -p tsconfig.build.json && chmod +x dist/cli.js",
|
|
59
|
+
"build": "rm -rf dist && tsc -p tsconfig.build.json && cp -R src/themes dist/themes && chmod +x dist/cli.js",
|
|
60
60
|
"type-check": "tsc -p tsconfig.json --noEmit",
|
|
61
61
|
"test": "vitest run --passWithNoTests"
|
|
62
62
|
}
|