@slamb2k/mad-skills 2.0.49 → 2.0.50
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
CHANGED
package/skills/brace/SKILL.md
CHANGED
|
@@ -308,17 +308,23 @@ unknown). Platform detection and all CLI/REST commands are in
|
|
|
308
308
|
1. Detect platform from `git remote get-url origin`
|
|
309
309
|
2. **GitHub:** Check existing protection via `gh api`. If unprotected, ask via
|
|
310
310
|
AskUserQuestion:
|
|
311
|
-
- "Yes, require PR reviews (Recommended)" — require 1 approval, block force push
|
|
311
|
+
- "Yes, require PR reviews (team project — Recommended)" — require 1 approval, block force push + deletion
|
|
312
|
+
- "Yes, protect branch without review requirement (solo project)" — block force push + deletion, no reviewer gate so `/ship` squash-merges without `--admin`
|
|
312
313
|
- "Skip" — leave unprotected
|
|
313
314
|
3. **Azure DevOps:** Extract org/project from remote URL. Check existing
|
|
314
315
|
policies via `az repos` CLI or REST fallback. If no minimum reviewer
|
|
315
|
-
policy, ask via AskUserQuestion
|
|
316
|
+
policy, ask via AskUserQuestion:
|
|
317
|
+
- "Yes, require PR reviews (team project — Recommended)" — 1 approver, creator votes do not count
|
|
318
|
+
- "Yes, PR required, author can self-approve (solo project)" — same approver policy but `creator-vote-counts=true` so the author's own vote satisfies the gate
|
|
319
|
+
- "Skip" — no policy applied
|
|
316
320
|
4. **Unknown platform:** Skip and report.
|
|
317
321
|
|
|
318
|
-
|
|
319
|
-
`references/branch-protection-steps.md
|
|
322
|
+
Apply the variant matching the user's choice using the procedures in
|
|
323
|
+
`references/branch-protection-steps.md` (see "Apply protection — team
|
|
324
|
+
project" vs "Apply protection — solo project" for each platform).
|
|
320
325
|
|
|
321
|
-
Include result in the final report under a "🔒 Branch protection" section
|
|
326
|
+
Include result in the final report under a "🔒 Branch protection" section,
|
|
327
|
+
labelled with the chosen variant (team / solo / skipped).
|
|
322
328
|
|
|
323
329
|
---
|
|
324
330
|
|
|
@@ -30,7 +30,10 @@ gh api repos/{owner}/{repo}/branches/{default_branch}/protection
|
|
|
30
30
|
```
|
|
31
31
|
404 = unprotected.
|
|
32
32
|
|
|
33
|
-
### Apply protection
|
|
33
|
+
### Apply protection — team project (reviewer gate)
|
|
34
|
+
|
|
35
|
+
Requires 1 approving review before merge. Use when multiple humans work on
|
|
36
|
+
the repo.
|
|
34
37
|
|
|
35
38
|
```bash
|
|
36
39
|
gh api repos/{owner}/{repo}/branches/{default_branch}/protection \
|
|
@@ -42,6 +45,34 @@ gh api repos/{owner}/{repo}/branches/{default_branch}/protection \
|
|
|
42
45
|
-F allow_deletions=false
|
|
43
46
|
```
|
|
44
47
|
|
|
48
|
+
### Apply protection — solo project (no reviewer gate)
|
|
49
|
+
|
|
50
|
+
Keeps force-push and deletion prevention but drops the reviewer
|
|
51
|
+
requirement. Use when you are the only contributor — this is what makes
|
|
52
|
+
`/ship` squash-merge succeed without `gh pr merge --admin`.
|
|
53
|
+
|
|
54
|
+
The only difference from the team variant is the absence of
|
|
55
|
+
`-f required_pull_request_reviews=...`:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
gh api repos/{owner}/{repo}/branches/{default_branch}/protection \
|
|
59
|
+
-X PUT \
|
|
60
|
+
-f enforce_admins=false \
|
|
61
|
+
-f restrictions=null \
|
|
62
|
+
-f required_status_checks=null \
|
|
63
|
+
-F allow_force_pushes=false \
|
|
64
|
+
-F allow_deletions=false
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
**Migrating an existing team-project repo to solo:** if a reviewer policy
|
|
68
|
+
is already in place, remove just that sub-rule without tearing down the
|
|
69
|
+
rest of the protection:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
gh api --method DELETE \
|
|
73
|
+
repos/{owner}/{repo}/branches/{default_branch}/protection/required_pull_request_reviews
|
|
74
|
+
```
|
|
75
|
+
|
|
45
76
|
---
|
|
46
77
|
|
|
47
78
|
## Azure DevOps
|
|
@@ -94,7 +125,10 @@ curl -s -H "$AUTH" \
|
|
|
94
125
|
| jq "[.value[] | select(.settings.scope[]?.refName == \"refs/heads/$default_branch\" and .settings.scope[]?.repositoryId == \"$REPO_ID\")]"
|
|
95
126
|
```
|
|
96
127
|
|
|
97
|
-
### Create minimum reviewer policy
|
|
128
|
+
### Create minimum reviewer policy — team project (reviewer gate)
|
|
129
|
+
|
|
130
|
+
Use when multiple humans review each other's PRs. The PR author's own
|
|
131
|
+
vote does not count toward the minimum approver count.
|
|
98
132
|
|
|
99
133
|
**CLI:**
|
|
100
134
|
```bash
|
|
@@ -133,3 +167,24 @@ curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
|
|
|
133
167
|
}
|
|
134
168
|
}"
|
|
135
169
|
```
|
|
170
|
+
|
|
171
|
+
### Create minimum reviewer policy — solo project (author self-approve)
|
|
172
|
+
|
|
173
|
+
Use when you are the only contributor. A PR is still required before
|
|
174
|
+
merge, but `--creator-vote-counts true` means the author's own vote
|
|
175
|
+
satisfies the 1-approver gate — no second human needed.
|
|
176
|
+
|
|
177
|
+
**CLI:**
|
|
178
|
+
```bash
|
|
179
|
+
az repos policy approver-count create \
|
|
180
|
+
--org "$AZDO_ORG_URL" --project "$AZDO_PROJECT" \
|
|
181
|
+
--repository-id "$REPO_ID" --branch "$default_branch" \
|
|
182
|
+
--minimum-approver-count 1 \
|
|
183
|
+
--creator-vote-counts true \
|
|
184
|
+
--allow-downvotes false \
|
|
185
|
+
--reset-on-source-push true \
|
|
186
|
+
--blocking true --enabled true
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
**REST fallback:** same body as the team variant, but with
|
|
190
|
+
`"creatorVoteCounts": true`.
|
package/skills/manifest.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-04-20T02:
|
|
2
|
+
"generated": "2026-04-20T02:56:39.184Z",
|
|
3
3
|
"count": 11,
|
|
4
4
|
"skills": [
|
|
5
5
|
{
|
|
6
6
|
"name": "brace",
|
|
7
7
|
"directory": "brace",
|
|
8
8
|
"description": "'Initialize any project directory with a standard scaffold for AI-assisted development. Creates specs/ and context/ directories, a project CLAUDE.md with development workflow and guardrails, .gitignore, and branch protection. Recommends claude-mem for persistent memory. Idempotent — safe to run on existing projects. Triggers: \"init project\", \"setup brace\", \"brace\", \"initialize\", \"bootstrap\", \"scaffold\".'",
|
|
9
|
-
"lines":
|
|
9
|
+
"lines": 430,
|
|
10
10
|
"hasScripts": false,
|
|
11
11
|
"hasReferences": true,
|
|
12
12
|
"hasAssets": true,
|