Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .coverage
Binary file not shown.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ venv/
ENV/
env/

# Coverage
.coverage
coverage.xml
htmlcov/

# IDE
.vscode/
.idea/
Expand All @@ -37,4 +42,4 @@ env/

# OS
.DS_Store
Thumbs.db
Thumbs.db
17 changes: 3 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,8 @@

## Unreleased

## 0.1.0 - 2025-01-13

### Added

- Initial release of CI Monitor
- GitHub CI workflow monitoring with real-time status updates
- Support for targeting commits, branches, and pull requests
- Step-level failure detection without downloading entire logs
- Smart log filtering showing only error-related content
- Real-time CI status polling with fail-fast options (`--poll`, `--poll-until-failure`)
- Raw log access for deep debugging (`--raw-logs`, `--job-id`)
- Cross-platform support (Ubuntu, macOS) with Python 3.10+
- Modern packaging with hatchling and UV dependency management
- Comprehensive CLI with mutual exclusivity validation
- PyPI publishing automation with trusted publishing
- Automated version bumping with git tagging
## 0.1.0 - 2025-01-13

Initial release
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ CI Monitor is a command-line tool that lets AI agents and humans instantly acces
## Automated CI Debugging with Claude Code

```bash
# Single command to investigate and fix your PR's CI failures
cimonitor logs --pr 123 | claude \
"Analyze these CI failures and fix the issues. Commit and push the fixes when done."
# Single command to investigate and fix your active branch's CI failures
cimonitor | claude "If the tests fail, fix and push. Notify me when finished or if you can't solve the problem."

# Auto-retry flaky tests and get notified only for real failures
cimonitor watch --pr 123 --retry 3 | claude \
Expand Down
Loading
Loading