create-claude-rails 0.3.1 → 0.3.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/lib/cli.js CHANGED
@@ -399,6 +399,7 @@ async function run() {
399
399
  dryRun: flags.dryRun,
400
400
  skipConflicts: flags.yes,
401
401
  skipPhases: isSkill,
402
+ projectRoot: projectDir,
402
403
  });
403
404
  totalCopied += results.copied.length;
404
405
  totalSkipped += results.skipped.length;
package/lib/copy.js CHANGED
@@ -11,19 +11,21 @@ function hashContent(content) {
11
11
  * Recursively copy files from src to dest, surfacing conflicts.
12
12
  * Returns { copied: string[], skipped: string[], overwritten: string[] }
13
13
  */
14
- async function copyTemplates(src, dest, { dryRun = false, skipConflicts = false, skipPhases = false } = {}) {
14
+ async function copyTemplates(src, dest, { dryRun = false, skipConflicts = false, skipPhases = false, projectRoot = null } = {}) {
15
15
  const results = { copied: [], skipped: [], overwritten: [], manifest: {} };
16
- await walkAndCopy(src, dest, src, results, dryRun, skipConflicts, skipPhases);
16
+ await walkAndCopy(src, dest, src, results, dryRun, skipConflicts, skipPhases, projectRoot);
17
17
  return results;
18
18
  }
19
19
 
20
- async function walkAndCopy(srcRoot, destRoot, currentSrc, results, dryRun, skipConflicts, skipPhases) {
20
+ async function walkAndCopy(srcRoot, destRoot, currentSrc, results, dryRun, skipConflicts, skipPhases, projectRoot) {
21
21
  const entries = fs.readdirSync(currentSrc, { withFileTypes: true });
22
22
 
23
23
  for (const entry of entries) {
24
24
  const srcPath = path.join(currentSrc, entry.name);
25
25
  const relPath = path.relative(srcRoot, srcPath);
26
26
  const destPath = path.join(destRoot, relPath);
27
+ // Display path relative to project root for clearer conflict prompts
28
+ const displayPath = projectRoot ? path.relative(projectRoot, destPath) : relPath;
27
29
 
28
30
  if (entry.isDirectory()) {
29
31
  // Skip phases/ directories — absent phase files use skeleton defaults,
@@ -35,7 +37,7 @@ async function walkAndCopy(srcRoot, destRoot, currentSrc, results, dryRun, skipC
35
37
  if (!dryRun && !fs.existsSync(destPath)) {
36
38
  fs.mkdirSync(destPath, { recursive: true });
37
39
  }
38
- await walkAndCopy(srcRoot, destRoot, srcPath, results, dryRun, skipConflicts, skipPhases);
40
+ await walkAndCopy(srcRoot, destRoot, srcPath, results, dryRun, skipConflicts, skipPhases, projectRoot);
39
41
  } else {
40
42
  const incoming = fs.readFileSync(srcPath, 'utf8');
41
43
  const incomingHash = hashContent(incoming);
@@ -58,7 +60,7 @@ async function walkAndCopy(srcRoot, destRoot, currentSrc, results, dryRun, skipC
58
60
  const response = await prompts({
59
61
  type: 'select',
60
62
  name: 'action',
61
- message: `File exists: ${relPath}`,
63
+ message: `File exists: ${displayPath}`,
62
64
  choices: [
63
65
  { title: 'Keep existing', value: 'keep' },
64
66
  { title: 'Overwrite with template', value: 'overwrite' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-rails",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Claude on Rails — opinionated process scaffolding for Claude Code projects",
5
5
  "bin": {
6
6
  "create-claude-rails": "bin/create-claude-rails.js"