company-skill 4.3.0 → 4.4.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.
package/README.md CHANGED
@@ -75,15 +75,21 @@ Every employee gets their task, previous findings, and failed approaches from th
75
75
  <details>
76
76
  <summary><strong>VERIFY</strong> — Triple quality gate blocks premature completion</summary>
77
77
 
78
- **Internal Reviewer** checks each criterion in criteria.json against evidence. No evidence? Stays `false`.
78
+ **Internal Reviewer** checks each criterion in criteria.json against evidence. No evidence? Stays `false`. Also scans all public-facing output for unverified claims about external projects — any number, percentage, or technical detail cited from memory gets blocked until verified from source.
79
79
 
80
- **Devil's Advocate** attacks anything marked as passing. "Is this actually complete or surface-level? What edge cases were missed?"
80
+ **Devil's Advocate** attacks anything marked as passing. "Is this actually complete or surface-level? What edge cases were missed?" For any claim about external projects: "did you actually verify this from their repo/docs, or are you guessing?"
81
81
 
82
82
  **Elegance Enforcer** asks "Can this be simpler? Does every component justify its existence?"
83
83
 
84
84
  All three must accept before the loop exits.
85
85
  </details>
86
86
 
87
+ ## External Fact Verification
88
+
89
+ Workers producing public-facing output (GitHub comments, PRs, blog posts) must verify every claim about external projects from their actual docs/source before publishing. No citing from memory. The reviewer blocks unverified external claims automatically.
90
+
91
+ **One strike rule:** if corrected by someone, respond "my bad, you're right" and stop. Never attempt a second correction with more guessed details.
92
+
87
93
  ## Goal Enforcement
88
94
 
89
95
  The skill creates `criteria.json` with machine-checkable success criteria:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "company-skill",
3
- "version": "4.3.0",
3
+ "version": "4.4.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
@@ -90,6 +90,8 @@ Each worker gets: their task, their previous findings file, failed approaches fr
90
90
 
91
91
  If a skill was assigned (see Skill Routing table), invoke it via the Skill tool FIRST before doing anything else.
92
92
 
93
+ **EXTERNAL FACT RULE (highest priority):** Before writing ANY public-facing output (GitHub comments, PR descriptions, emails, blog posts) that states a specific fact about an external project (version numbers, API details, feature claims, architecture, block formats), the worker MUST verify it first using WebFetch or `gh api` to read the project's actual docs/source/README. If it cannot verify, it must say "not sure" instead of guessing. NEVER cite external numbers from memory. ONE STRIKE: if corrected, respond "my bad, you're right" and stop — never attempt a second correction with more guessed details.
94
+
93
95
  Every finding MUST have:
94
96
  ```
95
97
  FINDING: what
@@ -104,8 +106,9 @@ Novel ideas (new techniques, hypotheses, untested approaches) use "NOVEL - needs
104
106
  Internal Reviewer reads criteria.json + all findings. For each criterion:
105
107
  - Evidence exists with source? Set passes: true in criteria.json
106
108
  - No evidence or source missing? Keep passes: false
109
+ - **External fact check:** Scan every outgoing comment/email/blog for claims about external projects (numbers, percentages, technical details, feature comparisons). If any claim wasn't verified from the actual source (repo, docs, README), BLOCK the output and send the worker back to verify. Memory-based claims about external projects = automatic rejection.
107
110
 
108
- Devil's Advocate attacks anything marked as passing.
111
+ Devil's Advocate attacks anything marked as passing. **Specifically for external claims:** ask "did you actually verify this from their repo/docs, or are you guessing?" for every statement about a competitor or external project.
109
112
 
110
113
  Print as plain text (NOT Bash):
111
114