ccraft 1.0.7 → 1.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccraft",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Intelligent Claude Code project configurator — role-aware agents, skills, rules, MCPs, and workflows",
5
5
  "type": "module",
6
6
  "bin": {
@@ -245,7 +245,7 @@ export async function runCreate(options = {}) {
245
245
  detectedFiles: [],
246
246
  databases: syntheticDetected.databases,
247
247
  },
248
- {},
248
+ { projectPath: targetDir },
249
249
  );
250
250
  spinner3.succeed('Server returned configuration.');
251
251
  } catch (err) {
@@ -241,7 +241,7 @@ export async function runInstall(options = {}) {
241
241
  detectedFiles: detected._rootFiles || [],
242
242
  databases: projectInfo.databases || detected.databases || [],
243
243
  },
244
- { preset: options.preset },
244
+ { preset: options.preset, projectPath: targetDir },
245
245
  );
246
246
  spinner3.succeed('Server returned configuration.');
247
247
  } catch (err) {