semantic-center — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited semantic-center (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.
Semantic-center analysis is a figure-ground reduction method. Treat the unit of analysis as a graph of parts, then name the one part that carries the most structural load and place every other part in relation to it. The center is not automatically the most visible, newest, largest, or first-in-sequence part; it is the part whose removal, governing role, purpose explanation, semantic weight, or decision leverage best explains the whole.
This skill prevents flat explanations. It turns "here are all the parts" into "this is the primary part, these are the supporting parts, and this is how each support, constrains, feeds, or depends on the primary." That makes dense systems, pages, workflows, and concepts easier to understand without turning the answer into a prioritized task list or a formal domain model.
This skill owns explanatory reduction for one system, feature, workflow, concept, decision, problem, or page. It does not own user-goal decomposition and friction scoring, full conceptual modeling, precise edge semantics for a single relation, cross-instance pattern detection, implementation, code review, model routing, or project prioritization. Use the specialist skill once the work changes from explanation to those activities. Semantic-center analysis is like finding the load-bearing column in a room: furniture, paint, wiring, and fixtures all matter, but the explanation becomes useful only after the column that everything else depends on is named. The common mistake is believing the semantic center is whatever is most visible or most recently discussed. Visibility is a UI fact, recency is a conversation fact, sequence is a timeline fact, and none of them alone proves structural importance.
A structured explanatory workflow for identifying the semantic center of any system, feature, concept, page, workflow, decision, or problem and mapping how surrounding parts relate to it. Covers (1) unit-of-analysis classification (system / feature / module / page / workflow / concept / data model / decision / problem); (2) primary-part identification via the five tests (removal, governance, purpose, weight, decision) ranked by priority; (3) typed secondary-part relation mapping using a fixed taxonomy of relation types (dependency, input/output, parent/child, source/consumer, cause/effect, owner/owned, trigger/result, semantic grouping, constraint/enabler, sequence/timeline, contrast/tradeoff); (4) structured-output production following a fixed skeleton; and (5) final one-sentence reduction in a fixed grammatical form. Includes a "codebase analysis mode" overlay for analyzing a real implementation surface (grep, read primary file, follow data path, read tests) and an anti-pattern catalog (everything-is-important flattening, visibility-as-importance, proximity-as-relation, chronology-instead-of-structure, symmetric-relation blur).
Most explanations fail because they present everything at the same weight. A user asks "how does this work?" and receives a chronological walkthrough or a laundry list, neither of which tells them what the system depends on. Until one part is named as load-bearing, the explanation is not structurally useful — the reader still has to do the reduction work themselves.
The core rule is: prefer one primary part and typed supporting relations over multiple co-equal "important" parts. When more than one thing seems important, the removal test or the governance test usually breaks the tie. If it doesn't, state the tension explicitly rather than hiding it behind a list. The five-step workflow exists to force that reduction every time, not as an aesthetic preference but as a structural one.
This skill is for explanation, not for execution. It tells you which part of a system carries the most semantic load. It does not tell you which task to start next (a prioritization concern), how to design the bounded contexts and aggregates of the system (a domain-modeling concern), or how to implement any of it (a domain skill concern).
This skill combines three public ideas into an agent workflow:
The workflow is heuristic, not mathematical. Use semantic-relations when one edge needs precise relation semantics, and use a graph-analysis tool when the question requires computed centrality rather than explanatory judgment.
The skill is the five-step workflow below. Each step produces explicit output. Steps run in order; a missing step downstream usually means the analysis short-circuited at the previous step.
Step 1: Classify the unit of analysis
Step 2: Find the single most important part
Step 3: Map secondary parts in relation to the primary part
Step 4: Produce the structured output
Step 5: Reduce to one sentenceBefore analyzing, explicitly state what kind of thing this is. The category shapes which relation types and tests are most likely to matter.
| Category | Examples |
|---|---|
| System | Auth pipeline, reconciliation engine, webhook chain |
| Feature | Order detail page, onboarding flow, CSV export |
| Module | Calculation engine, access-control layer, skill injector |
| Page / Screen | Dashboard, orders list, settings page |
| Workflow | Deploy pipeline, PR review cycle, task protocol |
| Concept | Data provenance, margin calculation, multi-tenancy |
| Data model | Order → line items → costs |
| Decision | Build vs buy, monolith vs microservice |
| Problem | Race condition, data inconsistency, bottleneck |
Rule: say explicitly, "This is a [category]." If you cannot pick a category, the unit of analysis is too vague — narrow it before continuing.
Use these tests, in priority order. The first test that produces a clear winner is the test you cite.
| Test | Question | What it reveals |
|---|---|---|
| Removal test | If removed, what breaks first? | Load-bearing dependency |
| Governance test | What constrains or governs the rest? | Authority source |
| Purpose test | What best explains the point of the whole? | Semantic anchor |
| Weight test | What carries the most semantic load? | Core concept |
| Decision test | What anchors downstream choices? | Decision root |
Rules:
True ties are allowed, but they must be explicit. Use this sequence:
contrast/tradeoff or constraint/enabler, not as a hidden second primary.List secondary parts only in relation to the primary part. Every secondary part must have an explicit relation type from the taxonomy below.
| Relation Type | Meaning |
|---|---|
| dependency | Secondary depends on the primary |
| input/output | Primary consumes or produces the secondary |
| parent/child | Structural containment |
| source/consumer | Data or event flow direction |
| cause/effect | Causal chain |
| owner/owned | Authority relationship |
| trigger/result | Event-driven relationship |
| semantic grouping | Family of concepts around the center |
| constraint/enabler | What limits or unlocks the primary |
| sequence/timeline | Temporal ordering only when no stronger structural relation exists |
| contrast/tradeoff | Competing alternative or tension |
Rules:
semantic-relations before completing the map.When more than one relation label seems plausible, prefer the strongest truthful relation in this order:
Use this output skeleton verbatim. Each H2: label below becomes a real ## heading in the produced analysis document.
H2: Unit of Analysis
[Category]: [Name]
H2: Primary Part
[Name of the single most important part]
H2: Why This Is the Primary Part
[Which test(s) it passes and why]
H2: Secondary Parts
- [Part A] — [role]
- [Part B] — [role]
H2: Relation Map
- Primary → Part A: [relation type] — [explanation]
- Part B → Primary: [relation type] — [explanation]
H2: Simplest Explanation
[2-3 sentences]
H2: Important Distinction
[What people most often confuse]
H2: Common Misunderstanding
[What goes wrong and why]
H2: Naming Recommendation
[If naming is misleading, suggest better names]End with exactly one sentence in this form:
The core is [X], and everything else matters because it [supports / depends on / constrains / expresses / feeds / consumes] X.
If you cannot write this sentence in one line, the analysis is not yet finished — return to Step 2.
When the unit of analysis is a real repo surface rather than a pure concept, add these steps before Step 2:
Then add to the structured output:
## Key Files — list the files that participate in the analyzed unit## Verified Against — list the artifacts that confirmed the analysis (grep results, test names, log lines)Do not claim a file, route, function, or dependency exists unless it was found through search or read during the analysis. If the codebase surface is unavailable, say the analysis is conceptual-only and omit code-specific claims.
| Anti-Pattern | Problem | Fix |
|---|---|---|
| "Everything is important" | No real reduction happened | Apply the removal test rigorously |
| Visibility = importance | The loudest element gets mistaken for the most load-bearing | Ask what breaks if it disappears |
| Relation = proximity | Nearby parts get treated as semantically connected | Name the actual relation type or drop the part |
| Chronology instead of structure | Timeline replaces architecture | Map dependencies and constraints first; use timeline only as last resort |
| Symmetric relation blur | "A and B both explain each other" | Choose the dominant direction |
| Drift into prioritization | Analysis turns into a what-to-do-next list | Stop at Step 5; prioritization is a different skill |
After delivering a semantic-center analysis, verify:
## Key Files and ## Verified Against are present and grounded in actual reads| Instead, use | Why |
|---|---|
task-analysis | The unit of analysis is a route or flow and the question is "what is the user's top task?" Task-analysis owns goal-driven UX decomposition; semantic-center owns structural-importance reduction. |
conceptual-modeling | You need a full concept model (all entities, attributes, relationships, invariants), not a single load-bearing reduction. Conceptual-modeling owns the full model; semantic-center owns the reduction. |
pattern-recognition | The unit of analysis is many instances and the question is "what recurring pattern is this?" Pattern-recognition owns cross-instance pattern classes; semantic-center owns within-instance one-primary reduction. |
intent-recognition | The task is parsing an ambiguous user prompt to recover the intent, not analyzing a system. Intent-recognition is upstream of any system analysis. |
documentation | You are writing or restructuring a doc artifact, not analyzing a system. Documentation owns the artifact; semantic-center may produce content that goes into the artifact. |
| (a prioritization skill) | The question is "what should we work on next?" Prioritization is operational ranking; semantic-center is conceptual load-bearing. |
| (a domain-modeling skill) | The task is formal architecture: bounded contexts, aggregates, ownership boundaries. Domain-modeling owns formal model design; semantic-center is a quick structural explanation. |
| (the relevant domain skill) | The task is implementation, debugging, or shipping code. Semantic-center explains structure; it does not build. |
<!-- skill-graph-context:start (generated — do not edit by hand) -->
Classification
knowledge-organizationtruefoundations/semanticsWhen to use
Not for
Related skills
code-review, semantic-relationsintent-recognition, diagnosis, knowledge-modeling, semantic-relations, semantics, task-analysis, conceptual-modeling, pattern-recognitionConcept
Grounding
universalhttps://networkx.org/documentation/stable/reference/algorithms/centrality.html, https://www.w3.org/TR/skos-reference/, https://www.barbaraminto.com/Keywords
semantic center, one-primary-part reduction, removal test, governance test, load-bearing part, typed relation map, center-finding method, structural importance, figure-ground reduction, relation typing rules<!-- skill-graph-context:end -->
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.