diff --git a/agents/Mathews-Tom__release-captain/README.md b/agents/Mathews-Tom__release-captain/README.md new file mode 100644 index 0000000..108bc65 --- /dev/null +++ b/agents/Mathews-Tom__release-captain/README.md @@ -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. diff --git a/agents/Mathews-Tom__release-captain/banner.png b/agents/Mathews-Tom__release-captain/banner.png new file mode 100644 index 0000000..0d2595b Binary files /dev/null and b/agents/Mathews-Tom__release-captain/banner.png differ diff --git a/agents/Mathews-Tom__release-captain/icon.png b/agents/Mathews-Tom__release-captain/icon.png new file mode 100644 index 0000000..647d9ff Binary files /dev/null and b/agents/Mathews-Tom__release-captain/icon.png differ diff --git a/agents/Mathews-Tom__release-captain/metadata.json b/agents/Mathews-Tom__release-captain/metadata.json new file mode 100644 index 0000000..3a60650 --- /dev/null +++ b/agents/Mathews-Tom__release-captain/metadata.json @@ -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 +}