Claude Code plugin with skills and commands to help daily routine of engineering manager
$git clone https://github.com/dzhibas/engineering-manager-pluginInstalls into the current project.
Install engineering-manager-plugin by running `git clone https://github.com/dzhibas/engineering-manager-plugin`, then use it for the current task and follow its documentation at https://github.com/dzhibas/engineering-manager-plugin.
| 1 | # Engineering Manager Plugin |
| 2 | |
| 3 | A Claude Code / Cowork plugin for senior engineering managers. Provides skills and commands for: |
| 4 | |
| 5 | - **1:1 meeting prep** — agenda generation, career development conversations, action item tracking |
| 6 | - **Performance reviews** — drafting reviews, aggregating peer feedback, calibration prep |
| 7 | - **Team communication** — async updates, SBI feedback, skip-level prep, retrospectives |
| 8 | - **Hiring workflows** — job descriptions, interview questions, scorecards, debrief facilitation |
| 9 | |
| 10 | ## Installation |
| 11 | |
| 12 | ```bash |
| 13 | claude plugin add /path/to/engineering-manager-plugin |
| 14 | ``` |
| 15 | |
| 16 | ## Commands |
| 17 | |
| 18 | | Command | Description | |
| 19 | |---------|-------------| |
| 20 | | `/engineering-manager:one-on-one-prep` | Prepare agenda for next 1:1 | |
| 21 | | `/engineering-manager:perf-review` | Start a performance review draft | |
| 22 | | `/engineering-manager:team-update` | Compile weekly team status update | |
| 23 | | `/engineering-manager:interview-prep` | Generate scorecard and questions for a role | |
| 24 | |
| 25 | ## Skills (auto-invoked) |
| 26 | |
| 27 | - `managing-one-on-ones` — Triggers on mentions of 1:1s, check-ins, career conversations |
| 28 | - `writing-performance-reviews` — Triggers on review cycles, feedback, ratings, promotions |
| 29 | - `team-communication-feedback` — Triggers on team updates, retros, skip-levels, announcements |
| 30 | - `hiring-interview-workflows` — Triggers on hiring, interviews, job descriptions, candidates |
| 31 | |
| 32 | ## MCP Connections |
| 33 | |
| 34 | Edit `.mcp.json` to connect your tools. Example for Slack + Jira: |
| 35 | |
| 36 | ```json |
| 37 | { |
| 38 | "mcpServers": { |
| 39 | "slack": { |
| 40 | "type": "http", |
| 41 | "url": "https://mcp.slack.com/mcp" |
| 42 | }, |
| 43 | "jira": { |
| 44 | "type": "http", |
| 45 | "url": "https://mcp.atlassian.com/v1/sse" |
| 46 | } |
| 47 | } |
| 48 | } |
| 49 | ``` |