experiment-b2dda1 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited experiment-b2dda1 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Run a parallel experiment: $ARGUMENTS
Test multiple competing approaches to the same problem simultaneously. Each approach gets its own git worktree and sub-agent. Results are compared at the end so the best approach can be merged.
This is NOT for parallelizing parts of one plan (use /workflows-work for that). This is for when you genuinely don't know which approach is best and want to try all of them.
Parse the input (a gap analysis, a list of alternatives, a brainstorm, or a user description) and produce a track list:
TRACK DEFINITION
================
Base branch: <current branch or specified base>
Track A: <name>
Branch: exp/<slug-a>
Approach: <1-2 sentence description>
Files touched: <predicted file list>
Effort: low | medium | high
Track B: <name>
Branch: exp/<slug-b>
...
[up to 5 tracks]Conflict check: If two tracks modify the same files in incompatible ways, flag this to the user before proceeding. Parallel experiments must be independent.
Present the track list to the user and wait for confirmation before proceeding.
For each track, create a worktree branching from the base:
# From the repo root
git worktree add ../<repo-name>-exp-<slug> -b exp/<slug>Worktree naming convention: ../<repo-name>-exp-<slug> (sibling to the main repo directory).
Verify all worktrees were created:
git worktree listDispatch one sub-agent per track using the Agent tool. All independent tracks run in parallel.
Each sub-agent receives:
cd here)You are implementing Track [X]: [name]
WORKING DIRECTORY: [worktree path]
BRANCH: exp/[slug]
## What to implement
[approach description]
## Files to modify
[file list with current contents provided inline]
## Acceptance criteria
[specific, testable criteria]
## Rules
1. Work ONLY in [worktree path] — never touch the main repo
2. Write tests first, then implement
3. Run tests: [test command]
4. Commit when tests pass:
git add [files]
git commit -m "exp([slug]): [description]"
5. Return the structured summary below
## Return Format
[see Sub-Agent Summary Format]Each sub-agent MUST return:
## Experiment Track: [name]
### Result
- Branch: exp/[slug]
- Status: COMPLETE | PARTIAL | FAILED
- Tests: N passing, N failing
### What was built
[2-3 sentences describing the implementation]
### What works well
[Strengths of this approach]
### What doesn't work well
[Weaknesses, rough edges, things that felt wrong]
### Demo readiness
[How well does this serve the original use case?]
Score: 1-5 (1=unusable, 5=demo-ready)
### Files changed
[list with +/- line counts]After all sub-agents complete, produce a comparison:
EXPERIMENT RESULTS
==================
Question: [original problem being solved]
Base branch: [base]
Tracks tested: [N]
| Criterion | Track A | Track B | Track C |
|------------------|------------------|------------------|------------------|
| Tests passing | Y/N | Y/N | Y/N |
| Demo readiness | [score]/5 | [score]/5 | [score]/5 |
| Code changes | +N/-N lines | +N/-N lines | +N/-N lines |
| Complexity added | low/med/high | low/med/high | low/med/high |
| Strengths | [key strength] | [key strength] | [key strength] |
| Weaknesses | [key weakness] | [key weakness] | [key weakness] |
RECOMMENDATION: Track [X] because [reason]
NEXT STEPS:
- To adopt Track X: git merge exp/<slug> into <base branch>
- To clean up: git worktree remove ../<repo>-exp-<slug> (for each)
- To inspect: cd ../<repo>-exp-<slug> && git log --onelinePresent the comparison and recommendation. Do NOT merge or clean up worktrees — let the user decide.
When the user picks a winner:
# Merge the winner
git merge exp/<winning-slug>
# Remove all experiment worktrees
git worktree remove ../<repo>-exp-<slug-a>
git worktree remove ../<repo>-exp-<slug-b>
git worktree remove ../<repo>-exp-<slug-c>
# Delete experiment branches
git branch -d exp/<slug-a> exp/<slug-b> exp/<slug-c>../), never inside it.exp/ prefix for experiment branches. Never timestamps or UUIDs.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.