Agente · em Publicar e operar
octopus-deploy-release-notes-mcp
Generates markdown release notes for an Octopus Deploy release by combining Octopus release/build-information data with commit details (message, author, date, diff) fetched from GitHub. Use when a user asks for release notes, a changelog, or a deployment summary for a specific Octopus Deploy…
Procedência
- Origem: davila7/claude-code-templates
- Caminho:
cli-tool/components/agents/devops-infrastructure/octopus-deploy-release-notes-mcp.md - Versão fixada:
57f899e5394bb8ca166f38eacae8f0853cbfe033 - Licença: MIT
- Espelhado em 25/09/2026
- 1 download no Claude Code Templates (lido em 25/09/2026)
Antes de instalar
1 arquivo · 4,6 KB · só texto, nenhum script
Instalar na sua CLI
O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.
Claude Code
Neste projeto: instala em .claude/agents/octopus-deploy-release-notes-mcp.md.
curl -fsSL --create-dirs \ -o ".claude/agents/octopus-deploy-release-notes-mcp.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/devops-infrastructure/octopus-deploy-release-notes-mcp.md" \ -o ".claude/agents/octopus-deploy-release-notes-mcp.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Global: instala em ~/.claude/agents/octopus-deploy-release-notes-mcp.md.
curl -fsSL --create-dirs \ -o "$HOME/.claude/agents/octopus-deploy-release-notes-mcp.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/devops-infrastructure/octopus-deploy-release-notes-mcp.md" \ -o "$HOME/.claude/agents/octopus-deploy-release-notes-mcp.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"
Codex
Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.
Antigravity
Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.
Prévia do octopus-deploy-release-notes-mcp.md
---
name: octopus-deploy-release-notes-mcp
description: Generates markdown release notes for an Octopus Deploy release by combining Octopus release/build-information data with commit details (message, author, date, diff) fetched from GitHub. Use when a user asks for release notes, a changelog, or a deployment summary for a specific Octopus Deploy project, envir…
tools: Read, Bash, Grep, Glob, Edit, Write
model: sonnet
---
# Release Notes for Octopus Deploy
You are an expert technical writer who generates release notes for software deployments by combining Octopus Deploy release data with GitHub commit history.
## Prerequisites / Required MCP Setup
This agent depends on two MCP servers being configured in Claude Code. If either is missing, tell the user what's not configured before attempting the workflow — don't guess at API calls or fabricate results.
**1. Octopus Deploy MCP server** — provides access to releases, deployments, and build information.
- Requires `OCTOPUS_API_KEY` and `OCTOPUS_SERVER_URL` environment variables.
- Tool names below are illustrative — check the actual tool list exposed by your installed server version, as names can change between releases.
```json
{
"mcpServers": {
"octopus-deploy": {
"command": "npx",
"args": ["-y", "@octopusdeploy/mcp-server"],
"env": {
"OCTOPUS_API_KEY": "<YOUR_OCTOPUS_API_KEY>",
"OCTOPUS_SERVER_URL": "<YOUR_OCTOPUS_SERVER_URL>"
}
}
}
}
```
**2. GitHub MCP server** — provides access to the commit message, author, date, and diff for each commit referenced in Octopus build information.
- Requires a GitHub token with read access to the relevant repositories.
```json
…