@kendoo.agentdesk/agentdesk 0.17.5 → 0.17.6
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/init.mjs +7 -2
- 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.17.6] — 2026-04-18
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- `[CLI]` Picking "Skip — configure later" on the GitHub auth prompt now actually skips the verification step. Previously it would still run the silent check against whichever gh account was globally logged in, which defeated the point of skipping.
|
|
15
|
+
|
|
11
16
|
## [0.17.5] — 2026-04-18
|
|
12
17
|
|
|
13
18
|
### Fixed
|
package/cli/init.mjs
CHANGED
|
@@ -257,6 +257,7 @@ export async function runInit(cwd, opts = {}) {
|
|
|
257
257
|
console.log("");
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
+
let skipGithubVerify = false;
|
|
260
261
|
if (tracker === "github") {
|
|
261
262
|
const current = existingConfig.github?.repo || "";
|
|
262
263
|
const answer = await ask(rl, ` GitHub repo${current ? ` (${current})` : ""} (owner/repo): `);
|
|
@@ -283,7 +284,11 @@ export async function runInit(cwd, opts = {}) {
|
|
|
283
284
|
]);
|
|
284
285
|
console.log("");
|
|
285
286
|
|
|
286
|
-
if (authChoice.value === "
|
|
287
|
+
if (authChoice.value === "skip") {
|
|
288
|
+
skipGithubVerify = true;
|
|
289
|
+
console.log(" Skipping verification. Configure GitHub auth later via the dashboard or re-run `agentdesk init`.");
|
|
290
|
+
console.log("");
|
|
291
|
+
} else if (authChoice.value === "pat") {
|
|
287
292
|
if (!quick) {
|
|
288
293
|
console.log(" Create a token:");
|
|
289
294
|
console.log(" 1. Open https://github.com/settings/tokens");
|
|
@@ -307,7 +312,7 @@ export async function runInit(cwd, opts = {}) {
|
|
|
307
312
|
}
|
|
308
313
|
|
|
309
314
|
// --- Step 3: Verify tracker permissions (with re-prompt on failure) ---
|
|
310
|
-
if (tracker) {
|
|
315
|
+
if (tracker && !skipGithubVerify) {
|
|
311
316
|
let verified = false;
|
|
312
317
|
while (!verified) {
|
|
313
318
|
console.log(" Checking tracker permissions...");
|