Agent skill

möbius-path-filtering

Non-orientable topological filtering that eliminates self-revisiting paths

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill m-bius-path-filtering --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/ai-ml/m-bius-path-filtering/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

# Möbius Path Filtering ## Core Concept A Möbius filter is a **non-orientable topological constraint** that eliminates paths where traversal would require "doubling back" or revisiting a configuration from a different orientation. In navigator terms: some paths appear valid locally but are invalid globally because they would require the navigator to traverse the same logical position in two different ways simultaneously—geometrically impossible on a Möbius surface. This constraint is checked **before** path compilation, preventing invalid Navigators from ever being cached. ## Why Möbius Filtering? ### The Problem Consider a nested structure: ```julia data = Dict( "a" => [1, 2, 3], "b" => Dict( "c" => [4, 5, 6], "a" => [7, 8, 9] # Same key name, different context! ) ) ``` A naive path like `[ALL_KEYS, ALL_VALUES, ALL]` might: 1. Navigate to key "a" → [1, 2, 3] 2. Navigate to key "b" → {...} 3. Navigate to nested "a" → [7, 8, 9] But what if we then try to **transform all "a" keys**? The path becomes ambiguous: - Is "a" referring to the top-level key or the nested key? - Can we transform both simultaneously? - What if the nested "a" contains a reference back to the top-level "a"? On a

What's inside
Steps it walks through
  1. Core Concept
  2. Why Möbius Filtering?
  3. The Problem
  4. The Solution
  5. Architecture
  6. Möbius Invariant
  7. Filtering Algorithm
  8. Orientation Mapping
  9. API
  10. Validation Functions
  11. Integration with Specter Navigator
  12. Performance
  13. Non-Backtracking Property
  14. Eliminates Invalid Paths Before Compilation
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the möbius-path-filtering skill do?

Non-orientable topological filtering that eliminates self-revisiting paths

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill m-bius-path-filtering --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