Commit 892592d
authored
Add new developer skills, auto-install git hooks, and Stripe MCP server (#889)
### Summary & Motivation
Expand the developer-cli with auto-installed git hooks, five new
agent-driven skills, and a Stripe MCP server for local development.
- **Auto-install git hooks via the developer-cli `install` command**: A
new `GitHooksSync` keeps `.git/hooks/` in sync with
`developer-cli/git-hooks/`, so any committed hook activates
automatically on `install` (and is removed on `uninstall`). Adds a
`pre-push` hook that rejects branch names which don't follow the
lowercase-kebab-case convention - GitHub's server-side branch-name
restriction is Enterprise-only, so client-side enforcement closes the
gap. Replaces the manual `core.hooksPath` wiring previously done by the
`mcp-setup` command.
- **Five new skills**:
- `commit` — converts the commit slash-command into a skill.
- `db-query` — psql access to the local Aspire Postgres.
- `rebuild-branch` — cherry-picks each commit of a stale branch onto a
fresh one off main with per-commit validation.
- `pull-platformplatform-changes` — cherry-picks unmerged upstream PRs
into a downstream project.
- A new skill for opening GitHub PRs end-to-end, replacing the older
description-only command of the same purpose.
- **Stripe MCP server**: `.claude/scripts/stripe-mcp-dev.sh` reads the
dev sandbox key from `dotnet user-secrets` and execs `@stripe/mcp`.
Wired into `.mcp.json` for local agent use.
### Checklist
- [x] I have added tests, or done manual regression tests
- [x] I have updated the documentation, if necessary18 files changed
Lines changed: 1184 additions & 312 deletions
File tree
- .claude
- commands
- scripts
- skills
- commit
- create-pull-request
- db-query
- pull-platformplatform-changes
- rebuild-branch
- developer-cli
- Commands
- Installation
- Utilities
- git-hooks
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
0 commit comments