larkcc 0.6.1 → 0.7.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/CHANGELOG.md +33 -0
- package/README.md +90 -876
- package/dist/cardkit.js +6 -0
- package/dist/cardkit.js.map +1 -1
- package/dist/commands/default-prompts.yml +0 -1
- package/dist/commands.js +30 -23
- package/dist/commands.js.map +1 -1
- package/dist/feishu.js +165 -79
- package/dist/feishu.js.map +1 -1
- package/dist/format/builder.d.ts +57 -62
- package/dist/format/builder.js +22 -76
- package/dist/format/builder.js.map +1 -1
- package/dist/format/index.d.ts +1 -1
- package/dist/streaming.js +9 -1
- package/dist/streaming.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.7.0] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- MCP document creation: use Feishu MCP service (`mcp.feishu.cn`) as primary path for creating cloud documents, with block API as fallback for non-table content
|
|
15
|
+
- Waiting card UX: shows "writing to document..." placeholder before document creation, updates to doc link after completion (both CardKit and non-streaming paths)
|
|
16
|
+
- Dynamic help text: `/help` now generates command list from `BUILTIN_EXEC` and `DEFAULT_PROMPTS` instead of hardcoded strings
|
|
17
|
+
- Architecture references in CONTRIBUTING.md (openclaw-lark, larksuite/cli, Feishu Block API)
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Document header: use list format with bold labels, divider between quote and metadata, local timezone instead of UTC
|
|
22
|
+
- Session ID: show "首次对话" for first conversation instead of empty value
|
|
23
|
+
- Rewrite README: 1000+ lines → 221 lines, Chinese-only, concise structure
|
|
24
|
+
- Refactor block types: replace Descendants pattern with CreateData pattern (`CalloutCreateData`, `TableCreateData`)
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- Add MCP HTTP status code validation and typed response parsing
|
|
29
|
+
- Fix `card_title` appearing twice in config example
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
|
|
33
|
+
- Delete unused table creation functions (`createTableViaChildren`, `createTableChunk`, `getTableCellIds`, `concurrentExec` helper)
|
|
34
|
+
- Remove `upmd` slash command (too generic to be useful)
|
|
35
|
+
- Remove English documentation from README (Chinese-only now)
|
|
36
|
+
|
|
37
|
+
## [0.6.2] - 2026-03-28
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
|
|
41
|
+
- FlushController now sends a heartbeat flush every 15s during idle periods to prevent CardKit streaming timeout (200850)
|
|
42
|
+
|
|
10
43
|
## [0.6.1] - 2026-03-27
|
|
11
44
|
|
|
12
45
|
### Changed
|