@indigoai-us/hq-cli 5.3.0 → 5.4.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/dist/bin/hq-auth-refresh.d.ts +13 -0
- package/dist/bin/hq-auth-refresh.d.ts.map +1 -0
- package/dist/bin/hq-auth-refresh.js +27 -0
- package/dist/bin/hq-auth-refresh.js.map +1 -0
- package/dist/commands/auth.d.ts +17 -13
- package/dist/commands/auth.d.ts.map +1 -1
- package/dist/commands/auth.js +83 -238
- package/dist/commands/auth.js.map +1 -1
- package/dist/commands/cloud.d.ts +3 -12
- package/dist/commands/cloud.d.ts.map +1 -1
- package/dist/commands/cloud.js +55 -212
- package/dist/commands/cloud.js.map +1 -1
- package/dist/commands/login.d.ts +6 -0
- package/dist/commands/login.d.ts.map +1 -0
- package/dist/commands/login.js +25 -0
- package/dist/commands/login.js.map +1 -0
- package/dist/commands/logout.d.ts +6 -0
- package/dist/commands/logout.d.ts.map +1 -0
- package/dist/commands/logout.js +21 -0
- package/dist/commands/logout.js.map +1 -0
- package/dist/commands/onboard.d.ts +23 -0
- package/dist/commands/onboard.d.ts.map +1 -0
- package/dist/commands/onboard.js +142 -0
- package/dist/commands/onboard.js.map +1 -0
- package/dist/commands/pkg-install.d.ts +17 -0
- package/dist/commands/pkg-install.d.ts.map +1 -0
- package/dist/commands/pkg-install.js +144 -0
- package/dist/commands/pkg-install.js.map +1 -0
- package/dist/commands/pkg-list.d.ts +8 -0
- package/dist/commands/pkg-list.d.ts.map +1 -0
- package/dist/commands/pkg-list.js +70 -0
- package/dist/commands/pkg-list.js.map +1 -0
- package/dist/commands/pkg-remove.d.ts +10 -0
- package/dist/commands/pkg-remove.d.ts.map +1 -0
- package/dist/commands/pkg-remove.js +53 -0
- package/dist/commands/pkg-remove.js.map +1 -0
- package/dist/commands/pkg-update.d.ts +9 -0
- package/dist/commands/pkg-update.d.ts.map +1 -0
- package/dist/commands/pkg-update.js +124 -0
- package/dist/commands/pkg-update.js.map +1 -0
- package/dist/commands/team-sync.d.ts +14 -0
- package/dist/commands/team-sync.d.ts.map +1 -0
- package/dist/commands/team-sync.js +422 -0
- package/dist/commands/team-sync.js.map +1 -0
- package/dist/commands/whoami.d.ts +6 -0
- package/dist/commands/whoami.d.ts.map +1 -0
- package/dist/commands/whoami.js +29 -0
- package/dist/commands/whoami.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +33 -10
- package/dist/index.js.map +1 -1
- package/dist/strategies/merge.js +2 -2
- package/dist/strategies/merge.js.map +1 -1
- package/dist/utils/auth.d.ts +27 -0
- package/dist/utils/auth.d.ts.map +1 -0
- package/dist/utils/auth.js +155 -0
- package/dist/utils/auth.js.map +1 -0
- package/dist/utils/cognito-session.d.ts +35 -0
- package/dist/utils/cognito-session.d.ts.map +1 -0
- package/dist/utils/cognito-session.js +72 -0
- package/dist/utils/cognito-session.js.map +1 -0
- package/dist/utils/git.js +1 -1
- package/dist/utils/git.js.map +1 -1
- package/dist/utils/hq-root.d.ts +10 -0
- package/dist/utils/hq-root.d.ts.map +1 -0
- package/dist/utils/hq-root.js +22 -0
- package/dist/utils/hq-root.js.map +1 -0
- package/dist/utils/integrity.d.ts +14 -0
- package/dist/utils/integrity.d.ts.map +1 -0
- package/dist/utils/integrity.js +40 -0
- package/dist/utils/integrity.js.map +1 -0
- package/dist/utils/manifest.d.ts.map +1 -1
- package/dist/utils/manifest.js +2 -5
- package/dist/utils/manifest.js.map +1 -1
- package/dist/utils/registry-client.d.ts +65 -0
- package/dist/utils/registry-client.d.ts.map +1 -0
- package/dist/utils/registry-client.js +102 -0
- package/dist/utils/registry-client.js.map +1 -0
- package/dist/utils/registry.d.ts +33 -0
- package/dist/utils/registry.d.ts.map +1 -0
- package/dist/utils/registry.js +58 -0
- package/dist/utils/registry.js.map +1 -0
- package/dist/utils/token-store.d.ts +28 -0
- package/dist/utils/token-store.d.ts.map +1 -0
- package/dist/utils/token-store.js +68 -0
- package/dist/utils/token-store.js.map +1 -0
- package/package.json +35 -45
- package/src/bin/hq-auth-refresh.ts +32 -0
- package/src/commands/add.ts +74 -0
- package/src/commands/auth.ts +153 -0
- package/src/commands/cloud.ts +125 -0
- package/src/commands/list.ts +66 -0
- package/src/commands/login.ts +29 -0
- package/src/commands/logout.ts +25 -0
- package/src/commands/pkg-install.ts +181 -0
- package/src/commands/pkg-list.ts +98 -0
- package/src/commands/pkg-remove.ts +71 -0
- package/src/commands/pkg-update.ts +189 -0
- package/src/commands/sync.ts +149 -0
- package/src/commands/team-sync.ts +629 -0
- package/src/commands/update.ts +71 -0
- package/src/commands/whoami.ts +38 -0
- package/src/index.ts +72 -0
- package/src/schemas/hq-package.schema.json +137 -0
- package/src/strategies/link.ts +62 -0
- package/src/strategies/merge.ts +142 -0
- package/src/types.ts +47 -0
- package/src/utils/auth.ts +193 -0
- package/src/utils/cognito-session.ts +94 -0
- package/src/utils/git.ts +74 -0
- package/src/utils/hq-root.ts +27 -0
- package/src/utils/integrity.ts +54 -0
- package/src/utils/manifest.ts +109 -0
- package/src/utils/registry-client.ts +204 -0
- package/src/utils/registry.ts +89 -0
- package/src/utils/token-store.ts +83 -0
- package/tsconfig.json +8 -0
- package/dist/commands/cloud-setup.d.ts +0 -19
- package/dist/commands/cloud-setup.d.ts.map +0 -1
- package/dist/commands/cloud-setup.js +0 -206
- package/dist/commands/cloud-setup.js.map +0 -1
- package/dist/commands/initial-upload.d.ts +0 -67
- package/dist/commands/initial-upload.d.ts.map +0 -1
- package/dist/commands/initial-upload.js +0 -205
- package/dist/commands/initial-upload.js.map +0 -1
- package/dist/sync-worker.d.ts +0 -11
- package/dist/sync-worker.d.ts.map +0 -1
- package/dist/sync-worker.js +0 -77
- package/dist/sync-worker.js.map +0 -1
- package/dist/utils/api-client.d.ts +0 -26
- package/dist/utils/api-client.d.ts.map +0 -1
- package/dist/utils/api-client.js +0 -87
- package/dist/utils/api-client.js.map +0 -1
- package/dist/utils/credentials.d.ts +0 -44
- package/dist/utils/credentials.d.ts.map +0 -1
- package/dist/utils/credentials.js +0 -101
- package/dist/utils/credentials.js.map +0 -1
- package/dist/utils/sync.d.ts +0 -125
- package/dist/utils/sync.d.ts.map +0 -1
- package/dist/utils/sync.js +0 -291
- package/dist/utils/sync.js.map +0 -1
|
@@ -0,0 +1,629 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* hq team-sync — pull latest team content with entitlement refresh (US-006)
|
|
3
|
+
*
|
|
4
|
+
* For each companies/{slug}/ directory that has a team.json:
|
|
5
|
+
* 1. Re-authenticate if token is expired (Cognito → device code flow)
|
|
6
|
+
* 2. Fetch current entitlements from API and update sparse checkout if changed
|
|
7
|
+
* 3. Configure git credentials for the pull
|
|
8
|
+
* 4. Git pull latest content
|
|
9
|
+
* 5. Report what changed (new, updated, removed files)
|
|
10
|
+
* 6. Gracefully handle conflicts (warn, don't force overwrite)
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import * as fs from 'fs';
|
|
14
|
+
import * as path from 'path';
|
|
15
|
+
import { execSync } from 'child_process';
|
|
16
|
+
import { Command } from 'commander';
|
|
17
|
+
import chalk from 'chalk';
|
|
18
|
+
import simpleGit from 'simple-git';
|
|
19
|
+
import { findHqRoot } from '../utils/hq-root.js';
|
|
20
|
+
import { getAuthToken } from '../utils/auth.js';
|
|
21
|
+
import type { AuthToken } from '../utils/token-store.js';
|
|
22
|
+
|
|
23
|
+
// ─── Types ──────────────────────────────────────────────────────────────────
|
|
24
|
+
|
|
25
|
+
interface TeamMetadata {
|
|
26
|
+
team_id: string;
|
|
27
|
+
team_name: string;
|
|
28
|
+
team_slug: string;
|
|
29
|
+
joined_at: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
interface TeamEntitlement {
|
|
33
|
+
pack_slug: string;
|
|
34
|
+
paths: string[];
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
interface RepoConfig {
|
|
38
|
+
repo_url: string;
|
|
39
|
+
git_credentials: {
|
|
40
|
+
username: string;
|
|
41
|
+
password: string;
|
|
42
|
+
};
|
|
43
|
+
default_branch: string;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
interface TeamSyncResult {
|
|
47
|
+
slug: string;
|
|
48
|
+
teamName: string;
|
|
49
|
+
success: boolean;
|
|
50
|
+
action: 'synced' | 'up-to-date' | 'conflict' | 'error';
|
|
51
|
+
newFiles: string[];
|
|
52
|
+
updatedFiles: string[];
|
|
53
|
+
removedFiles: string[];
|
|
54
|
+
entitlementsChanged: boolean;
|
|
55
|
+
message?: string;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// ─── API helpers ────────────────────────────────────────────────────────────
|
|
59
|
+
|
|
60
|
+
const API_BASE = 'https://hq.indigoai.com/api';
|
|
61
|
+
|
|
62
|
+
async function apiGet<T>(urlPath: string, token: string): Promise<T> {
|
|
63
|
+
const res = await fetch(`${API_BASE}${urlPath}`, {
|
|
64
|
+
method: 'GET',
|
|
65
|
+
headers: {
|
|
66
|
+
Accept: 'application/json',
|
|
67
|
+
Authorization: `Bearer ${token}`,
|
|
68
|
+
},
|
|
69
|
+
signal: AbortSignal.timeout(15_000),
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
if (!res.ok) {
|
|
73
|
+
const text = await res.text().catch(() => '');
|
|
74
|
+
throw new Error(`API ${urlPath} failed (${res.status}): ${text}`);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
return (await res.json()) as T;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
async function fetchTeamEntitlements(
|
|
81
|
+
teamId: string,
|
|
82
|
+
token: string
|
|
83
|
+
): Promise<TeamEntitlement[]> {
|
|
84
|
+
const data = await apiGet<{ entitlements: TeamEntitlement[] }>(
|
|
85
|
+
`/teams/${encodeURIComponent(teamId)}/entitlements/mine`,
|
|
86
|
+
token
|
|
87
|
+
);
|
|
88
|
+
return data.entitlements ?? [];
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
async function fetchRepoConfig(
|
|
92
|
+
teamId: string,
|
|
93
|
+
token: string
|
|
94
|
+
): Promise<RepoConfig> {
|
|
95
|
+
return apiGet<RepoConfig>(
|
|
96
|
+
`/teams/${encodeURIComponent(teamId)}/repo-config`,
|
|
97
|
+
token
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// ─── Sparse checkout helpers ────────────────────────────────────────────────
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Read the current sparse checkout paths from the repo.
|
|
105
|
+
* Returns an empty array if sparse checkout is not configured.
|
|
106
|
+
*/
|
|
107
|
+
function getCurrentSparseCheckoutPaths(repoDir: string): string[] {
|
|
108
|
+
try {
|
|
109
|
+
const output = execSync('git sparse-checkout list', {
|
|
110
|
+
cwd: repoDir,
|
|
111
|
+
stdio: 'pipe',
|
|
112
|
+
encoding: 'utf-8',
|
|
113
|
+
});
|
|
114
|
+
return output
|
|
115
|
+
.split('\n')
|
|
116
|
+
.map((l) => l.trim())
|
|
117
|
+
.filter(Boolean);
|
|
118
|
+
} catch {
|
|
119
|
+
return [];
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Update sparse checkout paths. Returns true if paths changed.
|
|
125
|
+
*/
|
|
126
|
+
function updateSparseCheckout(
|
|
127
|
+
repoDir: string,
|
|
128
|
+
newPaths: string[]
|
|
129
|
+
): boolean {
|
|
130
|
+
const current = getCurrentSparseCheckoutPaths(repoDir);
|
|
131
|
+
const currentSet = new Set(current);
|
|
132
|
+
const newSet = new Set(newPaths);
|
|
133
|
+
|
|
134
|
+
// Check if paths are identical
|
|
135
|
+
if (
|
|
136
|
+
currentSet.size === newSet.size &&
|
|
137
|
+
[...currentSet].every((p) => newSet.has(p))
|
|
138
|
+
) {
|
|
139
|
+
return false;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// Update sparse checkout
|
|
143
|
+
if (newPaths.length > 0) {
|
|
144
|
+
const pathList = newPaths.join(' ');
|
|
145
|
+
execSync(`git sparse-checkout set ${pathList}`, {
|
|
146
|
+
cwd: repoDir,
|
|
147
|
+
stdio: 'pipe',
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
return true;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// ─── Git credential helper ──────────────────────────────────────────────────
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Configure git credentials for a pull operation.
|
|
158
|
+
* Uses the credential helper to inject the token for HTTPS auth.
|
|
159
|
+
* Credentials are set per-repo (not global) and cleared after pull.
|
|
160
|
+
*/
|
|
161
|
+
function configureGitCredentials(
|
|
162
|
+
repoDir: string,
|
|
163
|
+
repoConfig: RepoConfig
|
|
164
|
+
): void {
|
|
165
|
+
const { username, password } = repoConfig.git_credentials;
|
|
166
|
+
// Set up a one-shot credential helper that provides the token
|
|
167
|
+
// This avoids writing secrets to disk or the git config permanently
|
|
168
|
+
const credentialHelper = `!f() { echo "username=${username}"; echo "password=${password}"; }; f`;
|
|
169
|
+
execSync(
|
|
170
|
+
`git config credential.helper '${credentialHelper}'`,
|
|
171
|
+
{ cwd: repoDir, stdio: 'pipe' }
|
|
172
|
+
);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Clear temporary git credentials after pull.
|
|
177
|
+
*/
|
|
178
|
+
function clearGitCredentials(repoDir: string): void {
|
|
179
|
+
try {
|
|
180
|
+
execSync('git config --unset credential.helper', {
|
|
181
|
+
cwd: repoDir,
|
|
182
|
+
stdio: 'pipe',
|
|
183
|
+
});
|
|
184
|
+
} catch {
|
|
185
|
+
// Ignore — may already be unset
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// ─── File diff tracking ────────────────────────────────────────────────────
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Get the list of tracked files currently checked out.
|
|
193
|
+
*/
|
|
194
|
+
function getTrackedFiles(repoDir: string): Set<string> {
|
|
195
|
+
try {
|
|
196
|
+
const output = execSync('git ls-files', {
|
|
197
|
+
cwd: repoDir,
|
|
198
|
+
stdio: 'pipe',
|
|
199
|
+
encoding: 'utf-8',
|
|
200
|
+
});
|
|
201
|
+
return new Set(
|
|
202
|
+
output
|
|
203
|
+
.split('\n')
|
|
204
|
+
.map((l) => l.trim())
|
|
205
|
+
.filter(Boolean)
|
|
206
|
+
);
|
|
207
|
+
} catch {
|
|
208
|
+
return new Set();
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
// ─── Team sync core ─────────────────────────────────────────────────────────
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Discover all team directories — directories with a team.json file.
|
|
216
|
+
*/
|
|
217
|
+
function discoverTeamDirs(hqRoot: string): { dir: string; meta: TeamMetadata }[] {
|
|
218
|
+
const companiesDir = path.join(hqRoot, 'companies');
|
|
219
|
+
if (!fs.existsSync(companiesDir)) {
|
|
220
|
+
return [];
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
const results: { dir: string; meta: TeamMetadata }[] = [];
|
|
224
|
+
|
|
225
|
+
for (const entry of fs.readdirSync(companiesDir, { withFileTypes: true })) {
|
|
226
|
+
if (!entry.isDirectory()) continue;
|
|
227
|
+
|
|
228
|
+
const teamJsonPath = path.join(companiesDir, entry.name, 'team.json');
|
|
229
|
+
if (!fs.existsSync(teamJsonPath)) continue;
|
|
230
|
+
|
|
231
|
+
try {
|
|
232
|
+
const raw = fs.readFileSync(teamJsonPath, 'utf-8');
|
|
233
|
+
const meta = JSON.parse(raw) as TeamMetadata;
|
|
234
|
+
|
|
235
|
+
if (meta.team_id && meta.team_slug) {
|
|
236
|
+
results.push({
|
|
237
|
+
dir: path.join(companiesDir, entry.name),
|
|
238
|
+
meta,
|
|
239
|
+
});
|
|
240
|
+
}
|
|
241
|
+
} catch {
|
|
242
|
+
// Skip malformed team.json
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
return results;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* Sync a single team directory:
|
|
251
|
+
* 1. Refresh entitlements → update sparse checkout
|
|
252
|
+
* 2. Configure credentials → git pull
|
|
253
|
+
* 3. Report changes
|
|
254
|
+
*/
|
|
255
|
+
async function syncTeam(
|
|
256
|
+
teamDir: string,
|
|
257
|
+
meta: TeamMetadata,
|
|
258
|
+
authToken: AuthToken
|
|
259
|
+
): Promise<TeamSyncResult> {
|
|
260
|
+
const result: TeamSyncResult = {
|
|
261
|
+
slug: meta.team_slug,
|
|
262
|
+
teamName: meta.team_name,
|
|
263
|
+
success: false,
|
|
264
|
+
action: 'error',
|
|
265
|
+
newFiles: [],
|
|
266
|
+
updatedFiles: [],
|
|
267
|
+
removedFiles: [],
|
|
268
|
+
entitlementsChanged: false,
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
const git = simpleGit(teamDir);
|
|
272
|
+
|
|
273
|
+
// Check if this is actually a git repo
|
|
274
|
+
try {
|
|
275
|
+
const isRepo = await git.checkIsRepo();
|
|
276
|
+
if (!isRepo) {
|
|
277
|
+
result.message = 'Not a git repository — skipping (run team setup first)';
|
|
278
|
+
return result;
|
|
279
|
+
}
|
|
280
|
+
} catch {
|
|
281
|
+
result.message = 'Not a git repository — skipping (run team setup first)';
|
|
282
|
+
return result;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
// 1. Fetch current entitlements and update sparse checkout
|
|
286
|
+
try {
|
|
287
|
+
const entitlements = await fetchTeamEntitlements(
|
|
288
|
+
meta.team_id,
|
|
289
|
+
authToken.clerk_session_token
|
|
290
|
+
);
|
|
291
|
+
const entitledPaths = entitlements.flatMap((e) => e.paths);
|
|
292
|
+
|
|
293
|
+
if (entitledPaths.length > 0) {
|
|
294
|
+
result.entitlementsChanged = updateSparseCheckout(teamDir, entitledPaths);
|
|
295
|
+
if (result.entitlementsChanged) {
|
|
296
|
+
console.log(
|
|
297
|
+
chalk.yellow(` Entitlements changed — sparse checkout updated`)
|
|
298
|
+
);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
} catch (err) {
|
|
302
|
+
console.log(
|
|
303
|
+
chalk.yellow(
|
|
304
|
+
` Warning: could not refresh entitlements: ${err instanceof Error ? err.message : 'Unknown error'}`
|
|
305
|
+
)
|
|
306
|
+
);
|
|
307
|
+
console.log(chalk.yellow(` Continuing with existing sparse checkout...`));
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
// 2. Snapshot files before pull
|
|
311
|
+
const filesBefore = getTrackedFiles(teamDir);
|
|
312
|
+
|
|
313
|
+
// 3. Check for local modifications (conflict detection)
|
|
314
|
+
try {
|
|
315
|
+
const status = await git.status();
|
|
316
|
+
if (status.modified.length > 0 || status.staged.length > 0) {
|
|
317
|
+
console.log(
|
|
318
|
+
chalk.yellow(
|
|
319
|
+
` Warning: ${status.modified.length + status.staged.length} locally modified file(s) detected`
|
|
320
|
+
)
|
|
321
|
+
);
|
|
322
|
+
for (const f of [...status.modified, ...status.staged].slice(0, 10)) {
|
|
323
|
+
console.log(chalk.yellow(` - ${f}`));
|
|
324
|
+
}
|
|
325
|
+
if (status.modified.length + status.staged.length > 10) {
|
|
326
|
+
console.log(
|
|
327
|
+
chalk.yellow(
|
|
328
|
+
` ... and ${status.modified.length + status.staged.length - 10} more`
|
|
329
|
+
)
|
|
330
|
+
);
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
} catch {
|
|
334
|
+
// Status check failed — continue anyway
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
// 4. Configure credentials and pull
|
|
338
|
+
let repoConfig: RepoConfig;
|
|
339
|
+
try {
|
|
340
|
+
repoConfig = await fetchRepoConfig(
|
|
341
|
+
meta.team_id,
|
|
342
|
+
authToken.clerk_session_token
|
|
343
|
+
);
|
|
344
|
+
} catch (err) {
|
|
345
|
+
result.message = `Failed to fetch repo credentials: ${err instanceof Error ? err.message : 'Unknown error'}`;
|
|
346
|
+
return result;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
try {
|
|
350
|
+
configureGitCredentials(teamDir, repoConfig);
|
|
351
|
+
|
|
352
|
+
// Fetch first
|
|
353
|
+
await git.fetch(['origin']);
|
|
354
|
+
|
|
355
|
+
// Attempt pull with --ff-only to avoid merge conflicts
|
|
356
|
+
try {
|
|
357
|
+
const pullResult = await git.pull('origin', repoConfig.default_branch, [
|
|
358
|
+
'--ff-only',
|
|
359
|
+
]);
|
|
360
|
+
|
|
361
|
+
if (
|
|
362
|
+
pullResult.summary.changes === 0 &&
|
|
363
|
+
pullResult.summary.insertions === 0 &&
|
|
364
|
+
pullResult.summary.deletions === 0
|
|
365
|
+
) {
|
|
366
|
+
result.success = true;
|
|
367
|
+
result.action = 'up-to-date';
|
|
368
|
+
return result;
|
|
369
|
+
}
|
|
370
|
+
} catch (pullErr) {
|
|
371
|
+
const errMsg =
|
|
372
|
+
pullErr instanceof Error ? pullErr.message : String(pullErr);
|
|
373
|
+
|
|
374
|
+
if (
|
|
375
|
+
errMsg.includes('Not possible to fast-forward') ||
|
|
376
|
+
errMsg.includes('CONFLICT') ||
|
|
377
|
+
errMsg.includes('diverged')
|
|
378
|
+
) {
|
|
379
|
+
result.action = 'conflict';
|
|
380
|
+
result.message =
|
|
381
|
+
'Local changes conflict with remote. ' +
|
|
382
|
+
'Resolve manually or stash local changes and retry:\n' +
|
|
383
|
+
` cd ${teamDir}\n` +
|
|
384
|
+
' git stash\n' +
|
|
385
|
+
' hq team-sync\n' +
|
|
386
|
+
' git stash pop';
|
|
387
|
+
return result;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
// Re-throw unexpected errors
|
|
391
|
+
throw pullErr;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
// 5. Snapshot files after pull and compute diff
|
|
395
|
+
const filesAfter = getTrackedFiles(teamDir);
|
|
396
|
+
|
|
397
|
+
for (const f of filesAfter) {
|
|
398
|
+
if (!filesBefore.has(f)) {
|
|
399
|
+
result.newFiles.push(f);
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
for (const f of filesBefore) {
|
|
404
|
+
if (!filesAfter.has(f)) {
|
|
405
|
+
result.removedFiles.push(f);
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
// Approximate updated files: files that existed before and after
|
|
410
|
+
// (git pull output would be more precise but this is sufficient)
|
|
411
|
+
// We count files that are in both sets as potentially updated
|
|
412
|
+
// The actual change count comes from the pull summary
|
|
413
|
+
result.updatedFiles = []; // Tracked via pull summary above
|
|
414
|
+
|
|
415
|
+
result.success = true;
|
|
416
|
+
result.action = 'synced';
|
|
417
|
+
} catch (err) {
|
|
418
|
+
result.message = `Pull failed: ${err instanceof Error ? err.message : 'Unknown error'}`;
|
|
419
|
+
} finally {
|
|
420
|
+
clearGitCredentials(teamDir);
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
return result;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
// ─── Command registration ───────────────────────────────────────────────────
|
|
427
|
+
|
|
428
|
+
export function registerTeamSyncCommand(program: Command): void {
|
|
429
|
+
program
|
|
430
|
+
.command('team-sync')
|
|
431
|
+
.description('Pull latest team content for all joined teams')
|
|
432
|
+
.option('--team <slug>', 'Sync only a specific team by slug')
|
|
433
|
+
.option('--dry-run', 'Show what would be synced without making changes')
|
|
434
|
+
.action(
|
|
435
|
+
async (options: { team?: string; dryRun?: boolean }) => {
|
|
436
|
+
try {
|
|
437
|
+
const hqRoot = findHqRoot();
|
|
438
|
+
|
|
439
|
+
// 1. Discover team directories
|
|
440
|
+
let teamDirs = discoverTeamDirs(hqRoot);
|
|
441
|
+
|
|
442
|
+
if (teamDirs.length === 0) {
|
|
443
|
+
console.log(
|
|
444
|
+
chalk.yellow(
|
|
445
|
+
'No team directories found. Join a team first with: npx create-hq'
|
|
446
|
+
)
|
|
447
|
+
);
|
|
448
|
+
return;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
// Filter to specific team if requested
|
|
452
|
+
if (options.team) {
|
|
453
|
+
teamDirs = teamDirs.filter(
|
|
454
|
+
(t) => t.meta.team_slug === options.team
|
|
455
|
+
);
|
|
456
|
+
if (teamDirs.length === 0) {
|
|
457
|
+
console.log(
|
|
458
|
+
chalk.red(
|
|
459
|
+
`Team "${options.team}" not found. Available teams:`
|
|
460
|
+
)
|
|
461
|
+
);
|
|
462
|
+
for (const t of discoverTeamDirs(hqRoot)) {
|
|
463
|
+
console.log(` - ${t.meta.team_slug} (${t.meta.team_name})`);
|
|
464
|
+
}
|
|
465
|
+
process.exit(1);
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
// 2. Get valid auth token (handles refresh / re-auth prompt)
|
|
470
|
+
let authToken: AuthToken;
|
|
471
|
+
try {
|
|
472
|
+
authToken = await getAuthToken();
|
|
473
|
+
} catch (err) {
|
|
474
|
+
console.error(
|
|
475
|
+
chalk.red(
|
|
476
|
+
`Authentication required: ${err instanceof Error ? err.message : 'Unknown error'}`
|
|
477
|
+
)
|
|
478
|
+
);
|
|
479
|
+
console.error(
|
|
480
|
+
chalk.yellow("Run 'hq login' to authenticate, then retry.")
|
|
481
|
+
);
|
|
482
|
+
process.exit(1);
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
// 3. Sync each team
|
|
486
|
+
console.log(
|
|
487
|
+
chalk.bold(
|
|
488
|
+
`\nSyncing ${teamDirs.length} team${teamDirs.length === 1 ? '' : 's'}...\n`
|
|
489
|
+
)
|
|
490
|
+
);
|
|
491
|
+
|
|
492
|
+
const results: TeamSyncResult[] = [];
|
|
493
|
+
|
|
494
|
+
for (const { dir, meta } of teamDirs) {
|
|
495
|
+
console.log(chalk.cyan(` [${meta.team_name}]`));
|
|
496
|
+
|
|
497
|
+
if (options.dryRun) {
|
|
498
|
+
console.log(chalk.dim(` Would sync: ${dir}`));
|
|
499
|
+
console.log(
|
|
500
|
+
chalk.dim(` Team ID: ${meta.team_id}`)
|
|
501
|
+
);
|
|
502
|
+
console.log();
|
|
503
|
+
continue;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
const result = await syncTeam(dir, meta, authToken);
|
|
507
|
+
results.push(result);
|
|
508
|
+
|
|
509
|
+
// Print result
|
|
510
|
+
switch (result.action) {
|
|
511
|
+
case 'synced': {
|
|
512
|
+
const parts: string[] = [];
|
|
513
|
+
if (result.newFiles.length > 0)
|
|
514
|
+
parts.push(
|
|
515
|
+
chalk.green(`+${result.newFiles.length} new`)
|
|
516
|
+
);
|
|
517
|
+
if (result.removedFiles.length > 0)
|
|
518
|
+
parts.push(
|
|
519
|
+
chalk.red(`-${result.removedFiles.length} removed`)
|
|
520
|
+
);
|
|
521
|
+
if (result.entitlementsChanged)
|
|
522
|
+
parts.push(chalk.yellow('entitlements updated'));
|
|
523
|
+
|
|
524
|
+
const detail =
|
|
525
|
+
parts.length > 0 ? ` (${parts.join(', ')})` : '';
|
|
526
|
+
console.log(
|
|
527
|
+
chalk.green(` ✓ Synced${detail}`)
|
|
528
|
+
);
|
|
529
|
+
|
|
530
|
+
// Show new files
|
|
531
|
+
for (const f of result.newFiles.slice(0, 5)) {
|
|
532
|
+
console.log(chalk.green(` + ${f}`));
|
|
533
|
+
}
|
|
534
|
+
if (result.newFiles.length > 5) {
|
|
535
|
+
console.log(
|
|
536
|
+
chalk.dim(
|
|
537
|
+
` ... and ${result.newFiles.length - 5} more`
|
|
538
|
+
)
|
|
539
|
+
);
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
// Show removed files
|
|
543
|
+
for (const f of result.removedFiles.slice(0, 5)) {
|
|
544
|
+
console.log(chalk.red(` - ${f}`));
|
|
545
|
+
}
|
|
546
|
+
if (result.removedFiles.length > 5) {
|
|
547
|
+
console.log(
|
|
548
|
+
chalk.dim(
|
|
549
|
+
` ... and ${result.removedFiles.length - 5} more`
|
|
550
|
+
)
|
|
551
|
+
);
|
|
552
|
+
}
|
|
553
|
+
break;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
case 'up-to-date':
|
|
557
|
+
console.log(chalk.dim(` ✓ Already up to date`));
|
|
558
|
+
break;
|
|
559
|
+
|
|
560
|
+
case 'conflict':
|
|
561
|
+
console.log(
|
|
562
|
+
chalk.yellow(` ⚠ Conflict detected`)
|
|
563
|
+
);
|
|
564
|
+
if (result.message) {
|
|
565
|
+
console.log(chalk.yellow(` ${result.message}`));
|
|
566
|
+
}
|
|
567
|
+
break;
|
|
568
|
+
|
|
569
|
+
case 'error':
|
|
570
|
+
console.log(
|
|
571
|
+
chalk.red(
|
|
572
|
+
` ✗ Error: ${result.message ?? 'Unknown error'}`
|
|
573
|
+
)
|
|
574
|
+
);
|
|
575
|
+
break;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
console.log();
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
if (options.dryRun) {
|
|
582
|
+
console.log(chalk.dim('Dry run complete — no changes made.'));
|
|
583
|
+
return;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
// 4. Summary
|
|
587
|
+
const synced = results.filter(
|
|
588
|
+
(r) => r.action === 'synced'
|
|
589
|
+
).length;
|
|
590
|
+
const upToDate = results.filter(
|
|
591
|
+
(r) => r.action === 'up-to-date'
|
|
592
|
+
).length;
|
|
593
|
+
const conflicts = results.filter(
|
|
594
|
+
(r) => r.action === 'conflict'
|
|
595
|
+
).length;
|
|
596
|
+
const errors = results.filter(
|
|
597
|
+
(r) => r.action === 'error'
|
|
598
|
+
).length;
|
|
599
|
+
|
|
600
|
+
const summaryParts: string[] = [];
|
|
601
|
+
if (synced > 0) summaryParts.push(`${synced} synced`);
|
|
602
|
+
if (upToDate > 0)
|
|
603
|
+
summaryParts.push(`${upToDate} up to date`);
|
|
604
|
+
if (conflicts > 0)
|
|
605
|
+
summaryParts.push(
|
|
606
|
+
chalk.yellow(`${conflicts} conflict${conflicts > 1 ? 's' : ''}`)
|
|
607
|
+
);
|
|
608
|
+
if (errors > 0)
|
|
609
|
+
summaryParts.push(
|
|
610
|
+
chalk.red(`${errors} error${errors > 1 ? 's' : ''}`)
|
|
611
|
+
);
|
|
612
|
+
|
|
613
|
+
console.log(
|
|
614
|
+
chalk.bold(`Done: ${summaryParts.join(', ')}`)
|
|
615
|
+
);
|
|
616
|
+
|
|
617
|
+
if (conflicts > 0 || errors > 0) {
|
|
618
|
+
process.exit(1);
|
|
619
|
+
}
|
|
620
|
+
} catch (error) {
|
|
621
|
+
console.error(
|
|
622
|
+
chalk.red('Error:'),
|
|
623
|
+
error instanceof Error ? error.message : error
|
|
624
|
+
);
|
|
625
|
+
process.exit(1);
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
);
|
|
629
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* hq modules update command (US-008)
|
|
3
|
+
* Updates lock for specific module
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import * as path from 'path';
|
|
7
|
+
import { Command } from 'commander';
|
|
8
|
+
import { findHqRoot, readManifest, readLock, writeLock, getModulesDir } from '../utils/manifest.js';
|
|
9
|
+
import { fetchRepo, pullRepo, getCurrentCommit, isRepo } from '../utils/git.js';
|
|
10
|
+
|
|
11
|
+
export function registerUpdateCommand(program: Command): void {
|
|
12
|
+
program
|
|
13
|
+
.command('update [module-name]')
|
|
14
|
+
.description('Update lock for a specific module (or all if no name given)')
|
|
15
|
+
.action(async (moduleName?: string) => {
|
|
16
|
+
try {
|
|
17
|
+
const hqRoot = findHqRoot();
|
|
18
|
+
const manifest = readManifest(hqRoot);
|
|
19
|
+
|
|
20
|
+
if (!manifest || manifest.modules.length === 0) {
|
|
21
|
+
console.log('No modules in manifest.');
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
let lock = readLock(hqRoot);
|
|
26
|
+
if (!lock) {
|
|
27
|
+
lock = { version: '1', locked: {} };
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const modulesDir = getModulesDir(hqRoot);
|
|
31
|
+
const modulesToUpdate = moduleName
|
|
32
|
+
? manifest.modules.filter(m => m.name === moduleName)
|
|
33
|
+
: manifest.modules;
|
|
34
|
+
|
|
35
|
+
if (moduleName && modulesToUpdate.length === 0) {
|
|
36
|
+
console.error(`Module "${moduleName}" not found in manifest.`);
|
|
37
|
+
process.exit(1);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
for (const module of modulesToUpdate) {
|
|
41
|
+
const moduleDir = path.join(modulesDir, module.name);
|
|
42
|
+
|
|
43
|
+
if (!await isRepo(moduleDir)) {
|
|
44
|
+
console.log(` ${module.name}: not installed, skipping`);
|
|
45
|
+
continue;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
console.log(` ${module.name}: fetching...`);
|
|
49
|
+
await fetchRepo(moduleDir);
|
|
50
|
+
await pullRepo(moduleDir);
|
|
51
|
+
|
|
52
|
+
const commit = await getCurrentCommit(moduleDir);
|
|
53
|
+
const oldCommit = lock.locked[module.name];
|
|
54
|
+
lock.locked[module.name] = commit;
|
|
55
|
+
|
|
56
|
+
if (oldCommit === commit) {
|
|
57
|
+
console.log(` ${module.name}: already up to date @ ${commit.slice(0, 7)}`);
|
|
58
|
+
} else {
|
|
59
|
+
console.log(` ${module.name}: updated ${oldCommit?.slice(0, 7) || 'none'} -> ${commit.slice(0, 7)}`);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
writeLock(hqRoot, lock);
|
|
64
|
+
console.log('\nLock file updated.');
|
|
65
|
+
|
|
66
|
+
} catch (error) {
|
|
67
|
+
console.error('Error:', error instanceof Error ? error.message : error);
|
|
68
|
+
process.exit(1);
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
}
|