Skip to content

Commit a9179c0

Browse files
committed
feat: add release-captain agent to registry
Register Mathews-Tom/release-captain in the gitagent registry.
1 parent 601aee3 commit a9179c0

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# release-captain
2+
3+
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.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/release-captain
9+
```
10+
11+
## What It Can Do
12+
13+
- **Pre-flight Checks** — verifies clean working tree, branch state, test suite passage, and commit existence before proceeding
14+
- **Quality Gate Orchestration** — runs secret scanning, pre-landing review, and PR review in sequence with blocking on CRITICAL findings
15+
- **Semantic Version Bumping** — auto-detects version bump type from conventional commit history (feat = minor, fix = patch, BREAKING CHANGE = major)
16+
- **Changelog Generation** — produces structured changelog entries from commit history grouped by type
17+
- **Dependency Auditing** — scans for CVEs, license compliance issues, and unmaintained dependencies
18+
- **PR Creation** — opens pull requests with conventional commit titles, changelog bodies, and quality gate result summaries
19+
20+
## Structure
21+
22+
```
23+
release-captain/
24+
├── .gitignore
25+
├── LICENSE
26+
├── README.md
27+
├── RULES.md
28+
├── SOUL.md
29+
├── agent.yaml
30+
├── assets/
31+
│ ├── icon.png
32+
│ └── banner.png
33+
└── knowledge/
34+
├── quality-gates-reference.md
35+
├── semver-guide.md
36+
└── changelog-format.md
37+
```
38+
39+
## Built with
40+
41+
Built for the [gitagent](https://gitagent.sh) ecosystem.
34 KB
Loading
28.7 KB
Loading
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "release-captain",
3+
"author": "Mathews-Tom",
4+
"description": "Ship lifecycle manager that drives code from branch to PR through quality gates, secret scanning, changelog generation, and dependency audits",
5+
"repository": "https://github.com/Mathews-Tom/release-captain",
6+
"version": "1.0.0",
7+
"category": "devops",
8+
"tags": ["devops", "release", "ci-cd", "changelog", "pull-request", "quality-gates", "shipping"],
9+
"license": "MIT",
10+
"model": "claude-sonnet-4-5-20250929",
11+
"adapters": ["claude-code", "system-prompt"],
12+
"icon": true,
13+
"banner": true
14+
}

0 commit comments

Comments
 (0)