coding.fix_inline
SkillDev toolsFind and remove the functions that are too thin
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the coding.fix_inline skill
What this skill tells your AI
The instructions your AI receives, as published by causify-ai/helpers in .claude/skills/coding.fix_inline/SKILL.md and read by ahel’s review.
-
I will pass you one of more files
<FILES> -
Look for functions that are too "thin", i.e., that call another function directly without doing much else
- E.g.,
def cell1_plot_dag( G: nx.DiGraph, title: str, *, node_colors: Optional[Mapping[str, Any]] = None, edge_colors: Optional[Mapping[Tuple[str, str], Any]] = None, ax: Optional[maxes.Axes] = None, figsize: Optional[Tuple[int, int]] = None, pos: Optional[Dict] = None, dpi: int = hgraphviz.FIG_DPI, ) -> maxes.Axes: return hgraphviz.plot_causal_dag( G, title, mode="graphviz", node_colors=node_colors, edge_colors=edge_colors, ax=ax, figsize=figsize, dpi=dpi, )
- E.g.,
-
Ask to the user if it's ok to remove them
-
Remove the functions and then look for all the invocations of the removed function and inline the called function
-
Read and apply to
<FILES>the rules from.claude/skills/coding.rules.md
Signals
- GitHub stars
- 145
- Forks
- 159
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
coding-fix-inline- Source
- github.com/causify-ai/helpers