@arpixel/api-contract 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -409,7 +409,23 @@ Install these integrations for your user account with:
|
|
|
409
409
|
npx @arpixel/api-contract init --host vscode
|
|
410
410
|
```
|
|
411
411
|
|
|
412
|
-
|
|
412
|
+
The `init` command copies the bundled integration files into your user account:
|
|
413
|
+
|
|
414
|
+
```text
|
|
415
|
+
~/.api-contract/prompts/
|
|
416
|
+
|
|
417
|
+
├── api-contract-generate.prompt.md
|
|
418
|
+
└── api-contract-impact.prompt.md
|
|
419
|
+
|
|
420
|
+
~/.copilot/agents/
|
|
421
|
+
|
|
422
|
+
├── api-contract-generate.agent.md
|
|
423
|
+
└── api-contract-impact.agent.md
|
|
424
|
+
```
|
|
425
|
+
|
|
426
|
+
The prompts are installed under `~/.api-contract/prompts/` and the agents under `~/.copilot/agents/`.
|
|
427
|
+
|
|
428
|
+
The command creates the required directories and updates the managed files when run again. It **does not modify VS Code settings automatically**.
|
|
413
429
|
|
|
414
430
|
### Prompt usage
|
|
415
431
|
|