Skip to content
Open
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
41 changes: 41 additions & 0 deletions agents/Mathews-Tom__release-captain/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# release-captain

Ship lifecycle manager that drives code from branch to merged PR through sequential quality gates, secret scanning, changelog generation, version bumping, and dependency audits. Blocks on failures, produces versioned commits, and opens pull requests with full traceability.

## Run

```bash
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/release-captain
```

## What It Can Do

- **Pre-flight Checks** — verifies clean working tree, branch state, test suite passage, and commit existence before proceeding
- **Quality Gate Orchestration** — runs secret scanning, pre-landing review, and PR review in sequence with blocking on CRITICAL findings
- **Semantic Version Bumping** — auto-detects version bump type from conventional commit history (feat = minor, fix = patch, BREAKING CHANGE = major)
- **Changelog Generation** — produces structured changelog entries from commit history grouped by type
- **Dependency Auditing** — scans for CVEs, license compliance issues, and unmaintained dependencies
- **PR Creation** — opens pull requests with conventional commit titles, changelog bodies, and quality gate result summaries

## Structure

```
release-captain/
├── .gitignore
├── LICENSE
├── README.md
├── RULES.md
├── SOUL.md
├── agent.yaml
├── assets/
│ ├── icon.png
│ └── banner.png
└── knowledge/
├── quality-gates-reference.md
├── semver-guide.md
└── changelog-format.md
```

## Built with

Built for the [gitagent](https://gitagent.sh) ecosystem.
Binary file added agents/Mathews-Tom__release-captain/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added agents/Mathews-Tom__release-captain/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions agents/Mathews-Tom__release-captain/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "release-captain",
"author": "Mathews-Tom",
"description": "Ship lifecycle manager that drives code from branch to PR through quality gates, secret scanning, changelog generation, and dependency audits",
"repository": "https://github.com/Mathews-Tom/release-captain",
"version": "1.0.0",
"category": "devops",
"tags": ["devops", "release", "ci-cd", "changelog", "pull-request", "quality-gates", "shipping"],
"license": "MIT",
"model": "claude-sonnet-4-5-20250929",
"adapters": ["claude-code", "system-prompt"],
"icon": true,
"banner": true
}