instinct-bridge — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited instinct-bridge (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.
<objective> Read a GSD LEARNINGS.md or SUMMARY.md artifact, extract all Patterns and Lessons sections, and feed them through the instinct deduplication + creation pipeline. Each non-duplicate, non-trivial bullet becomes a candidate instinct file in the appropriate scope directory. </objective>
Extract the summary file path and optional project slug from the invocation arguments:
<summary-file-path> — required; path to GSD LEARNINGS.md or SUMMARY.md
--project <slug> — optional; overrides auto-derived project slugIf no file path is provided, exit with:
Error: provide a path to a GSD LEARNINGS.md or SUMMARY.md file.
Usage: /instinct-bridge <summary-file-path> [--project <slug>]Read the file and confirm it exists and contains at least one of these headings:
## Patterns## Lessons Learned## Lessons## What Worked## What Didn't Work## SurprisesIf none of these sections exist, report:
No extractable sections found in <filepath>.
Expected: ## Patterns, ## Lessons Learned, ## What Worked, ## What Didn't Work, or ## Surprisespython3 -c "
import sys
sys.path.insert(0, '$HOME/.claude/instincts/lib')
from gsd_bridge import bridge_milestone_learnings
import json
result = bridge_milestone_learnings(
'$SUMMARY_FILE',
'$HOME/.claude/instincts/global/',
$PROJECT_DIR_ARG
)
print(json.dumps(result, indent=2))
"Where:
$SUMMARY_FILE is the provided file path (shell-escaped)$PROJECT_DIR_ARG is either None or '$HOME/.claude/instincts/projects/<slug>/' if --project was givenFormat the results as:
## GSD Bridge Report
**Source**: <filepath>
**Project**: <slug or "global">
### New Instincts Created (N)
- INS-XXX | "<name>" | confidence: 0.45 | from: "<pattern text snippet>"
### Merged with Existing (N)
- INS-XXX | "<existing_name>" | similarity: 0.XX | pattern: "<snippet>"
### Skipped (N)
- "<pattern text>" — reason: <too vague | duplicate | too short>
---
Next: run /instinct-learn-eval to score and potentially promote these candidates.If N=0 for any section, omit that section from the report (don't print an empty "### New Instincts Created (0)").
ls ~/.claude/instincts/lib/~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.