company-skill 3.1.3 → 3.2.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/skill/SKILL.md +16 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "company-skill",
3
- "version": "3.1.3",
3
+ "version": "3.2.0",
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"
package/skill/SKILL.md CHANGED
@@ -23,11 +23,13 @@ Give it a goal. Run every employee. Loop until verified done.
23
23
 
24
24
  ## Preamble
25
25
 
26
- ```bash
27
- echo "════════════════════════════════════════════════" && echo " 🏢 COMPANY SKILL ACTIVE" && echo "════════════════════════════════════════════════"
28
- [ -f COMPANY.md ] && echo "$(grep -c '^[0-9]\|^- ' COMPANY.md 2>/dev/null) roles" || echo "No COMPANY.md"
29
- [ -f .company/playbook.md ] && echo "Playbook loaded" || echo "First run"
30
- ```
26
+ Print this as plain text (NOT Bash):
27
+
28
+ ════════════════════════════════════════════════
29
+ 🏢 COMPANY SKILL ACTIVE
30
+ ════════════════════════════════════════════════
31
+
32
+ Then check if COMPANY.md exists and report how many roles found. Check if playbook.md exists.
31
33
 
32
34
  ## Parse
33
35
 
@@ -45,9 +47,11 @@ Read `.company/playbook.md` if it exists (accumulated knowledge from past sessio
45
47
 
46
48
  ## Loop
47
49
 
48
- ```bash
49
- echo "════════════════════════════════════════════════" && echo "🏢 CYCLE {N} - THINK > EXECUTE > VERIFY" && echo "════════════════════════════════════════════════"
50
- ```
50
+ Print as plain text (NOT Bash):
51
+
52
+ ════════════════════════════════════════════════
53
+ 🏢 CYCLE {N} - THINK > EXECUTE > VERIFY
54
+ ════════════════════════════════════════════════
51
55
 
52
56
  ### THINK (Opus, all leads parallel)
53
57
 
@@ -85,9 +89,10 @@ Internal Reviewer reads criteria.json + all findings. For each criterion:
85
89
 
86
90
  Devil's Advocate attacks anything marked as passing.
87
91
 
88
- ```bash
89
- echo "📋 CYCLE {N} VERDICT: {DONE or NOT DONE}" && echo "{reason}"
90
- ```
92
+ Print as plain text (NOT Bash):
93
+
94
+ 📋 CYCLE {N} VERDICT: {DONE or NOT DONE}
95
+ {reason}
91
96
 
92
97
  ALL criteria pass + Advocate accepts = EXIT.
93
98
  Otherwise = loop with feedback.