instinct-clustering — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited instinct-clustering (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.
When the instinct store has accumulated enough patterns that manual promotion to skills becomes impractical. Use to automatically identify groups of related instincts, deduplicate redundant entries, and batch-promote coherent clusters into full skills. Converts organic behavioral patterns into structured, reusable skill definitions.
Core principle: Emergent structure — let clusters form from the data rather than imposing categories top-down. Instincts that repeatedly co-occur reveal natural skill boundaries.
instinct-store.jsonl (or configured instinct storage path)status == "active")confidence < 0.3 (too uncertain to cluster)N active instincts loaded {
"id": "inst-uuid",
"observation": "what was observed (natural language)",
"behavior": "what action to take (imperative)",
"tags": ["tag1", "tag2", "tag3"],
"confidence": 0.0-1.0,
"frequency": 0,
"project_scope": "global" | "project-name",
"status": "active" | "promoted" | "deprecated",
"created_at": "ISO-8601",
"last_triggered": "ISO-8601"
}Step 1 — Deduplication pass:
"Merged inst-X into inst-Y (overlap: Z%)""D duplicates removed, M instincts remainingStep 2 — Tag overlap calculation:
jaccard(A, B) = |A.tags intersection B.tags| / |A.tags union B.tags|Step 3 — Cluster formation:
project_scope (both global, or both same project)then {A, B, C} form a cluster (even if A and C are not directly similar)
Step 4 — Filter clusters:
Step 5 — Skill generation per cluster:
behavior fields in logical order:Generated skill structure:
---
name: [derived-name]
version: 1.0.0
min_mindforge_version: 10.0.5
status: stable
triggers: [combined trigger keywords]
---
# Skill — [Name]
## When this skill activates
[Synthesized from cluster observations]
## Mandatory actions when this skill is active
### Before [derived from behaviors]
### During [derived from behaviors]
### After [derived from behaviors]
## Self-check before task completion
[Derived from cluster edge cases]Step 6 — Conflict detection:
## Cluster Report
### Cluster 1: [proposed-name]
- Instincts: [count]
- Avg confidence: [score]
- Members: [list of instinct IDs with one-line observations]
- Proposed skill name: [name]
- Proposed triggers: [list]
### Cluster 2: ...
## Unclustered Instincts
[Instincts that didn't fit any cluster — may need more data].mindforge/skills/[name]/status: "promoted"promoted_to: "[skill-name]" field to each promoted instinct ## Instinct Clustering Report — [date]
**Input:** N active instincts
**After dedup:** M instincts (D removed)
**Clusters formed:** C clusters
**Clusters passing filters:** F clusters
**Instincts promoted:** P
**Instincts unclustered:** U
### Cluster Details
[table: name, size, avg_confidence, proposed_skill, status]
### Deduplication Log
[list of merged instinct pairs with overlap scores]
### Recommendations
- [instincts close to clustering threshold — collect more data]
- [potential trigger conflicts to monitor]Before marking an instinct clustering task done:
status: "promoted"?~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.