KS
Killer-Skills

elixir-cyclic-deps — how to use elixir-cyclic-deps how to use elixir-cyclic-deps, elixir-cyclic-deps setup guide, elixir cyclic dependency removal, elixir 1.19 compatibility, ai agent for elixir development, elixir-cyclic-deps vs other dependency managers

v1.0.0
GitHub

About this Skill

Perfect for Elixir Development Agents needing to detect and resolve cyclic dependencies in complex projects elixir-cyclic-deps is a coding agent that checks and removes cyclic dependencies in Elixir projects, requiring Elixir version 1.19 or higher

Features

Detects cyclic dependencies using Elixir 1.19 or higher
Removes cyclic dependencies with explicit user requests
Verifies Elixir version using `elixir -v` or `mix run -e 'IO.inspect(System.version())'`
Stops and informs users if Elixir version is below 1.19
Uses `mix run` for cycle checks

# Core Topics

matteing matteing
[18]
[0]
Updated: 2/25/2026

Quality Score

Top 5%
54
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add matteing/opal/elixir-cyclic-deps

Agent Capability Analysis

The elixir-cyclic-deps MCP Server by matteing is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use elixir-cyclic-deps, elixir-cyclic-deps setup guide, elixir cyclic dependency removal.

Ideal Agent Persona

Perfect for Elixir Development Agents needing to detect and resolve cyclic dependencies in complex projects

Core Value

Empowers agents to ensure compatibility with Elixir 1.19 or higher by detecting and removing cyclic dependencies, utilizing Elixir's built-in cycle detection capabilities and mix tasks

Capabilities Granted for elixir-cyclic-deps MCP Server

Detecting cyclic dependencies in Elixir projects
Removing xref cycles for improved project stability
Validating Elixir version for correct cycle detection

! Prerequisites & Limits

  • Requires Elixir 1.19 or higher
  • Explicit user request to check or remove cyclic dependencies
Project
SKILL.md
4.0 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8
SKILL.md
Readonly

Elixir Cyclic Dependencies

When to Use

Apply this skill only when the user explicitly asks to check or remove cyclic dependencies (e.g. "check for cycles", "remove cyclic dependencies", "fix xref cycles").

Prerequisite: Elixir Version

Cycle detection is correct only on Elixir 1.19 or higher. Before running any cycle checks:

  1. Verify version: elixir -v or inside the project run mix run -e 'IO.inspect(System.version())'.
  2. If the version is below 1.19, stop and inform the user that upgrading to Elixir 1.19+ is required for reliable cycle detection.

Detecting Cycles

Run both commands from the project root. Start with a relaxed threshold, then tighten:

bash
1mix xref graph --format cycles --label compile-connected --fail-above 3 2mix xref graph --format cycles --label compile --fail-above 3
  • compile-connected: cycles in the compile-time dependency graph (modules that compile in a cycle).
  • compile: same graph, different label; both should be run.
  • --fail-above N: exit code fails when cycle count is above N. Use 3 initially, goal is 0.

To list cycles without failing (for inspection), omit --fail-above or set it high:

bash
1mix xref graph --format cycles --label compile-connected 2mix xref graph --format cycles --label compile

Goal: reach --fail-above 0 for both commands (no cycles).

Workflow

  1. Check Elixir version (must be ≥ 1.19).
  2. Establish baseline: run both xref commands with --fail-above 3 (or current project setting). Note cycle count and which modules appear in cycles.
  3. Inspect cycles: run without --fail-above to see full cycle output; identify the smallest set of edges (module A → module B) that, if removed, break cycles.
  4. Plan minimal changeset:
    • Prefer breaking a single dependency (e.g. move shared code to a new module both can depend on) over large refactors.
    • Helper modules are allowed if they yield the smallest change: extract shared logic into a new module that the cycle participants depend on, so the cycle is broken.
    • Avoid duplication; follow existing repository guidelines (e.g. AGENTS.md, .cursor rules) and prior patterns in the codebase.
  5. Implement: make the chosen change, then re-run both xref commands with --fail-above 0 (or gradually lower from 3 → 0).
  6. Verify: mix compile --warnings-as-errors, tests, and any project lint (e.g. mix lint or mix cyclecheck if defined).

Minimal-Change Strategies

StrategyWhen to use
Extract helper moduleTwo or more modules in a cycle need the same logic; extract it to a new module that has no dependency back on the cycle.
Move code downMove a function from module A to module B so that A no longer depends on B (or vice versa), breaking the cycle.
Invert dependencyIf A uses B and B uses A, see if one usage can be replaced by a callback, option, or data structure so only one direction remains.
Split moduleOne module has two distinct responsibilities and participates in two cycles; split into two modules to break cycles.

Choose the option that removes cycles with the least code churn and no new duplication.

Project Integration

If the project has a cyclecheck (or similar) task in mix.exs, use it after changes:

bash
1mix cyclecheck

Ensure it runs both xref commands with the target --fail-above 0 once cycles are cleared.

Summary Checklist

  • Elixir version ≥ 1.19 confirmed
  • Both compile-connected and compile xref cycle commands run
  • Goal: --fail-above 0 for both
  • Minimal changeset (helper modules OK)
  • No code duplication; follows repo guidelines
  • mix compile, tests, and lint pass after changes

Related Skills

Looking for an alternative to elixir-cyclic-deps or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication