Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Coding-Dev-Tools/devforge-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: Coding-Dev-Tools/devforge-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cowork/improve-devforge-cli
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Jun 13, 2026

  1. cowork-bot: fix dispatch silent-failure + install-all extra + remove …

    …builtins alias
    
    - dispatch: add _is_tool_installed() pre-flight check (importlib.util.find_spec)
      so 'devforge guard ...' on an uninstalled tool shows a clear
      'not installed — run pip install devforge[guard]' message instead of
      silently exiting 1 with a raw Python ModuleNotFoundError trace.
      The previous except FileNotFoundError was dead code: the error occurs
      inside the subprocess, not at Popen launch time.
    - install all: use canonical devforge[all] extra instead of joining all
      tool keys into a comma-separated extras string (fragile; diverges if
      TOOLS and pyproject.toml [all] ever drift).
    - Remove 'import builtins as _builtins' workaround; no builtin shadowing
      exists, so list() is fine throughout.
    - Remove unused ctx: typer.Context parameter from dispatch inner function.
    - Tests: 17/17 green; new TestIsToolInstalled + dispatch install-hint +
      install-all-extra assertion tests cover the fixed paths.
    DevForge Engineer committed Jun 13, 2026
    Configuration menu
    Copy the full SHA
    5d26e95 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1eb2433 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2026

  1. cowork-bot: merge origin/main into cowork/improve-devforge-cli; resol…

    …ve cli.py merge conflicts keeping the install-all + dispatch improvements
    Coding-Dev-Tools committed Jul 16, 2026
    Configuration menu
    Copy the full SHA
    730936c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f06622c View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2026

  1. cowork-bot: forward tool flags in dispatch subcommands (fix silent-fa…

    …ilure trap)
    
    The per-tool subcommands (guard, sql, deploy, ...) used a typer Argument
    for args, which made typer reject any token beginning with `-` as an
    unknown option BEFORE the underlying tool ever ran. So `devforge guard
    --config x.yaml` failed with "No such option" and the tool silently never
    executed — the hub's known silent-failure/observability trap.
    
    Register each dispatch command with ignore_unknown_options +
    allow_extra_args and forward ctx.args to the underlying `python -m
    <pkg>` invocation. Positional args and flags now reach the tool. Added a
    regression test (test_dispatch_forwards_tool_flags) and the
    cowork-auto-pr workflow so the improvement is delivered as a PR.
    Coding-Dev-Tools committed Jul 17, 2026
    Configuration menu
    Copy the full SHA
    4a75601 View commit details
    Browse the repository at this point in the history
Loading