Skip to content

automaintainer: Search and add new CLI tools as bundled plugins to supercli…#9

Merged
javimosch merged 2 commits into
masterfrom
am/am-0e131c-tfupg0
May 31, 2026
Merged

automaintainer: Search and add new CLI tools as bundled plugins to supercli…#9
javimosch merged 2 commits into
masterfrom
am/am-0e131c-tfupg0

Conversation

@javimosch
Copy link
Copy Markdown
Owner

@javimosch javimosch commented May 30, 2026

Automated maintenance run by automaintainer.

Focus: Search and add new CLI tools as bundled plugins to supercli. For each plugin: search GitHub for non-interactive CLI tools (stars>100, rust/go/python), create files ONLY inside plugins// (NEVER edit plugins/plugins.json or cli/plugin-install-guidance.js — that's legacy and causes merge conflicts). Required files: plugin.json (manifest), meta.json (description+tags+has_learn). Optional: install-guidance.json, skills/quickstart/SKILL.md (if has_learn:true), README.md. Target 2 plugins per session. Validate JSON, commit with conventional commit message.

Branch: am/am-0e131c-tfupg0

plugins/argc/install-guidance.json         |  12 ++++
 plugins/argc/meta.json                     |   5 ++
 plugins/argc/plugin.json                   | 103 +++++++++++++++++++++++++++
 plugins/argc/skills/quickstart/SKILL.md    |  36 ++++++++++
 plugins/sccache/install-guidance.json      |  12 ++++
 plugins/sccache/meta.json                  |   5 ++
 plugins/sccache/plugin.json                | 108 +++++++++++++++++++++++++++++
 plugins/sccache/skills/quickstart/SKILL.md |  39 +++++++++++
 8 files changed, 320 insertions(+)

Summary by CodeRabbit

  • New Features

    • Added argc plugin for running Bash command-line interfaces with support for script execution, shell completions, and help documentation.
    • Added sccache plugin for managing a shared compiler cache with commands for server control, cache statistics, and cache management.
  • Documentation

    • Added quickstart guides for both plugins, including installation instructions, command references, and practical usage examples.

Review Change Stack

javimosch added 2 commits May 30, 2026 13:02
sccache — shared compiler cache with cloud storage support (mozilla/sccache, 7323⭐)
argc — Bash CLI framework and command runner (sigoden/argc, 1143⭐)

Both plugins include plugin.json, meta.json, install-guidance.json, and skills/quickstart/SKILL.md.
- Remove non-standard catch-all args from passthrough commands
- Add cwd: invoke_cwd to sccache passthrough
- Add note field to install-guidance.json for both plugins
- Sync install steps between plugin.json and install-guidance.json
- Remove invalid npm install method for argc
@chatgpt-codex-connector
Copy link
Copy Markdown

You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 30, 2026

📝 Walkthrough

Walkthrough

Two new plugins are added to supercli: argc, a Bash CLI framework, and sccache, a compiler cache tool. Each includes a plugin manifest defining binary checks, installation guidance, command routes, and quickstart documentation covering usage patterns and examples.

Changes

Plugin Additions

Layer / File(s) Summary
argc plugin manifest and setup
plugins/argc/plugin.json, plugins/argc/meta.json, plugins/argc/install-guidance.json
argc plugin declares binary check, cargo/brew installation steps, and routed commands (version, script execution, completions with shell targets, help, passthrough). Metadata identifies argc as a Bash CLI framework with tags. Installation guidance includes verification command and supercli install reference.
argc quickstart documentation
plugins/argc/skills/quickstart/SKILL.md
Quickstart documentation describes argc purpose, supported command categories, and bash usage examples for help output, annotated script execution, and multi-shell completion generation.
sccache plugin manifest and setup
plugins/sccache/plugin.json, plugins/sccache/meta.json, plugins/sccache/install-guidance.json
sccache plugin defines manifest metadata, binary check, cargo/brew installation with verification, learn reference, and command declarations for version, stats, cache operations, server management, and passthrough forwarding (with invoke_cwd context). Metadata describes sccache as a compiler cache tool. Installation guidance specifies install methods and source.
sccache quickstart documentation
plugins/sccache/skills/quickstart/SKILL.md
Quickstart documentation introduces sccache as a shared compiler cache with local and cloud storage support. Command reference covers cache and server operations, and a usage example demonstrates stats checking, cache clearing, and RUSTC_WRAPPER integration.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Poem

🐰 Two plugins hop into the warren,
argc dances with bash, sccache speeds the build,
Each manifest a map, each skill a song to guide the way,
Installation steps in stride, commands ready to be played! ✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main objective of the PR: automaintainer is adding new CLI tools (argc and sccache) as bundled plugins to supercli.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch am/am-0e131c-tfupg0

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@plugins/sccache/skills/quickstart/SKILL.md`:
- Line 24: Replace the ambiguous example text "sccache _ _" with a concrete,
copy-paste runnable example that shows the passthrough syntax and an actual
argument (for example using a double-dash separator followed by a real sccache
flag such as --version) and update the accompanying description to state that
the passthrough uses "--" to separate the wrapper from raw sccache arguments;
locate the line containing the string "sccache _ _" in SKILL.md and change it to
the concrete example and explanatory note.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: bd029911-a987-44d0-8b49-a1ec1f76e6e1

📥 Commits

Reviewing files that changed from the base of the PR and between 48ad209 and e8cdedf.

📒 Files selected for processing (8)
  • plugins/argc/install-guidance.json
  • plugins/argc/meta.json
  • plugins/argc/plugin.json
  • plugins/argc/skills/quickstart/SKILL.md
  • plugins/sccache/install-guidance.json
  • plugins/sccache/meta.json
  • plugins/sccache/plugin.json
  • plugins/sccache/skills/quickstart/SKILL.md

- `sccache server stop` — Stop the sccache daemon

### Passthrough
- `sccache _ _` — Pass raw arguments to sccache binary
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Fix passthrough command example syntax.

sccache _ _ is ambiguous and reads like two placeholder tokens. Document a concrete form users can run (for example, showing raw args after the passthrough route) to prevent failed copy/paste usage.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@plugins/sccache/skills/quickstart/SKILL.md` at line 24, Replace the ambiguous
example text "sccache _ _" with a concrete, copy-paste runnable example that
shows the passthrough syntax and an actual argument (for example using a
double-dash separator followed by a real sccache flag such as --version) and
update the accompanying description to state that the passthrough uses "--" to
separate the wrapper from raw sccache arguments; locate the line containing the
string "sccache _ _" in SKILL.md and change it to the concrete example and
explanatory note.

@javimosch javimosch merged commit bb260c9 into master May 31, 2026
0 of 2 checks passed
@javimosch javimosch deleted the am/am-0e131c-tfupg0 branch May 31, 2026 03:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant