company-skill 4.2.0 → 4.3.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
@@ -145,13 +145,20 @@ Override per employee: `- ML Scientist, experiments [opus]`
145
145
 
146
146
  ## Installed Skills
147
147
 
148
- Auto-installed on first run. When installed, employees MUST use them.
149
-
150
- | Pack | What employees get |
151
- |------|-------------------|
152
- | gstack | /review, /ship, /qa, /investigate, /browse |
153
- | GSD | /gsd-plan-phase, /gsd-execute-phase, /gsd-verify-work, /gsd-debug |
154
- | trailofbits | Security audit, vulnerability detection |
148
+ Auto-installed on first run. Leads assign skills to workers by task type.
149
+
150
+ | Task type | Skill | Pack |
151
+ |-----------|-------|------|
152
+ | Code review | /review | gstack |
153
+ | Bug fix | /investigate | gstack |
154
+ | QA testing | /qa | gstack |
155
+ | Ship code | /ship | gstack |
156
+ | Browse/test site | /browse | gstack |
157
+ | Security audit | /secure-phase | trailofbits |
158
+ | Debug with state | /gsd-debug | GSD |
159
+ | Plan work | /gsd-plan-phase | GSD |
160
+
161
+ If no skill matches the task, workers use raw tools.
155
162
 
156
163
  <details>
157
164
  <summary>Install more skill packs</summary>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "company-skill",
3
- "version": "4.2.0",
3
+ "version": "4.3.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
@@ -88,6 +88,8 @@ If a lead realizes an idle employee is needed after all: add them to active rost
88
88
 
89
89
  Each worker gets: their task, their previous findings file, failed approaches from playbook.
90
90
 
91
+ If a skill was assigned (see Skill Routing table), invoke it via the Skill tool FIRST before doing anything else.
92
+
91
93
  Every finding MUST have:
92
94
  ```
93
95
  FINDING: what
@@ -142,9 +144,22 @@ CEO updates COMPANY.md: tag `[inactive]` on zero-contribution roles, `[priority]
142
144
  CEO, CTO, Internal Reviewer, User Advocate, Devil's Advocate, Elegance Enforcer.
143
145
  Deduplicated if user defines them in COMPANY.md.
144
146
 
145
- ## Skills
147
+ ## Skill Routing
148
+
149
+ Leads MUST assign a skill when the task matches. Workers MUST invoke it via the Skill tool.
150
+
151
+ | Task type | Skill | When |
152
+ |-----------|-------|------|
153
+ | Code review | /review | Any PR or diff needs review before merging |
154
+ | Bug fix | /investigate | Root cause unknown, need systematic debugging |
155
+ | QA testing | /qa | Test a web app, find and fix bugs |
156
+ | Ship code | /ship | Create PR, run tests, push |
157
+ | Security audit | /secure-phase | Check for vulnerabilities in code |
158
+ | Debug with state | /gsd-debug | Complex bug needing persistent debug session |
159
+ | Plan work | /gsd-plan-phase | Break complex task into steps |
160
+ | Browse/test site | /browse | Navigate URLs, check page state, screenshots |
146
161
 
147
- When installed: MUST use /review for code review, /investigate for bugs, /qa for testing, /ship for PRs. Skills are installed in the Preamble.
162
+ If no skill matches, workers use raw tools (Read, Write, Bash, etc.).
148
163
 
149
164
  ## Stop Hook
150
165