@kendoo.agentdesk/agentdesk 0.16.1 → 0.16.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/CHANGELOG.md +5 -0
- package/cli/config.mjs +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,11 @@ All user-facing changes to AgentDesk. Each entry is tagged:
|
|
|
8
8
|
|
|
9
9
|
Internal refactors, infrastructure changes, and architectural notes are not listed here.
|
|
10
10
|
|
|
11
|
+
## [0.16.2] — 2026-04-18
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- `[Both]` Optional "Identity badge" field per project — a display name shown wherever AgentDesk identifies itself. Useful if you've set up a dedicated tracker user and want a consistent label across the dashboard. Empty by default; agents keep their role-based badges.
|
|
15
|
+
|
|
11
16
|
## [0.16.1] — 2026-04-18
|
|
12
17
|
|
|
13
18
|
### Added
|
package/cli/config.mjs
CHANGED
|
@@ -27,6 +27,10 @@ const DEFAULTS = {
|
|
|
27
27
|
// (sonnet for INTAKE/PLAN/EXECUTION, haiku for REVIEW/SUMMARY).
|
|
28
28
|
phaseModels: {},
|
|
29
29
|
instructions: null,
|
|
30
|
+
// Optional display name shown wherever AgentDesk identifies itself (UI,
|
|
31
|
+
// future tracker-comment prefixes). Leave null to fall back to agent
|
|
32
|
+
// per-role badges and the tracker's own username for the credential.
|
|
33
|
+
identityBadge: null,
|
|
30
34
|
};
|
|
31
35
|
|
|
32
36
|
// Fields that must never be written to .agentdesk.json. Credentials live only
|