Agent skill

segal-types

Segal types for synthetic ∞-categories. Binary composites exist uniquely

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill segal-types --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/ai-ml/segal-types/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Segal Types Skill > *"A Segal type is a type where binary composites exist uniquely up to homotopy."* > — Emily Riehl & Michael Shulman ## Overview Segal types are the synthetic ∞-categorical analogue of categories. They automatically ensure composition is **coherently associative and unital at all dimensions**. ## Core Definitions (Rzk) ```rzk #lang rzk-1 -- The directed interval (axiomatized) #define 2 : CUBE -- Hom type (directed paths) #define hom (A : U) (x y : A) : U := (t : 2) → A [t ≡ 0₂ ↦ x, t ≡ 1₂ ↦ y] -- 2-simplex (composite witness) #define Δ² : CUBE := (t₁ : 2) × (t₂ : 2) × (t₁ ≤ t₂) -- Composition witness type #define hom2 (A : U) (x y z : A) (f : hom A x y) (g : hom A y z) (h : hom A x z) : U := (σ : Δ²) → A [ σ = (0₂, t) ↦ f t, σ = (t, 1₂) ↦ g t, σ = (t, t) ↦ h t ] -- Segal condition: unique composites #define is-segal (A : U) : U := (x y z : A) → (f : hom A x y) → (g : hom A y z) → is-contr (Σ (h : hom A x z), hom2 A x y z f g h) -- Segal type #define Segal : U := Σ (A : U), is-segal A ``` ## Chemputer Semantics | ∞-Category Concept | Chemical Interpretation | |--------------------|------------------------| | Objects | Chemical species | | 1-morphisms (hom) | Rea

What's inside
Steps it walks through
  1. Overview
  2. Core Definitions (Rzk)
  3. Chemputer Semantics
  4. GF(3) Triad
  5. Lean4 Integration (InfinityCosmos)
  6. Self-Avoiding Walk Integration
  7. Key Theorems
  8. End-of-Skill Interface
  9. r2con Speaker Resources
  10. References
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the segal-types skill do?

Segal types for synthetic ∞-categories. Binary composites exist uniquely

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill segal-types --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going