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: agentplexus/agent-team-release
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.0
Choose a base ref
...
head repository: agentplexus/agent-team-release
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.2.0
Choose a head ref
  • 4 commits
  • 9 files changed
  • 2 contributors

Commits on Jan 5, 2026

  1. fix: don't skip current directory when walking

    When the directory to scan is ".", filepath.WalkDir returns "." as
    the first entry. The previous code checked `name[0] == '.'` which
    matched the current directory and skipped the entire tree.
    
    Fix by explicitly allowing "." while still skipping other hidden
    directories like .git, .github, etc.
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
    grokify and claude committed Jan 5, 2026
    Configuration menu
    Copy the full SHA
    d00548b View commit details
    Browse the repository at this point in the history
  2. feat: add new checks and soft warnings

    New checks:
    - go mod tidy: verify go.mod/go.sum are up to date
    - go build: ensure project compiles
    
    Soft checks (warnings, don't fail build):
    - untracked references: detect if tracked files reference untracked files
    - coverage: now marked as warning (informational only)
    
    Also adds Warning field to Result struct for soft checks that report
    issues but don't fail the pre-push validation.
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
    grokify and claude committed Jan 5, 2026
    Configuration menu
    Copy the full SHA
    7d15a92 View commit details
    Browse the repository at this point in the history
  3. docs: expand git hook setup and update examples

    - Add three options for git hook setup (script, symlink, shared hooks)
    - Add bypass instructions (--no-verify)
    - Document hard vs soft checks for Go
    - Update example output to show new checks (mod tidy, build, untracked refs)
    - Add example showing warnings output
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
    grokify and claude committed Jan 5, 2026
    Configuration menu
    Copy the full SHA
    01205fa View commit details
    Browse the repository at this point in the history
  4. docs: add v0.2.0 changelog and release notes

    Add structured changelog entries for v0.2.0 with highlights section
    for both releases. Generated CHANGELOG.md using structured-changelog.
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
    grokify and claude committed Jan 5, 2026
    Configuration menu
    Copy the full SHA
    e90fa66 View commit details
    Browse the repository at this point in the history
Loading