Metadata-Version: 2.4
Name: aposlop
Version: 1.2.2
Classifier: Environment :: Console
Classifier: Programming Language :: Rust
Classifier: Topic :: Software Development :: Quality Assurance
License-File: LICENSE-APACHE
License-File: LICENSE-MIT
Summary: Detect duplicated code, excessive file length, and cyclomatic complexity across Go, Rust, Python, TypeScript, and TSX
Keywords: duplicates,complexity,static-analysis,tree-sitter
Home-Page: https://github.com/EzyGang/aposlop
License-Expression: MIT OR Apache-2.0
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Documentation, https://aposlop.ezygang.digital/
Project-URL: Homepage, https://github.com/EzyGang/aposlop
Project-URL: Issues, https://github.com/EzyGang/aposlop/issues
Project-URL: Repository, https://github.com/EzyGang/aposlop

# Aposlop

<p align="center">
<a href="https://aposlop.ezygang.digital/">
    <img src="docs/content/images/icon.png" width="320" alt="Aposlop">
</a>
</p>

<p align="center">
<a href="https://github.com/EzyGang/aposlop/actions/workflows/ci.yml">
    <img src="https://github.com/EzyGang/aposlop/actions/workflows/ci.yml/badge.svg" alt="CI status">
</a>
<a href="https://crates.io/crates/aposlop">
    <img src="https://img.shields.io/crates/v/aposlop" alt="crates.io version">
</a>
<a href="https://pypi.org/project/aposlop/">
    <img src="https://img.shields.io/pypi/v/aposlop" alt="PyPI version">
</a>
<a href="https://github.com/EzyGang/aposlop/blob/main/LICENSE-MIT">
    <img src="https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue" alt="License">
</a>
</p>

---

<h3 align="center">Apos, the Slopbreaker</h3>

<p align="center">
  Slop always rolls downhill. Aposlop helps to push back.
</p>

**Aposlop** is a fast command-line tool.
It finds duplicate code, excessive file length, and cyclomatic complexity.

Aposlop supports Go, Rust, Python, TypeScript, and TSX.
Aposlop uses Tree-sitter to parse each supported language.

**Documentation**: https://aposlop.ezygang.digital/

**Source Code**: https://github.com/EzyGang/aposlop

**Issues**: https://github.com/EzyGang/aposlop/issues

---

## Table of Contents

- [Why Aposlop?](#why-aposlop)
  - [Skills for coding agents](#skills-for-coding-agents)
- [Installation](#installation)
- [Quick Start](#quick-start)
- [Core Features](#core-features)
  - [Duplicate Detection](#duplicate-detection)
  - [Cyclomatic Complexity](#cyclomatic-complexity)
  - [File Length](#file-length)
  - [Language Support](#language-support)
  - [Output Formats](#output-formats)
  - [Manual Exclusions](#manual-exclusions)
- [Configuration](#configuration)
- [CLI Quick Reference](#cli-quick-reference)
- [Contributing](#contributing)
- [License](#license)

---

## Why Aposlop?

Coding agents can add repeated logic, complex control flow, and large files faster than reviewers can find them.
Aposlop gives people and agents one fast check for these problems.

**Built for agent-written code.**
Aposlop finds copies even after names or values change.

**Clear limits.**
Set rules for duplicate code, complexity, and file length.

**Useful results.**
Read source findings in the terminal or use stable JSON in other tools.

**Fast feedback.**
Parallel analysis and a local cache keep repeat checks short.

| Need | Why it matters | How Aposlop helps |
| --- | --- | --- |
| Find copied logic | Renamed values can hide a copy from text search | Tree-sitter finds exact, changed, and near-match copies |
| Keep code clear | Deep control flow is hard to review and change | Language rules measure complexity for each code block |
| Keep files focused | Large files can collect unrelated work | File limits can vary by language and extension |
| Check every change | Slow checks are easy to skip | Native code, parallel work, and caching reduce wait time |
| Support automation | Agents and CI need stable results | JSON output, fixed ordering, and `aposlop ci` support repeat checks |

### Skills for coding agents

Bundled skills help agents use Aposlop and make smaller code and test changes.
Install them separately from the CLI.

| Skill | Use it for | How to use it |
| --- | --- | --- |
| [`aposlop`](https://aposlop.ezygang.digital/skills/aposlop/) | Install, configure, run, and read Aposlop | Ask the agent to scan or set up a project |
| [`aposlop-code-changes`](https://aposlop.ezygang.digital/skills/code-changes/) | Make the smallest complete code change | It starts automatically for code changes |
| [`aposlop-test-changes`](https://aposlop.ezygang.digital/skills/test-changes/) | Add a few tests that protect behavior | It starts automatically for test work |
| [`aposlop-deslop-tests`](https://aposlop.ezygang.digital/skills/deslop-tests/) | Remove tests without a distinct purpose | Run `/aposlop-deslop-tests [scope]` |
| [`aposlop-deslop-turbo`](https://aposlop.ezygang.digital/skills/deslop-turbo/) | Reduce tests and production code without behavior changes | Run `/aposlop-deslop-turbo [scope]` |

Read the [agent skills guide](https://aposlop.ezygang.digital/skills/) for installation and examples.

---

## Installation

Aposlop has two components:

1. The CLI scans source code and reports findings.
2. Agent skills guide coding agents during setup, coding, testing, and cleanup.

Install either component or both.

### Install script on Linux or macOS

Install [cosign](https://docs.sigstore.dev/cosign/system_config/installation/).
Then run the installer:

```bash
curl -fsSLo install.sh https://github.com/EzyGang/aposlop/releases/latest/download/install.sh
sh install.sh
```

### Install script on Windows

Install [cosign](https://docs.sigstore.dev/cosign/system_config/installation/).
Then run the installer:

```powershell
Invoke-WebRequest https://github.com/EzyGang/aposlop/releases/latest/download/install.ps1 -OutFile install.ps1
powershell -ExecutionPolicy Bypass -File .\install.ps1
```

Both scripts verify the archive checksum and Sigstore signatures.

### Cargo

Install Aposlop from crates.io:

```bash
cargo install aposlop --locked
```

### PyPI with uv

Install Aposlop as a global tool:

```bash
uv tool install aposlop
```

Run Aposlop without installing it:

```bash
uvx aposlop --help
```

### Homebrew

Install Aposlop from the EzyGang Homebrew tap:

```bash
brew install EzyGang/tap/aposlop
```

### From source

Install Aposlop from source.
A stable Rust toolchain must support edition 2024.

```bash
git clone https://github.com/EzyGang/aposlop.git
cd aposlop
cargo install --path . --locked
```

Verify the installation:

```bash
aposlop --version
aposlop --help
```

### Agent skills

Use the installed CLI:

```bash
aposlop install-skills
```

The command uses `npx` when available.
It uses `pnpm dlx` when `npx` is unavailable.

You can also run either installer directly:

```bash
npx skills@latest add EzyGang/aposlop
pnpm dlx skills@latest add EzyGang/aposlop
```

The installer lets you choose the skills and target agents.
The skills do not install the Aposlop CLI.
Read the [agent skills guide](https://aposlop.ezygang.digital/skills/) for each skill.

### Update checks

Aposlop checks for a new GitHub release during interactive runs.
It performs a network request at most once every 24 hours.
It stores the latest result in the user cache directory.
Non-interactive commands do not perform this check.

Set this environment variable to disable the check:

```bash
APOSLOP_NO_UPDATE_CHECK=1 aposlop .
```

---

## Quick Start

Analyze the current directory:

```bash
aposlop .
```

Show the source for each duplicate:

```bash
aposlop . --terminal-output code
```

Run CI validation:

```bash
aposlop ci .
```

The `ci` command returns exit code `1` when a finding remains.

Write the complete report as JSON:

```bash
aposlop . --format json > aposlop-report.json
```

[Read the full quick-start guide](https://aposlop.ezygang.digital/getting-started/quickstart/).

---

## Core Features

### Duplicate Detection

A block enters analysis when it meets the line and named-node limits.

Aposlop classifies block relations in this order:

1. Type-1 requires identical canonical syntax.
2. Type-2 allows different identifiers and literals.
3. Type-3 requires a Jaccard similarity at or above the configured threshold.

Aposlop reports each connected set of duplicate relations as one group.
Two blocks do not match when either contains the other in the same file.
A TypeScript block can match a TSX block.

[Read the duplicate model](https://aposlop.ezygang.digital/concepts/duplicate-types/).

### Cyclomatic Complexity

Each valid block has an initial complexity score of `1`.
Aposlop adds one for each language-specific decision.
Decisions include branches, loops, alternatives, exception paths, conditional expressions, and short-circuit operations.

A nested block has an independent score.
Nested blocks include functions, closures, lambdas, field initializers, and static blocks.

A violation requires:

```text
score > complexity_threshold
```

[Read the complexity model](https://aposlop.ezygang.digital/concepts/complexity/).

### File Length

Aposlop reports a supported source file when its line count exceeds its effective maximum.
The default maximum is `300` lines.

```text
lines > max_file_lines
```

Use `[file_length].exclude` for check-specific gitignore-style exclusions.
File-length violations cannot be suppressed with `aposlop allow`.

[Read the file-length guide](https://aposlop.ezygang.digital/concepts/file-length/).

### Language Support

| Language   | Extensions |
| ---------- | ---------- |
| Go         | `.go`      |
| Rust       | `.rs`      |
| Python     | `.py`      |
| TypeScript | `.ts`      |
| TSX        | `.tsx`     |

Aposlop ignores unsupported extensions.
Aposlop follows standard ignore files such as `.gitignore`.

[Read the language guides](https://aposlop.ezygang.digital/languages/).

### Output Formats

The terminal report is the default.
It contains duplicate groups, complexity findings, file-length violations, diagnostics, and a summary.

```bash
aposlop . --format terminal
```

The JSON report contains the complete report and its schema version.

```bash
aposlop . --format json
```

The `ci` command shows only the status and finding counts.

```bash
aposlop ci .
```

[Read the output guide](https://aposlop.ezygang.digital/operations/output/).

### Manual Exclusions

Aposlop assigns a deterministic five-character ID to each duplicate group or complexity finding.

Add a finding to the manual exclusions:

```bash
aposlop allow aB7_x
```

The command writes the ID to `.aposlopignore`.
Delete the ID from that file to restore the finding.
Aposlop reports valid IDs that match no current finding as unused ignores at the end of each report.
Unused ignores do not change the process exit code.
File-length violations have no finding ID and cannot be added to `.aposlopignore`.

---

## Configuration

Aposlop reads `<PATH>/.aposlop.toml`.
Aposlop uses built-in values when this file does not exist.

```toml
[core]
min_lines = 5
min_nodes = 30
exclude = ["tests/", "vendor/", "node_modules/", "target/"]
use_cache = true

[duplicates_detection]
type_1 = true
type_2 = true
type_3 = true
type_3_threshold = 0.85

[metrics]
calculate_complexity = true
complexity_threshold = 15

[file_length]
max_lines = 300
exclude = []
```
`core.exclude` and `file_length.exclude` use the same syntax as one `.gitignore` line.
`core.exclude` removes matching paths from all analysis.
`file_length.exclude` suppresses only file-length violations.
Directory patterns match at any depth, while `/` anchors and `**` recurse.

Language and extension tables can override `max_file_lines` and the existing analysis rules.
Command-line values override all configuration-file layers.

[Read the configuration guide](https://aposlop.ezygang.digital/configuration/).

---

## CLI Quick Reference

| Command or option                     | Purpose                                                      |
| ------------------------------------- | ------------------------------------------------------------ |
| `aposlop ci [PATH]`                   | Print a concise finding summary and fail when findings exist |
| `aposlop allow <FINDING> [PATH]`      | Add a finding to the target's manual exclusions              |
| `--format <terminal\|json>`           | Select the report format                                     |
| `--terminal-output <locations\|code>` | Select terminal duplicate detail                             |
| `--min-lines <N>`                     | Override the minimum block line count                        |
| `--min-nodes <N>`                     | Override the minimum named-node count                        |
| `--exclude <GLOB>`                    | Replace configured gitignore-style exclusion patterns        |
| `--use-cache <BOOL>`                  | Enable or disable the analysis cache                         |
| `--type-1 <BOOL>`                     | Enable or disable Type-1 findings                            |
| `--type-2 <BOOL>`                     | Enable or disable Type-2 findings                            |
| `--type-3 <BOOL>`                     | Enable or disable Type-3 findings                            |
| `--type-3-threshold <RATIO>`          | Override the Type-3 threshold                                |
| `--calculate-complexity <BOOL>`       | Enable or disable complexity findings                        |
| `--complexity-threshold <N>`          | Override the complexity threshold                            |
| `--max-file-lines <N>`                | Override the maximum source-file line count                  |

[Read the complete CLI reference](https://aposlop.ezygang.digital/reference/cli/).

---

## Contributing

Open a [GitHub issue](https://github.com/EzyGang/aposlop/issues) to discuss a large change.
Then open a pull request.

Run these checks before you submit the pull request:

```bash
cargo fmt --all -- --check
cargo clippy --workspace --all-targets --all-features -- -D warnings
cargo test --workspace --all-features
cargo run -- --help
```

---

## License

You can use Aposlop under either license:

- [MIT](LICENSE-MIT)
- [Apache License 2.0](LICENSE-APACHE)

