Skip to content

Commit 8193163

Browse files
committed
Merge branch 'easycode-ls-dev' into 'master'
feat(feishu): merge easycode-ls-dev to master See merge request ai_native/DeepVCode/DeepVcodeClient!488
2 parents 7da679d + d277a9a commit 8193163

125 files changed

Lines changed: 1994 additions & 968 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

.easycode/debate-history.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

.easycode/settings.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/workflows/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
1. 访问 GitHub Actions 页面:
1414
```
15-
https://github.com/OrionStarAI/DeepVCode/actions/workflows/release.yml
15+
https://github.com/OrionStarAI/EasyCodeCode/actions/workflows/release.yml
1616
```
1717

1818
2. 点击右上角 **"Run workflow"** 按钮
@@ -55,10 +55,10 @@ git push origin v1.0.261
5555

5656
访问 Releases 页面:
5757
```
58-
https://github.com/OrionStarAI/DeepVCode/releases
58+
https://github.com/OrionStarAI/EasyCodeCode/releases
5959
```
6060

61-
下载 `deepv-code-x.x.x.tgz` 文件。
61+
下载 `easycode-ai-x.x.x.tgz` 文件。
6262

6363
**方式 2: 从 workflow artifacts 下载**
6464

@@ -159,6 +159,6 @@ A: 添加一个新步骤:
159159

160160
#### 🔗 快速链接
161161

162-
- [查看工作流运行历史](https://github.com/OrionStarAI/DeepVCode/actions/workflows/release.yml)
163-
- [查看所有 Releases](https://github.com/OrionStarAI/DeepVCode/releases)
164-
- [仓库 Actions 设置](https://github.com/OrionStarAI/DeepVCode/settings/actions)
162+
- [查看工作流运行历史](https://github.com/OrionStarAI/EasyCodeCode/actions/workflows/release.yml)
163+
- [查看所有 Releases](https://github.com/OrionStarAI/EasyCodeCode/releases)
164+
- [仓库 Actions 设置](https://github.com/OrionStarAI/EasyCodeCode/settings/actions)

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,8 @@ packages/cli/clipboard/
8484
# Debug exports (local diagnostics)
8585
debug_export_*.md
8686
probe-output.jsonl
87+
88+
# Local runtime config & artifacts (per-project, never commit)
89+
.easycode/
90+
.easycode-bak/
91+
.easycode-user/

.llm-wiki/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
|------|------|---------|----------|
3838
| [GeminiClient](wiki/GeminiClient.md) | entity | Facade | `core/src/core/client.ts` |
3939
| [ContentGenerator](wiki/ContentGenerator.md) | entity | Strategy/Adapter | `core/src/core/contentGenerator.ts` |
40-
| [DeepVServerAdapter](wiki/DeepVServerAdapter.md) | entity | Adapter | `core/src/core/` |
40+
| [EasyCodeServerAdapter](wiki/EasyCodeServerAdapter.md) | entity | Adapter | `core/src/core/` |
4141
| [SceneManager](wiki/SceneManager.md) | entity | Strategy | `core/src/core/sceneManager.ts` |
4242
| [Turn](wiki/Turn.md) | entity | State Machine | `core/src/core/turn.ts` |
4343
| [SubAgent](wiki/SubAgent.md) | entity | Agent | `core/src/core/subAgent.ts` |
@@ -75,7 +75,7 @@
7575
| Page | Description |
7676
|------|-------------|
7777
| [adding-builtin-tool-checklist](wiki/adding-builtin-tool-checklist.md) | Checklist & pitfalls when adding a built-in tool to `core/src/tools/` (derived from `local_time` debugging) |
78-
| [release-process](wiki/release-process.md) | Standardized release process guide for deepv-code client, including strict tag and commit rules |
78+
| [release-process](wiki/release-process.md) | Standardized release process guide for easycode-ai client, including strict tag and commit rules |
7979

8080
## Synthesis
8181
<!-- Cross-cutting analysis pages will be listed here -->

.llm-wiki/log.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
> Chronological record of wiki operations.
44
5+
## [2026-06-05] update | feishu-integration.md & goal-driven-mode.md — 安全防护与飞书目标路由更新
6+
7+
更新 `.llm-wiki/wiki/feishu-integration.md``.llm-wiki/wiki/goal-driven-mode.md`
8+
- **安全日志截断**:新增 `safeTruncateForLog` 机制文档,说明如何通过换行符过滤和 150 字符字符限制来保证 TUI 显示整洁并防止敏感系统提示词/契约泄露。
9+
- **飞书卡片宽度防护**:新增 `clampCodeBlock` 机制说明,说明大容量输出的双重约束(行数与字数限制)如何防止卡片渲染超限。
10+
- **目标模式路由细节**:新增飞书信道中 `/goal` 卡片式交互流程、独立会话中延迟启动(Watchdog 和 YOLO)的核心路由原理。
11+
512
## [2026-06-03] update | workflow-system.md — 魔法词门控机制文档
613

714
更新 `.llm-wiki/wiki/workflow-system.md`,新增「触发方式与魔法词门控」章节:
@@ -176,7 +183,7 @@
176183
- wiki/core-module.md, wiki/cli-module.md, wiki/tools-system.md
177184
- wiki/hooks-system.md, wiki/mcp-system.md, wiki/build-system.md, wiki/skills-system.md
178185
- Created 10 class/component entity pages:
179-
- wiki/GeminiClient.md, wiki/ContentGenerator.md, wiki/DeepVServerAdapter.md
186+
- wiki/GeminiClient.md, wiki/ContentGenerator.md, wiki/EasyCodeServerAdapter.md
180187
- wiki/SceneManager.md, wiki/Turn.md, wiki/SubAgent.md
181188
- wiki/ToolRegistry.md, wiki/BaseTool.md, wiki/ToolExecutionEngine.md
182189
- wiki/DiscoveredMCPTool.md, wiki/mcp-client.md

0 commit comments

Comments
 (0)