@xdxer/dingtalk-agent 0.1.5-beta.4 → 0.1.5-beta.5
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 +20 -0
- package/dist/bin/dingtalk-agent.js +1 -2
- package/dist/bin/dingtalk-agent.js.map +1 -1
- package/dist/src/doctor.js +1 -1
- package/dist/src/doctor.js.map +1 -1
- package/dist/src/skill-manager.js +5 -0
- package/dist/src/skill-manager.js.map +1 -1
- package/package.json +2 -1
- package/skills/core/dingtalk-agent-compose/SKILL.md +19 -1
- package/skills/core/dingtalk-people-group-memory/COMPLETENESS.md +36 -0
- package/skills/core/dingtalk-people-group-memory/SKILL.md +69 -0
- package/skills/core/dingtalk-people-group-memory/references/adapters.md +273 -0
- package/skills/core/dingtalk-people-group-memory/references/assembly-guidance.md +40 -0
- package/skills/core/dingtalk-people-group-memory/references/binding.md +110 -0
- package/skills/core/dingtalk-people-group-memory/references/cold-start.md +70 -0
- package/skills/core/dingtalk-people-group-memory/references/config-binding.md +89 -0
- package/skills/core/dingtalk-people-group-memory/references/consent-and-visibility.md +83 -0
- package/skills/core/dingtalk-people-group-memory/references/consolidation.md +162 -0
- package/skills/core/dingtalk-people-group-memory/references/event-ingest.md +103 -0
- package/skills/core/dingtalk-people-group-memory/references/guided-setup.md +70 -0
- package/skills/core/dingtalk-people-group-memory/references/model.md +148 -0
- package/skills/core/dingtalk-people-group-memory/references/storage-port.md +107 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@xdxer/dingtalk-agent` are documented here. The project follows semantic versioning; prerelease entries describe release candidates and do not imply that Live canaries or registry publication have completed.
|
|
4
4
|
|
|
5
|
+
## 0.1.5-beta.5 - 2026-07-23
|
|
6
|
+
|
|
7
|
+
Long-term memory becomes a bundled standard capability: any DingTalk Agent can maintain living profiles for the **people** and **conversations (groups/DMs)** it works with over time, storage-decoupled behind a port so the model layer never touches a specific medium (PR #13). Ships on the `beta` dist-tag; `latest` stays at 0.1.4.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `dingtalk-people-group-memory` joins the default bundle (`BUNDLED_SKILL_NAMES`). It is fully inert until storage is bound — zero writes, zero probes, and it must not claim "I remembered" — so bundling it by default has no side effect; binding is deferred to when the user actually asks. The skill is a three-layer design: `model.md` (Person/Conversation/Fact/Watermark, medium-agnostic — verifiably zero DingTalk vocabulary), `event-ingest.md` (message/todo/doc events → Facts, `evidenceId`-keyed idempotency), and `storage-port.md` (10 operations + 8 capability bits) with adapters for `dingtalk-doc` (narrative) and `aitable` (registry), plus a `local-md` contract.
|
|
12
|
+
- Section `kind` split (`narrative` vs `registry`): prose profiles live in DingTalk docs (read-whole, human-readable), while indexes/watermarks/tombstones live in AI Tables (query-by-key, real pagination, no 340-line truncation wall). The same model-layer operations route to either medium purely by capability bits — swapping the registry medium collapses a whole class of doc-only pathologies.
|
|
13
|
+
- `consolidation.md`: the one-year answer for append-only raw — monthly digests, a bounded O(1) working set, `working-on` decay, derived-section curation, and count-based completeness (write-side row counts reconciled on read, since the production medium truncates silently).
|
|
14
|
+
- `config-binding.md` + `guided-setup.md`: the user-configured storage address lives in `agent.bindings.json#memory` (`dingtalk-doc:<adoc-node>`) or `DTA_MEMORY_STORAGE`, resolved by the existing bootstrap `select()` chain — never hardcoded in the skill. A seven-step guided-creation flow walks a user from nothing to a valid, parse-verified adoc binding record. `COMPLETENESS.md` states honestly what is delivered (guided single-agent read/write, proven on real dws) versus contract-only (full autonomy, multi-agent, one-year compaction).
|
|
15
|
+
- The compose Skill gains a "long-term memory" section: bundled, no assembly-time action beyond writing a seed into the body if already bound; binding must happen under the runtime identity, not the developer identity.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- `dta --help` merges the `info` / `workspace doctor` / `schedule show` read-only-diagnostics into one line, keeping the default help at ≤20 lines after the driving layer (beta.4) added its `schedule` entry.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- `package.json#files`, the release-readiness required-skill list, and the `#20`/`#28` contract fixtures are updated for the four-skill default bundle; `package-lock.json` is realigned to the package version (beta.4 had bumped the manifest but not the lock).
|
|
24
|
+
|
|
5
25
|
## 0.1.5-beta.4 - 2026-07-23
|
|
6
26
|
|
|
7
27
|
Driving layer: the recurring drives that wake a digital employee become a version-controlled, provider-mapped declaration instead of imperative platform state, plus a smoke-whitelist bare-filename fix that had blocked live deployment (PR #16). Ships on the `beta` dist-tag; `latest` stays at 0.1.4.
|
|
@@ -65,8 +65,7 @@ dta —— 给 Agent 安装钉钉员工的基础行为和工作环境
|
|
|
65
65
|
dta setup 首次配置 CLI、DWS 和内置 Skill(基础行为 + Agent 装配 + 交付后评测)
|
|
66
66
|
dta bootstrap --json 为当前 Agent 会话加载工作区
|
|
67
67
|
dta agent enhance / audit 安全增强已有仓库,再审计定义、存储与 Skill 真加载
|
|
68
|
-
dta info /
|
|
69
|
-
dta schedule show / plan --workspace <name> 查看声明的常驻节律并生成 provider 部署计划
|
|
68
|
+
dta info / workspace doctor / schedule show <name> 只读诊断 Project、Workspace 与声明的常驻节律
|
|
70
69
|
dta agent-platform use <platform> → dta deploy / dta promote 声明平台归属并装平台技能包,再受控部署与晋级
|
|
71
70
|
|
|
72
71
|
维护环境:
|