Import, export, and manage Postman collections. Use when working with Postman collections, importing OpenAPI specs, exporting collections, or when user mentions Postman import, collection management, API collections.
/plugin marketplace add vanman2024/dev-lifecycle-marketplace/plugin install testing@dev-lifecycle-marketplaceThis skill is limited to using the following tools:
examples/convert-openapi.shscripts/README.mdtemplates/collection-template.jsonThis skill manages Postman collections including import, export, and conversion operations.
Import from OpenAPI
scripts/openapi-to-postman.sh <openapi.json> <output-collection.json>Import from URL
scripts/import-from-url.sh <collection-url> <output.json>Export Collection
scripts/export-collection.sh <collection.json> <format>Extract Endpoints
scripts/extract-endpoints.sh <collection.json>Merge Collections
scripts/merge-collections.sh <collection1.json> <collection2.json> <output.json>Filter Collection
scripts/filter-collection.sh <collection.json> <pattern> <output.json>scripts/openapi-to-postman.sh - Convert OpenAPI to Postmanscripts/import-from-url.sh - Download collection from URLscripts/export-collection.sh - Export in various formatsscripts/extract-endpoints.sh - List all endpointsscripts/merge-collections.sh - Merge multiple collectionsscripts/filter-collection.sh - Filter collection requestsExample 1: Import OpenAPI
# Convert OpenAPI spec to Postman collection
./scripts/openapi-to-postman.sh api-spec.json my-api-collection.json
Example 2: Manage Collections
# Extract all endpoints
./scripts/extract-endpoints.sh my-collection.json
# Filter to only GET requests
./scripts/filter-collection.sh my-collection.json "GET" filtered.json
Build robust backtesting systems for trading strategies with proper handling of look-ahead bias, survivorship bias, and transaction costs. Use when developing trading algorithms, validating strategies, or building backtesting infrastructure.