aided-dev 1.0.5 → 1.0.6

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.
@@ -255,7 +255,7 @@ export class Orchestrator {
255
255
  return files;
256
256
  }
257
257
  async scanDirectory(dirPath, files, relativePath, maxDepth) {
258
- if (maxDepth <= 0 || files.size > 50)
258
+ if (maxDepth <= 0 || files.size > 20)
259
259
  return;
260
260
  const sourceExtensions = ['.ts', '.js', '.py', '.go', '.rs', '.java', '.rb', '.php'];
261
261
  try {
@@ -274,11 +274,11 @@ export class Orchestrator {
274
274
  if (sourceExtensions.includes(ext)) {
275
275
  try {
276
276
  const content = fs.readFileSync(fullPath, 'utf-8');
277
- if (content.length < 8000) {
277
+ if (content.length < 4000) {
278
278
  files.set(relPath, content);
279
279
  }
280
280
  else {
281
- files.set(relPath, content.substring(0, 8000) + '\n\n... (truncated)');
281
+ files.set(relPath, content.substring(0, 4000) + '\n\n... (truncated)');
282
282
  }
283
283
  }
284
284
  catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aided-dev",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "AI Development Team Orchestrator - BMAD-METHOD integration for automated code generation",
5
5
  "keywords": [
6
6
  "ai",