A repo with different commands for Claude Code, OpenCode and other alternatives, acting as helpers for the Aluci labeling committee. It explores a repository, gathers evidence against the Aluci label criteria, and produces structured notes so human reviewers can work better and focus on judgment calls.
This is not an automated pipeline: it surfaces facts and flags concerns. The final verdict is always made by humans.
graph LR
subgraph AI["AI assistant does"]
A1["Scan files and structure"]
A2["Inspect dependencies and setup"]
A3["Surface findings per criterion"]
A4["Suggest, never auto-fix"]
end
subgraph Human["Human decides"]
H1["Prioritize what matters"]
H2["Interpret results"]
H3["Accept or reject observations"]
H4["Sign off on quality"]
end
A1 --> H1
A2 --> H2
A3 --> H3
A4 --> H4
- Claude Code, OpenCode or any other alternative
From the root of the repository you want to review, run the install script with the destination folder for your tool:
curl -fsSL https://github.com/AluciTech/aluci-label-helper/releases/latest/download/install.sh | bash -s -- .claude/The script appends commands/ automatically, so -- .claude/ installs into .claude/commands/.
To pin a specific version:
curl -fsSL https://github.com/AluciTech/aluci-label-helper/releases/latest/download/install.sh | bash -s -- --version v1.0.0 .claude/This downloads all available commands into the target directory. No other dependencies are required.
| Command | Description |
|---|---|
/pre-review |
Scans a repo against Aluci label criteria and produces structured notes for human reviewers |
More commands will be added over time. Re-run the install script to get the latest set.
From the target repository, invoke any installed command. For example:
/pre-reviewEach command is a standalone .md file living in your tool's commands directory (.claude/commands/ or .opencode/commands/).
-
Make sure all changes are committed and pushed to
main. -
Tag the commit and push the tag:
git tag v1.1.0 git push origin v1.1.0
-
The
releaseworkflow will automatically create a GitHub Release withinstall.shattached as a downloadable asset.
This project is licensed under the Apache License (Version 2.0).
See the LICENSE file for details.
This project uses AI tools to assist with development. For more details, see the AI Usage Disclosure file.