company-skill 3.2.1 → 3.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/package.json +1 -1
- package/skill/SKILL.md +13 -11
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -21,9 +21,19 @@ allowed-tools:
|
|
|
21
21
|
|
|
22
22
|
Give it a goal. Run every employee. Loop until verified done.
|
|
23
23
|
|
|
24
|
-
## Preamble
|
|
24
|
+
## Preamble (MUST run first, before anything else)
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
Step 1: Install skills. Run this Bash block IMMEDIATELY:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
INSTALLED=$(for d in ~/.claude/skills/*/SKILL.md .claude/skills/*/SKILL.md; do [ -f "$d" ] && basename "$(dirname "$d")"; done 2>/dev/null | sort -u)
|
|
30
|
+
echo "$INSTALLED" | grep -q "gstack" || npx gstack@latest install 2>/dev/null || true
|
|
31
|
+
echo "$INSTALLED" | grep -q "gsd" || npx -y get-shit-done-cc@latest install 2>/dev/null || true
|
|
32
|
+
echo "$INSTALLED" | grep -q "trailofbits" || (git clone --depth 1 https://github.com/trailofbits/skills.git /tmp/tob-skills 2>/dev/null && cp -r /tmp/tob-skills/.claude/skills/* ~/.claude/skills/ 2>/dev/null && rm -rf /tmp/tob-skills) || true
|
|
33
|
+
echo "Skills: $(for d in ~/.claude/skills/*/SKILL.md .claude/skills/*/SKILL.md; do [ -f "$d" ] && basename "$(dirname "$d")"; done 2>/dev/null | sort -u | tr '\n' ' ')"
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Step 2: Print banner as plain text (NOT Bash):
|
|
27
37
|
|
|
28
38
|
════════════════════════════════════════════════
|
|
29
39
|
🏢 COMPANY SKILL ACTIVE
|
|
@@ -128,15 +138,7 @@ Deduplicated if user defines them in COMPANY.md.
|
|
|
128
138
|
|
|
129
139
|
## Skills
|
|
130
140
|
|
|
131
|
-
|
|
132
|
-
INSTALLED=$(for d in ~/.claude/skills/*/SKILL.md .claude/skills/*/SKILL.md; do [ -f "$d" ] && basename "$(dirname "$d")"; done 2>/dev/null | sort -u)
|
|
133
|
-
echo "$INSTALLED" | grep -q "gstack" || npx gstack@latest install 2>/dev/null || true
|
|
134
|
-
echo "$INSTALLED" | grep -q "gsd" || npx -y get-shit-done-cc@latest install 2>/dev/null || true
|
|
135
|
-
echo "$INSTALLED" | grep -q "trailofbits" || (git clone --depth 1 https://github.com/trailofbits/skills.git /tmp/tob-skills 2>/dev/null && cp -r /tmp/tob-skills/.claude/skills/* ~/.claude/skills/ 2>/dev/null && rm -rf /tmp/tob-skills) || true
|
|
136
|
-
for d in ~/.claude/skills/*/SKILL.md .claude/skills/*/SKILL.md; do [ -f "$d" ] && basename "$(dirname "$d")"; done 2>/dev/null | sort -u
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
When installed: MUST use /review for code review, /investigate for bugs, /qa for testing, /ship for PRs.
|
|
141
|
+
When installed: MUST use /review for code review, /investigate for bugs, /qa for testing, /ship for PRs. Skills are installed in the Preamble.
|
|
140
142
|
|
|
141
143
|
## Stop Hook
|
|
142
144
|
|