fdf398b86e
fix(LocalRunnerClient): close old MCP client while a new client's name is duplicated with the old one
2026-01-13 23:22:54 +08:00
774e2b6cd5
fix(LocalRunnerClient): correct abnormal deleting condition in CommonMcp
2026-01-13 23:13:52 +08:00
837a4c92d1
fix(LocalRunnerClient): treat missing action dir as invalid path during DELETE in DynamicMcp
...
Context:
Action directories may already be removed when DELETE events are handled.
Return null from loadFiles to signal invalid paths and lock behavior with DynamicAction watch tests.
2026-01-12 21:46:34 +08:00
ddd999d47b
fix(LocalRunnerClient): prevent WatchService event loss caused by concurrent consumers
...
Context:
Shared WatchService with multiple watch threads caused WatchKey events to be consumed by mismatched processors, leading to missed file events.
Use isolated WatchService per WatchContext to restore correct semantics.
2026-01-12 19:46:45 +08:00
9694a022c7
chore(gitignore): update gitignore
2026-01-12 19:35:41 +08:00
31968c7076
chore(gitignore): create AGENTS.md for codex, and add it to .gitignore
2026-01-12 14:25:20 +08:00
abec141e4e
fix(LocalRunnerClient): correct path creating logic in RunnerClient and its implementations
2026-01-11 16:47:14 +08:00
cdb6ae9d01
fix(LocalRunnerClient): correct method loadFiles in LocalWatchEventProcessor
2026-01-11 16:30:44 +08:00
dd8d86d3c4
chore(LocalRunnerClient): add logs to LocalRunnerClient
2026-01-11 16:27:14 +08:00
99b42620d0
refactor(LocalRunnerClient): repair paths registering order and support creating directories automatically
2026-01-11 15:01:19 +08:00
70b8335d49
feat(LocalRunnerClient): support atomic persist serialization in LocalRunnerClient
2026-01-11 14:24:34 +08:00
8ca475beeb
feat(LocalRunnerClient): support registering CommonMcp
2026-01-08 22:28:12 +08:00
4f36c0dd2d
feat(LocalRunnerClient): support deleting MCP configurations in CommonMcp
2026-01-08 22:23:08 +08:00
00993bd763
feat(LocalRunnerClient): support creating MCP configurations in CommonMcp
2026-01-08 22:09:14 +08:00
a0bca668cb
refactor(LocalRunnerClient): support update existedMetaActions in method registerMcpClient
2026-01-08 21:48:30 +08:00
c6118c41b0
refactor(LocalRunnerClient): support loading primary fileMcpCache when CommonMcp launched
2026-01-08 21:33:39 +08:00
872d21170a
feat(LocalRunnerClient): support modify and overflow events on mcp configurations in CommonMcp
...
Context:
Due to single file cannot present all mcp configurations, loading all MCPs at once is required.
This is compatible in both modify and overflow events.
2026-01-08 21:16:28 +08:00
44ab6cfac8
feat(LocalRunnerClient): support registering MCP clients in CommonMcp
2026-01-05 23:06:17 +08:00
ec30ac1922
refactor(LocalRunnerClient): remove tool change consumer in registerMcpClient
...
Context:
ExistedMetaActions' updating logic is covered by implementations of LocalWatchEventProcessor.
2026-01-03 16:34:04 +08:00
74b6d0c653
chore(RunnerClient): fix RunnerClient error usages in implementations
2026-01-03 15:49:54 +08:00
de462866b2
feat(LocalRunnerClient): support registering DescMcpServer watch service
2026-01-02 21:41:47 +08:00
4ea8926363
feat(LocalRunnerClient): support repairing description data while OVERFLOW event happened in DescMcpServer
2026-01-02 21:29:18 +08:00
04c98c7856
fix(LocalRunnerClient): support deleting descCache while *.desc.json is not available in DescMcpServer
2026-01-02 18:18:15 +08:00
0757856187
feat(LocalRunnerClient): support deleting *.desc.json in DescMcpServer
2026-01-02 17:20:12 +08:00
19ec93f248
feat(LocalRunnerClient): create modify *.desc.json in DescMcpServer
2026-01-02 16:45:01 +08:00
5877b9e80d
feat(LocalRunnerClient): support modify *.desc.json in DescMcpServer
2026-01-02 16:42:56 +08:00
5db0b5fad1
feat(LocalRunnerClient): support load *.desc.json when DescMcpServer launched
2026-01-02 15:55:29 +08:00
623a86daab
chore(LocalRunnerClient): update mcp servers' comments
2026-01-02 15:52:44 +08:00
64f24d3fc3
chore(LocalRunnerClient): adjust mcp servers' comments location
2026-01-02 13:38:43 +08:00
3097efe453
feat(LocalRunnerClient): support register DynamicActionMcp watch service
2026-01-02 13:29:00 +08:00
b58eeffd2f
feat(LocalRunnerClient): support overflow event in DynamicActionMcpServer
2026-01-01 23:32:21 +08:00
62cec79005
refactor(LocalRunnerClient): extract duplicated action adding logic
2026-01-01 22:39:32 +08:00
03a5935107
fix(LocalRunnerClient): support deleting event for action directories in DynamicActionMcp
2026-01-01 21:29:30 +08:00
0ecaec0545
fix(LocalRunnerClient): repair loading logic of action subdirectories
2026-01-01 20:28:19 +08:00
74f2c6c950
fix(LocalRunnerClient): support creating and registering new action in
...
method buildCreate in DynamicActionMcp
2026-01-01 00:32:34 +08:00
f35a467ebc
fix(LocalRunnerClient): support registering subdirectories in LocalWatchServiceBuild
2025-12-31 23:15:27 +08:00
64b907707a
refactor(LocalRunnerClient): introduce WatchContext and decouple build/processor state
2025-12-31 23:11:15 +08:00
a6e33edc7a
refactor(LocalRunnerClient): support remove action temporarily while action is not usable
2025-12-31 16:27:34 +08:00
94ef79c67d
feat(LocalRunnerClient): support program deletion for DynamicActionMcp
2025-12-31 13:41:35 +08:00
a222015abb
feat(LocalRunnerClient): support program modify and unify action load protocol
...
Context:
The method buildModify reuses AsyncToolSpecification building logic in buildLoad.
This feature unifies local action directory protocol, and refactors related logic in buildLoad.
New action directory protocol defines the file names of program and description files.
2025-12-30 20:52:32 +08:00
1c562f0e7b
refactor(LocalRunnerClient): update action keys building source in
...
DynamicActionMcp
Context:
Building action keys by subdirector's name keeps unique identity for each local action.
2025-12-30 16:43:39 +08:00
89535a6b1c
feat(LocalRunnerClient): add initial support for loading local action tools from filesystem
...
Context:
This feature supports DynamicActionMcpServer.
During initialization, directories containing a program file and a
.meta.json description are scanned and registered as MCP tools.
Tool execution is handled asynchronously via boundedElastic to avoid blocking server threads.
2025-12-29 20:46:26 +08:00
6e90bc8d67
refactor(LocalRunnerClient): co-locate system execution result
2025-12-29 18:53:41 +08:00
0e741802d1
refactor(LocalRunnerClient): consolidate MCP client transport params
...
Context:
Group HTTP and STDIO transport parameter variants under a sealed internal transport parameter hierarchy.
2025-12-29 18:48:53 +08:00
db3435fccf
refactor(LocalRunnerClient): co-locate watch service builder internals
...
Context:
Group WatchService build interfaces and registry implementation into a
single internal structure for better cohesion.
2025-12-29 18:40:20 +08:00
e3294ec302
refactor(LocalRunnerClient): move system execution methods into SystemExecHelper
2025-12-29 18:26:30 +08:00
bf99e01b51
feat(LocalRunnerClient): introduce LocalWatchServiceHelper and internal implementations
...
Context:
This change introduces an internal scaffold to organize WatchEventHandler building logic.
2025-12-29 17:45:39 +08:00
1bd23b20c4
refactor(LocalRunnerClient): introduce DescMcpServer
...
Context:
This refactor supports creating descriptional files for common MCP Tools.
2025-12-29 17:35:03 +08:00
442dd55686
refactor(LocalRunnerClient): rename LocalWatchServiceRegistry
2025-12-29 14:27:00 +08:00
abe5dd5251
chore(idea): update misc.xml
2025-12-26 21:28:10 +08:00