local-loop

Run code quality checks on C# files before pushing to GitHub.

Updated Jun 3, 2026
One-click install
npx skills add https://github.com/antigravityos187-sketch/universal-or-strategy --skill local-loop
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: local-loop
Source: https://github.com/antigravityos187-sketch/universal-or-strategy/tree/main/.bob/skills/local-loop
Command: npx skills add https://github.com/antigravityos187-sketch/universal-or-strategy --skill local-loop

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires codeant, python, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates local quality checks on code changes before they are pushed to GitHub, preventing issues from reaching the main repository.

Core Features & Use Cases

  • Code Quality Checks: Utilizes CodeAnt for code quality issues, security vulnerabilities, style violations, dead code detection, and complexity issues.
  • Complexity Audit: Ensures code complexity is within specified thresholds.
  • Dead Code Scan: Identifies and removes unreferenced code.
  • Use Case: Before pushing code changes to GitHub, use this Skill to ensure that all quality checks pass, reducing the risk of merge conflicts and code issues.

Quick Start

Run the local-loop skill to perform all quality checks on your current changes.

Frequently Asked Questions about local-loop

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run local code quality checks on C# files before pushing to GitHub?

Local code quality checks on C# files are performed using CodeAnt and custom scripts to automate code review, complexity audits, and dead code detection. This prevents issues from reaching your main GitHub repository.

What is a complexity audit and when do I need it for my code?

A complexity audit ensures code complexity stays within specified thresholds before pushing to GitHub. You need it when modifying C# files to prevent overly convoluted logic from entering the main repository.

Does CodeAnt support dead code detection and security vulnerability scanning?

CodeAnt does support dead code detection and security vulnerability scanning. It identifies unreferenced code, flags security vulnerabilities, and checks for style violations in your C# files locally.

Do I need to install the CodeAnt CLI to scan for code quality issues locally?

You need to install the CodeAnt CLI and set up your local environment to run code quality checks. The local checks utilize the CodeAnt CLI and custom Python scripts for execution.

What is the best way to prevent dead code and merge conflicts in GitHub repositories?

The best way to prevent dead code and merge conflicts is to run local quality checks before pushing. Automating dead code scans and complexity audits locally ensures only clean, compliant code reaches GitHub.

Why does my local code review fail to catch unreferenced code before a GitHub push?

Local code reviews miss unreferenced code without dedicated scanning tools. Running an automated dead code scan using CodeAnt before pushing to GitHub identifies and removes unreferenced code efficiently.