@felan-ai/felan 0.11.0 → 0.11.2
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 +18 -7
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -35,8 +35,10 @@ other host paths directly.
|
|
|
35
35
|
|
|
36
36
|
Only source-controlled built-in Felan extensions can be imported. External
|
|
37
37
|
packages, extensions, configured skill paths, prompts, themes, and Pi context
|
|
38
|
-
files remain filtered. Agent
|
|
39
|
-
|
|
38
|
+
files remain filtered. Agent Core separately loads one instruction file from
|
|
39
|
+
the session cwd, preferring `AGENTS.md` over `CLAUDE.md`. Agent Skills are
|
|
40
|
+
loaded from `~/.agents/skills` and `<workspace>/.agents/skills` and are shared
|
|
41
|
+
with local subagents.
|
|
40
42
|
The built-in powerline reads `~/.felan/powerline.json` (or
|
|
41
43
|
`$FELAN_AGENT_DIR/powerline.json`) once when it initializes. Its subscription
|
|
42
44
|
segment obtains the active Codex or Claude OAuth token through Felan's
|
|
@@ -165,13 +167,22 @@ The TUI reads one optional `$FELAN_AGENT_DIR/APPEND_SYSTEM.md` file when each
|
|
|
165
167
|
session is constructed (`~/.felan/APPEND_SYSTEM.md` by default). Missing and
|
|
166
168
|
blank files add nothing; other read failures stop session construction with the
|
|
167
169
|
filesystem error. The file extends Agent Core's Felan prompt after enabled
|
|
168
|
-
extension capabilities.
|
|
169
|
-
|
|
170
|
+
extension capabilities.
|
|
171
|
+
|
|
172
|
+
Agent Core also reads at most one instruction file from each session's cwd
|
|
173
|
+
through the active `AgentRuntime`, with `AGENTS.md` taking precedence over
|
|
174
|
+
`CLAUDE.md`. Missing, unreadable, and blank instruction files are nonfatal.
|
|
175
|
+
Child persona instructions follow the application append, root project
|
|
176
|
+
instructions follow those consumer appends using Pi's path-labeled context-file
|
|
177
|
+
format, and explicit Agent Skills and the current working directory are added
|
|
178
|
+
last. The progressive-context extension remains responsible only for instruction
|
|
179
|
+
files below the session cwd.
|
|
170
180
|
|
|
171
181
|
System prompt inputs are limited to Agent Core, enabled capabilities, the
|
|
172
|
-
single application append above,
|
|
173
|
-
directory. Pi `SYSTEM.md`, project
|
|
174
|
-
prompt/context files stay outside
|
|
182
|
+
single application append above, the selected cwd instruction file, explicit
|
|
183
|
+
Agent Skills, and the current working directory. Pi `SYSTEM.md`, project
|
|
184
|
+
`APPEND_SYSTEM.md`, and other Pi-discovered prompt/context files stay outside
|
|
185
|
+
local composition.
|
|
175
186
|
|
|
176
187
|
When enabled, `@felan-ai/ext-subagents` uses the session-bound local host and
|
|
177
188
|
provides `Agent`, `list_subagents`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felan-ai/felan",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "Local Felan terminal agent",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -33,18 +33,18 @@
|
|
|
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.4.
|
|
36
|
+
"@felan-ai/agent-core": "0.4.5",
|
|
37
|
+
"@felan-ai/ext-ask-user": "0.1.0",
|
|
38
|
+
"@felan-ai/ext-codex": "0.1.2",
|
|
37
39
|
"@felan-ai/ext-background-bash": "0.3.3",
|
|
38
40
|
"@felan-ai/ext-mcp": "0.1.0",
|
|
39
|
-
"@felan-ai/ext-codex": "0.1.1",
|
|
40
|
-
"@felan-ai/ext-ask-user": "0.1.0",
|
|
41
41
|
"@felan-ai/ext-subagents": "0.3.3",
|
|
42
|
-
"@felan-ai/ext-tasks": "0.1.1",
|
|
43
|
-
"@felan-ai/ext-powerline": "0.4.0",
|
|
44
42
|
"@felan-ai/ext-context": "0.3.1",
|
|
45
|
-
"@felan-ai/ext-
|
|
46
|
-
"@felan-ai/ext-
|
|
47
|
-
"@felan-ai/ext-
|
|
43
|
+
"@felan-ai/ext-powerline": "0.4.0",
|
|
44
|
+
"@felan-ai/ext-tasks": "0.1.1",
|
|
45
|
+
"@felan-ai/ext-web-access": "0.1.2",
|
|
46
|
+
"@felan-ai/ext-rtk-optimizer": "0.1.0",
|
|
47
|
+
"@felan-ai/ext-prewalk": "0.3.2"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public",
|