You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add auth key support for CRUD API to skill. Closesdotnet#1663
Increment skill version
Update examples to use v3.0.0 schema
* Address PR review comments
- Update winget version pin to 3.0.0
- Update GitHub Actions version pins to 3.0.0
- Tighten API Key auth wording: headerName/queryParameterName must be specified
- Clarify API Key auth applies to all actions (no per-action support)
Copy file name to clipboardExpand all lines: skills/dev-proxy/SKILL.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
name: dev-proxy
3
3
metadata:
4
-
version: 1.0.0
4
+
version: 1.1.0
5
5
description: "Simulate API failures, mock responses, test rate limiting, and analyze API traffic using Dev Proxy's plugin-based proxy engine. WHEN: 'mock API responses', 'simulate API errors', 'test rate limiting', 'test error handling', 'mock OpenAI responses', 'test AI app', 'analyze API usage', 'configure Dev Proxy', 'install Dev Proxy', 'set up Dev Proxy', 'use Dev Proxy in CI/CD', 'chaos testing for APIs', 'run Dev Proxy in background', 'detached mode', 'run Dev Proxy detached'."
6
6
---
7
7
@@ -79,7 +79,7 @@ A quick reference. All configuration details are in [references/configuration.md
Dev Proxy checks the header first, then the query parameter. If either matches, the request is authorized.
255
+
256
+
| Property | Required | Default | Description |
257
+
|----------|----------|---------|-------------|
258
+
|`apiKey`| Yes | — | The valid API key that must be present in the request |
259
+
|`headerName`| No | — | HTTP header name to read the API key from |
260
+
|`queryParameterName`| No | — | Query parameter name to read the API key from |
261
+
262
+
At least one of `headerName` or `queryParameterName` must be specified — omitting both means no request can be authorized. API Key auth applies to all actions and cannot be configured per-action.
263
+
264
+
#### Entra Auth
265
+
266
+
Set `"auth": "entra"` and provide `entraAuthConfig`:
232
267
233
268
```json
234
269
{
@@ -266,7 +301,7 @@ Mocks STDIO communication for MCP servers and STDIO-based apps. Use with `devpro
0 commit comments