@handsupmin/gc-tree 0.7.1 → 0.7.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/dist/src/cli.js CHANGED
@@ -139,6 +139,11 @@ async function launchGuidedFlow({ provider, providerMode, preferredLanguage, tar
139
139
  return plan;
140
140
  return maybeLaunchProvider(plan);
141
141
  }
142
+ function printJsonUnlessLaunched(payload, launch) {
143
+ if (launch?.launched)
144
+ return;
145
+ console.log(JSON.stringify(payload, null, 2));
146
+ }
142
147
  async function main() {
143
148
  if (hasFlag('--version') || hasFlag('-v')) {
144
149
  stdout.write(`${await readPackageVersion()}\n`);
@@ -189,7 +194,7 @@ async function main() {
189
194
  noLaunch: hasFlag('--no-launch'),
190
195
  })
191
196
  : null;
192
- console.log(JSON.stringify({
197
+ printJsonUnlessLaunched({
193
198
  ...result,
194
199
  provider_mode: settings.provider_mode,
195
200
  preferred_provider: settings.preferred_provider,
@@ -197,7 +202,7 @@ async function main() {
197
202
  global_scaffold: globalScaffold,
198
203
  scaffold,
199
204
  launch,
200
- }, null, 2));
205
+ }, launch);
201
206
  return;
202
207
  }
203
208
  case 'checkout': {
@@ -289,7 +294,7 @@ async function main() {
289
294
  command: 'gc-onboard',
290
295
  noLaunch: hasFlag('--no-launch'),
291
296
  });
292
- console.log(JSON.stringify({ mode: 'guided_onboarding', gc_branch: gcBranch, preferred_provider: provider, scaffold, launch }, null, 2));
297
+ printJsonUnlessLaunched({ mode: 'guided_onboarding', gc_branch: gcBranch, preferred_provider: provider, scaffold, launch }, launch);
293
298
  return;
294
299
  }
295
300
  case 'verify-onboarding': {
@@ -486,7 +491,7 @@ async function main() {
486
491
  command: 'gc-update-global-context',
487
492
  noLaunch: hasFlag('--no-launch'),
488
493
  });
489
- console.log(JSON.stringify({ mode: 'guided_update', gc_branch: gcBranch, preferred_provider: provider, scaffold, launch }, null, 2));
494
+ printJsonUnlessLaunched({ mode: 'guided_update', gc_branch: gcBranch, preferred_provider: provider, scaffold, launch }, launch);
490
495
  return;
491
496
  }
492
497
  case '__apply-update': {
@@ -30,6 +30,40 @@ function parseDocReference(value) {
30
30
  }
31
31
  return null;
32
32
  }
33
+ function parseTitlePlacement(value) {
34
+ const trimmed = String(value || '').trim();
35
+ if (!trimmed)
36
+ return null;
37
+ if (/^index$/i.test(trimmed))
38
+ return { category: 'index', slug: 'index', label: 'Index' };
39
+ const match = trimmed.match(/^(role|repo|repos|repository|repositories|domain|workflow|workflows|convention|conventions|infra|verification)\s*:\s*(.+)$/i);
40
+ if (!match)
41
+ return null;
42
+ const rawCategory = match[1].toLowerCase();
43
+ const categoryMap = {
44
+ role: 'role',
45
+ repo: 'repos',
46
+ repos: 'repos',
47
+ repository: 'repos',
48
+ repositories: 'repos',
49
+ domain: 'domain',
50
+ workflow: 'workflows',
51
+ workflows: 'workflows',
52
+ convention: 'conventions',
53
+ conventions: 'conventions',
54
+ infra: 'infra',
55
+ verification: 'verification',
56
+ };
57
+ const label = match[2].trim();
58
+ const category = categoryMap[rawCategory];
59
+ if (!category || !label)
60
+ return null;
61
+ return {
62
+ category,
63
+ slug: slugify(label),
64
+ label,
65
+ };
66
+ }
33
67
  export function ensureSummary(summary) {
34
68
  const trimmed = String(summary || '').trim();
35
69
  if (!trimmed) {
@@ -40,6 +74,10 @@ export function ensureSummary(summary) {
40
74
  export function renderDocMarkdown(doc) {
41
75
  const summary = ensureSummary(doc.summary);
42
76
  const body = String(doc.body || '').trim();
77
+ const normalizedIndexEntries = [...new Set([
78
+ ...(doc.indexLabel?.trim() ? [doc.indexLabel.trim()] : []),
79
+ ...(doc.indexEntries || []).map((entry) => String(entry || '').trim()).filter(Boolean),
80
+ ])];
43
81
  return [
44
82
  `# ${doc.title.trim()}`,
45
83
  '',
@@ -50,8 +88,8 @@ export function renderDocMarkdown(doc) {
50
88
  ...(doc.tags && doc.tags.length > 0
51
89
  ? ['## Tags', '', ...doc.tags.map((tag) => `- ${tag}`), '']
52
90
  : []),
53
- ...(doc.indexEntries && doc.indexEntries.length > 0
54
- ? ['## Index Entries', '', ...doc.indexEntries.map((entry) => `- ${entry}`), '']
91
+ ...(normalizedIndexEntries.length > 0
92
+ ? ['## Index Entries', '', ...normalizedIndexEntries.map((entry) => `- ${entry}`), '']
55
93
  : []),
56
94
  '## Details',
57
95
  '',
@@ -194,6 +232,15 @@ export function normalizeIndexEntry(value, fallback) {
194
232
  return null;
195
233
  if (/^docs\/index\.md$/i.test(trimmed) || /^index\.md$/i.test(trimmed))
196
234
  return null;
235
+ const titlePlacement = parseTitlePlacement(trimmed);
236
+ if (titlePlacement) {
237
+ if (titlePlacement.category === 'index')
238
+ return null;
239
+ return {
240
+ category: titlePlacement.category,
241
+ label: titlePlacement.label,
242
+ };
243
+ }
197
244
  return {
198
245
  category: fallback.category,
199
246
  label: trimmed,
@@ -203,12 +250,28 @@ export function inferDocPlacement(input) {
203
250
  for (const candidate of [input.slug, input.indexLabel]) {
204
251
  const reference = parseDocReference(candidate || '');
205
252
  if (reference) {
206
- return { category: reference.category, slug: reference.slug };
253
+ return { category: reference.category, slug: reference.slug, label: reference.label, isIndexDoc: false };
207
254
  }
208
255
  }
256
+ const titlePlacement = parseTitlePlacement(input.title);
257
+ const explicitLabel = String(input.indexLabel || '').trim();
258
+ const preferredLabel = explicitLabel && !parseDocReference(explicitLabel) ? explicitLabel : input.title.trim();
259
+ if (titlePlacement) {
260
+ return {
261
+ category: titlePlacement.category === 'index' ? null : titlePlacement.category,
262
+ slug: titlePlacement.slug,
263
+ label: explicitLabel && !parseDocReference(explicitLabel) ? explicitLabel : titlePlacement.label,
264
+ isIndexDoc: titlePlacement.category === 'index',
265
+ };
266
+ }
209
267
  const explicitCategory = input.category ? slugify(input.category) : null;
210
268
  const slug = slugify(input.slug || input.indexLabel || input.title);
211
- return { category: explicitCategory, slug };
269
+ return {
270
+ category: explicitCategory,
271
+ slug,
272
+ label: preferredLabel,
273
+ isIndexDoc: slug === 'index' && explicitCategory === null,
274
+ };
212
275
  }
213
276
  export function extractSummary(markdown) {
214
277
  const match = String(markdown || '').match(/## Summary\s+([\s\S]*?)(?:\n## |$)/);
@@ -17,6 +17,9 @@ export async function onboardBranch({ home, input, branch, }) {
17
17
  await mkdir(branchDocsDir(home, targetBranch), { recursive: true });
18
18
  const written = [];
19
19
  for (const doc of input.docs) {
20
+ const inferred = inferDocPlacement(doc);
21
+ if (inferred.isIndexDoc)
22
+ continue;
20
23
  const fullPath = join(branchDocsDir(home, targetBranch), docRelativePath(doc));
21
24
  await mkdir(dirname(fullPath), { recursive: true });
22
25
  await writeFile(fullPath, renderDocMarkdown(doc), 'utf8');
package/dist/src/store.js CHANGED
@@ -109,18 +109,19 @@ export async function writeIndexFromDocs(home, branch) {
109
109
  const docsDir = branchDocsDir(home, branch);
110
110
  await mkdir(docsDir, { recursive: true });
111
111
  const files = await listDocRelativePaths(docsDir);
112
- const docs = await Promise.all(files.map(async (file) => {
112
+ const docs = await Promise.all(files.filter((file) => !/(^|\/)index\.md$/i.test(file)).map(async (file) => {
113
113
  const raw = await readFile(join(docsDir, file), 'utf8');
114
114
  const title = raw.match(/^#\s+(.+)$/m)?.[1]?.trim() || file.replace(/\.md$/i, '').replace(/-/g, ' ');
115
115
  const parts = file.replace(/\.md$/i, '').split('/').filter(Boolean);
116
116
  const fallbackCategory = parts.length > 1 ? parts[0] : 'general';
117
117
  const fallbackLabel = parts.length > 1 ? parts[parts.length - 1] : title;
118
- const inferred = inferDocPlacement({ title, indexLabel: title });
118
+ const inferred = inferDocPlacement({ title });
119
119
  const docCategory = inferred.category || fallbackCategory;
120
+ const docLabel = inferred.label || fallbackLabel;
120
121
  const indexEntries = extractIndexEntries(raw)
121
- .map((entry) => normalizeIndexEntry(entry, { category: docCategory, label: fallbackLabel }))
122
+ .map((entry) => normalizeIndexEntry(entry, { category: docCategory, label: docLabel }))
122
123
  .filter((entry) => Boolean(entry));
123
- const entryLabels = indexEntries.length > 0 ? indexEntries : [{ category: docCategory, label: fallbackLabel }];
124
+ const entryLabels = indexEntries.length > 0 ? indexEntries : [{ category: docCategory, label: docLabel }];
124
125
  const uniqueEntries = [...new Map(entryLabels.map((entry) => [`${entry.category}::${entry.label}`, entry])).values()];
125
126
  return uniqueEntries.map((entry) => ({
126
127
  title,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@handsupmin/gc-tree",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Global Context Tree, a lightweight branch-aware global context orchestrator for AI coding tools",
5
5
  "type": "module",
6
6
  "private": false,