@kendoo.agentdesk/agentdesk 0.16.1 → 0.16.3
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 +10 -0
- package/README.md +7 -3
- package/cli/config.mjs +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,16 @@ 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.3] — 2026-04-18
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- `[UI]` Docs and Guide pages updated to reflect the new tracker-setup flow: dedicated-user vs personal-account tradeoff, verify-and-echo step, config sync behavior, and the identity-badge field. README aligned with the same copy.
|
|
15
|
+
|
|
16
|
+
## [0.16.2] — 2026-04-18
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
- `[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.
|
|
20
|
+
|
|
11
21
|
## [0.16.1] — 2026-04-18
|
|
12
22
|
|
|
13
23
|
### Added
|
package/README.md
CHANGED
|
@@ -43,7 +43,11 @@ Opens your browser to [agentdesk.live](https://agentdesk.live) where you sign up
|
|
|
43
43
|
agentdesk init
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
A guided wizard walks you through it: picks up your project type, asks which task tracker you use (Linear, Jira, GitHub Issues, or none), shows the tradeoff between a **dedicated AgentDesk user** and your personal account with step-by-step setup for either, verifies the credentials, echoes "Posting as: …" so you can confirm which identity will appear on tickets, then writes `.agentdesk.json`.
|
|
47
|
+
|
|
48
|
+
Re-running `agentdesk init` in a project that already has config offers a "tracker only" shortcut. Use `agentdesk init --quick` to skip the narrative copy for scripted setups.
|
|
49
|
+
|
|
50
|
+
`.agentdesk.json` is kept in sync with the server: every CLI run fetches the authoritative config and rewrites the local file as a credential-free snapshot. Credentials live only on the server, encrypted. If a local edit disagreed with the server's value, a one-line warning lists the overridden fields.
|
|
47
51
|
|
|
48
52
|
### 4. Run a team session
|
|
49
53
|
|
|
@@ -89,9 +93,9 @@ agentdesk update Update to the latest version
|
|
|
89
93
|
Settings can be managed in two ways:
|
|
90
94
|
|
|
91
95
|
1. **Web UI** — go to [agentdesk.live](https://agentdesk.live), select a project, and click the gear icon to configure tracker, team composition, custom agents, commands, and instructions.
|
|
92
|
-
2. **Local file** — `.agentdesk.json` in your project root.
|
|
96
|
+
2. **Local file** — `.agentdesk.json` in your project root. Acts as a credential-free cache of the server config, rewritten on every CLI run. If the server is unreachable, `.agentdesk.json` is used as-is (and never mutated).
|
|
93
97
|
|
|
94
|
-
The
|
|
98
|
+
The server is the source of truth. If you edit `.agentdesk.json` directly while the server has a different value for the same field, the server wins and the CLI prints a one-line warning listing the overridden fields so you notice. To push local edits back up, re-run `agentdesk init` (the wizard writes to the server).
|
|
95
99
|
|
|
96
100
|
### Task trackers
|
|
97
101
|
|
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
|