claude-code-autoconfig 1.0.159 → 1.0.161

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.
@@ -490,7 +490,7 @@
490
490
  }
491
491
 
492
492
  .info-panel {
493
- padding: 20px;
493
+ padding: 20px 20px 20px 0;
494
494
  width: 100%;
495
495
  box-sizing: border-box;
496
496
  }
@@ -599,8 +599,9 @@
599
599
  }
600
600
 
601
601
  th, td {
602
- padding: 12px 16px;
602
+ padding: 12px 16px 12px 0;
603
603
  text-align: left;
604
+ vertical-align: top;
604
605
  border-bottom: 1px solid var(--bg-elevated);
605
606
  }
606
607
 
@@ -133,13 +133,13 @@ function buildSwaggerHtml(meta) {
133
133
  if (meta.params.length > 0) {
134
134
  let table = '<div style="margin-top: 12px;"><strong>Parameters</strong>';
135
135
  table += '<table style="width: 100%; margin-top: 6px; border-collapse: collapse; font-size: 0.9em; text-align: left;">';
136
- table += '<tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px;">Name</th><th style="padding: 4px 8px;">Type</th><th style="padding: 4px 8px;">Required</th><th style="padding: 4px 8px;">Description</th></tr>';
136
+ table += '<tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px 4px 0;">Name</th><th style="padding: 4px 8px 4px 0;">Type</th><th style="padding: 4px 8px 4px 0;">Required</th><th style="padding: 4px 8px 4px 0;">Description</th></tr>';
137
137
  for (const p of meta.params) {
138
138
  table += `<tr style="border-bottom: 1px solid var(--border);">`;
139
- table += `<td style="padding: 4px 8px; white-space: nowrap;"><code>${p.name}</code></td>`;
140
- table += `<td style="padding: 4px 8px;"><code>${p.type}</code></td>`;
141
- table += `<td style="padding: 4px 8px;">${p.required}</td>`;
142
- table += `<td style="padding: 4px 8px;">${p.desc}</td>`;
139
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top; white-space: nowrap;"><code>${p.name}</code></td>`;
140
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top;"><code>${p.type}</code></td>`;
141
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top;">${p.required}</td>`;
142
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top;">${p.desc}</td>`;
143
143
  table += `</tr>`;
144
144
  }
145
145
  table += '</table></div>';
@@ -152,11 +152,11 @@ function buildSwaggerHtml(meta) {
152
152
  if (meta.responses.length > 0) {
153
153
  let table = '<div style="margin-top: 12px;"><strong>Responses</strong>';
154
154
  table += '<table style="width: 100%; margin-top: 6px; border-collapse: collapse; font-size: 0.9em; text-align: left;">';
155
- table += '<tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px;">Status</th><th style="padding: 4px 8px;">Description</th></tr>';
155
+ table += '<tr style="text-align: left; border-bottom: 1px solid var(--border);"><th style="padding: 4px 8px 4px 0;">Status</th><th style="padding: 4px 8px 4px 0;">Description</th></tr>';
156
156
  for (const r of meta.responses) {
157
157
  table += `<tr style="border-bottom: 1px solid var(--border);">`;
158
- table += `<td style="padding: 4px 8px; white-space: nowrap;"><code>${r.status}</code></td>`;
159
- table += `<td style="padding: 4px 8px;">${r.desc}</td>`;
158
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top; white-space: nowrap;"><code>${r.status}</code></td>`;
159
+ table += `<td style="padding: 4px 8px 4px 0; vertical-align: top;">${r.desc}</td>`;
160
160
  table += `</tr>`;
161
161
  }
162
162
  table += '</table></div>';
package/bin/cli.js CHANGED
@@ -532,6 +532,7 @@ if (isUpgrade && (newCommands.length > 0 || updatedCommands.length > 0)) {
532
532
  console.log('\x1b[36m%s\x1b[0m', ` + /${name}${ver} (new)`);
533
533
  }
534
534
  for (const { file, oldVersion, newVersion } of updatedCommands) {
535
+ if (oldVersion > 0 && newVersion > 0 && oldVersion === newVersion) continue;
535
536
  const name = file.replace('.md', '');
536
537
  const ver = (oldVersion > 0 && newVersion > 0) ? ` (v${oldVersion} → v${newVersion})` : ' (updated)';
537
538
  console.log('\x1b[33m%s\x1b[0m', ` ↑ /${name}${ver}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.159",
3
+ "version": "1.0.161",
4
4
  "description": "Intelligent, self-configuring setup for Claude Code. One command analyzes your project, configures Claude, and shows you what it did.",
5
5
  "author": "ADAC 1001 <info@adac1001.com>",
6
6
  "license": "MIT",