company-skill 3.1.0 → 3.1.1

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.
@@ -21,15 +21,7 @@ if (fs.existsSync(cancelPath)) {
21
21
  process.exit(0);
22
22
  }
23
23
 
24
- // Circuit breaker: max 10 blocks then allow stop
25
- let count = 0;
26
- try { count = parseInt(fs.readFileSync(counterPath, 'utf8')) || 0; } catch (e) {}
27
- count++;
28
- try { fs.writeFileSync(counterPath, String(count)); } catch (e) {}
29
- if (count > 10) {
30
- try { fs.unlinkSync(counterPath); } catch (e) {}
31
- process.exit(0); // Allow stop, prevent infinite loop
32
- }
24
+ // No limit. Runs until done or user cancels (touch .company/CANCEL).
33
25
 
34
26
  // Check criteria
35
27
  if (fs.existsSync(criteriaPath)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "company-skill",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Goal-driven multi-employee company for Claude Code. Give it a goal, it runs until done.",
5
5
  "bin": {
6
6
  "company-skill": "./bin/install.js"