repowise 0.1.19 → 0.1.20

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.
@@ -1390,7 +1390,19 @@ async function create() {
1390
1390
  continue;
1391
1391
  }
1392
1392
  if (syncResult.status === "completed") {
1393
- spinner.succeed("Context generation complete");
1393
+ const fileCount = syncResult.filesGenerated?.length ?? 0;
1394
+ if (fileCount > 0) {
1395
+ spinner.succeed(`Context generation complete (${fileCount} files)`);
1396
+ } else {
1397
+ spinner.warn(
1398
+ chalk5.yellow("Pipeline completed but no context files were generated.")
1399
+ );
1400
+ console.log(
1401
+ chalk5.yellow(
1402
+ " This may be due to AI throttling or a parsing issue. Try running `repowise create` again."
1403
+ )
1404
+ );
1405
+ }
1394
1406
  break;
1395
1407
  }
1396
1408
  if (syncResult.status === "failed") {
@@ -1425,6 +1437,13 @@ You may need to run \`git pull\` manually.`
1425
1437
  if (repoRoot) {
1426
1438
  contextFiles = await scanLocalContextFiles(repoRoot, contextFolder);
1427
1439
  }
1440
+ if (contextFiles.length === 0) {
1441
+ console.log(
1442
+ chalk5.yellow(
1443
+ ` No context files found in ${contextFolder}/. You may need to run \`git pull\` manually or re-run \`repowise create\`.`
1444
+ )
1445
+ );
1446
+ }
1428
1447
  if (tools.length > 0 && repoRoot) {
1429
1448
  spinner.start("Configuring AI tools...");
1430
1449
  const results = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repowise",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "type": "module",
5
5
  "description": "AI-optimized codebase context generator",
6
6
  "bin": {