Skip to main content

Universal agent coding harness plugin: cursor logic, safe patch, line budget, Rust index, test gates.

Project description

========= Written in Korean first, then English ==========

======== 한국어 ========

cluxion-agentplugin-supercoder

AI 에이전트(Hermes Agent, Claude Code, Codex)를 위한 코딩 플러그인입니다. 모델이 — 작은 로컬 모델이라도 — 코드를 안전하고 정확하게 편집하도록 돕습니다. 모든 패치는 편집 대상 파일과 대조해 검증되고, 깨진 구문은 피드백과 함께 자동으로 되돌려지며, 에이전트는 시작 전에 레포의 간결한 지도를 받습니다.

설치

pip install cluxion-agentplugin-supercoder

Hermes Agent에서 사용

~/.hermes/config.yaml 에 추가한 뒤 Hermes를 재시작하세요.

plugins:
  enabled:
    - cluxion-agentplugin-supercoder

Hermes를 통해 제공되는 로컬 모델(vLLM/MLX)에서도 동일하게 동작합니다.

기능

코딩 중에 에이전트가 supercoder_* 도구 세트를 자동으로 사용합니다.

  • 안전한 편집 — 패치를 파일 내용과 대조해 검증하므로, 모델이 잘못된 위치나 오래된 버전을 편집할 수 없습니다.
  • 구문 / 린트 / 테스트 게이트 — 깨진 편집은 자동으로 되돌려지고 무엇이 잘못됐는지 모델에 알려주므로, 깨진 코드를 남기지 않고 다시 시도합니다.
  • 레포 지도(repo map) — 코딩 계획에 파일과 최상위 함수·클래스의 예산 내 개요가 함께 제공되어, 모델이 경로를 추측하지 않습니다.

점검

설치·Hermes 계약·네이티브 백엔드 상태를 결정론적으로 자가 진단합니다. 같은 상태면 항상 같은 결과를 출력하고, 문제가 있으면 증상과 해결 단계를 그대로 알려줍니다.

cluxion-supercoder doctor          # 사람용 요약
cluxion-supercoder doctor --json   # 구조화 출력

Hermes 안에서는 supercoder_doctor 도구로도 노출됩니다.

Slash commands and marketplace plugins (0.2.19+)

/supercoder fix failing auth tests and run gates
/supercoder-doctor
슬래시 용도
/supercoder <task> 슈퍼코더 코딩 모드 — plan + repo map을 에이전트에 전달
/supercoder-doctor doctor (CLI와 동일)

/ 입력 시 /super로 필터 가능 · deliver=agent로 작업 지시가 에이전트 턴에 전달됩니다.

Codex와 Claude Code는 루트 plugin artifact를 설치합니다:

codex plugin marketplace add cluxion-local /path/to/cluxion-Agentplugin-supercoder
codex plugin add cluxion-agentplugin-supercoder@cluxion-local

라이선스

Apache-2.0

============ English ==========

cluxion-agentplugin-supercoder

A coding plugin for AI agents (Hermes Agent, Claude Code, Codex). It helps the model — even a smaller local one — edit code safely and accurately: every patch is checked against the file it's editing, broken syntax is auto-reverted with feedback, and the agent gets a compact map of your repo before it starts.

Install

pip install cluxion-agentplugin-supercoder

Use with Hermes Agent

Add it to ~/.hermes/config.yaml, then restart Hermes:

plugins:
  enabled:
    - cluxion-agentplugin-supercoder

It works the same with local models (vLLM/MLX) served through Hermes.

What you get

While coding, your agent uses a supercoder_* toolset automatically:

  • Safe edits — patches are verified against the file's content, so the model can't edit the wrong place or a stale version.
  • Syntax / lint / test gates — a broken edit is automatically reverted and the model is told what went wrong, so it retries instead of leaving broken code behind.
  • Repo map — coding plans come with a budgeted overview of your files and their top-level functions and classes, so the model stops guessing paths.

Diagnostics

A deterministic self-check of install, the Hermes contract, and the native backend. The same state always prints the same result, and on any problem it shows the symptom and the exact fix steps.

cluxion-supercoder doctor          # human summary
cluxion-supercoder doctor --json   # structured output

Also exposed inside Hermes as the supercoder_doctor tool.

Slash commands and marketplace plugins (0.2.19+)

/supercoder fix failing auth tests and run gates
/supercoder-doctor
Slash Purpose
/supercoder <task> Supercoder coding mode — plan + repo map sent to the agent
/supercoder-doctor Run doctor (same as CLI)

Filter with /super · uses deliver=agent so the harness directive becomes the next agent turn.

Codex and Claude Code install from the root plugin artifact:

codex plugin marketplace add cluxion-local /path/to/cluxion-Agentplugin-supercoder
codex plugin add cluxion-agentplugin-supercoder@cluxion-local

License

Apache-2.0

Native backend (optional, faster)

The Rust backend is not built automatically. After install, run once:

uv pip install ./rust/supercoder_index --python .venv/bin/python

Without it the plugin falls back to a slower pure-Python path (doctor reports native_module_importable).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cluxion_agentplugin_supercoder-0.2.23.tar.gz (987.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-win_amd64.whl (800.9 kB view details)

Uploaded CPython 3.11+Windows x86-64

cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (908.2 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ x86-64

cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (880.0 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11+macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file cluxion_agentplugin_supercoder-0.2.23.tar.gz.

File metadata

File hashes

Hashes for cluxion_agentplugin_supercoder-0.2.23.tar.gz
Algorithm Hash digest
SHA256 fd521b6123cf47b9008496b91fbab01d001452e100c8106386ab745ee5b8f5bd
MD5 1a5896031b51816f037f178f2647815d
BLAKE2b-256 48de408ab91bde725adc07e7d6139cab7ffca3592b2c21710de39ebf0cc19885

See more details on using hashes here.

Provenance

The following attestation bundles were made for cluxion_agentplugin_supercoder-0.2.23.tar.gz:

Publisher: publish.yml on cluxion/cluxion-Agentplugin-supercoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cluxion_agentplugin_supercoder-0.2.23-py3-none-any.whl.

File metadata

File hashes

Hashes for cluxion_agentplugin_supercoder-0.2.23-py3-none-any.whl
Algorithm Hash digest
SHA256 ea4aad7e646ea32e7b1cccf81d985495be09805cc61ced5ac2f500368ffc1d4c
MD5 92471c708a03d99b59b3570338b88b53
BLAKE2b-256 8c90ebd3e1200c2212d04bc79f9edff18cabd855facebc0ba78851f8f89b9780

See more details on using hashes here.

Provenance

The following attestation bundles were made for cluxion_agentplugin_supercoder-0.2.23-py3-none-any.whl:

Publisher: publish.yml on cluxion/cluxion-Agentplugin-supercoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0c8870cfaf1c3086d40af6b9c85bf9f353b3d328271eaecbdac9484927b7994d
MD5 9dcf2ea8f16129c21a720dbf55bf06e1
BLAKE2b-256 1095717ee6986f53bae2fd23567a4357a9036e6cdb605aac51d62707df442199

See more details on using hashes here.

Provenance

The following attestation bundles were made for cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-win_amd64.whl:

Publisher: publish.yml on cluxion/cluxion-Agentplugin-supercoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5fd8c519585976d03fe1980cf636d86d840e7d7b5dee08dca8ffb9d07157fcd6
MD5 8e932df3fc375498621ba96ad75778b9
BLAKE2b-256 67290650caca7d7da30ad55d342891e8db67787ab30436c12ab22f1b8026d8f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: publish.yml on cluxion/cluxion-Agentplugin-supercoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f42faf11249c18d5424b57f6e77da5bb91eaf0165b9dffcf592aeb8879faa65c
MD5 6e17f007a2c9d69ef8904415ab063e7a
BLAKE2b-256 201fa274492b4b66b44a17403a2a01ff506d9f208228cd0eef3e0b6f0fbf02d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: publish.yml on cluxion/cluxion-Agentplugin-supercoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb1f8a0967c2243c04f4413b08cbaa7637ac593cc1f520c55b9234dd05d1cae6
MD5 5ff4fd553ffee7b428a2731bf12aa8f7
BLAKE2b-256 1116d454f3b0ee1f77bf1afa0c0daf4d6be855a281a73bef86dc9023d1cb2b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cluxion_agentplugin_supercoder-0.2.23-cp311-abi3-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl:

Publisher: publish.yml on cluxion/cluxion-Agentplugin-supercoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page