
Research
/Security News
Laravel Lang Compromised with RCE Backdoor Across 700+ Versions
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.
@integrationos/cli
Advanced tools
Build and manage performant, high-converting native integrations with a few lines of code.
Build performant, high-converting native integrations with a few lines of code. By unlocking more integrations, you can onboard more customers and expand app usage, overnight.
npm install cios
To start the docker containers.
cios start
| Flag | Description | Required |
|---|---|---|
--kmsKeyId | The KMS Key ID. | Yes. |
--kmsKeyRingId | The KMS Key Ring ID. | Yes. |
--gcpLocationId | The GCP Location ID. | Yes. |
--gcpProjectId | The GCP Project ID. | Yes. |
--home | The GCP Configuration Global Path. | Yes. |
--seed | Whether to seed the Database. | No. |
# To start the docker containers
cios start --kmsKeyId random-key-id --kmsKeyRingId random-kms-key-ring-id --gcpLocationId global --gcpProjectId random-gcp-project-id --home /home/gcp_config
To stop the docker containers.
cios stop
To generate the configuration file.
cios init
| Flag | Description | Required |
|---|---|---|
--mongoPassword | The Mongo Password. | No. |
--buildableSecret | The Buildable Secret. | No. |
--defaultLiveAccessKey | The Default Live Access Key. | No. |
--defaultTestAccessKey | The Default Test Access Key. | No. |
--developerAccountAccessKey | The Developer Account Access Key. | No. |
--developerAccountId | The Developer Account ID. | No. |
--eventAccessPassword | The Event Access Password. | No. |
--jwtSecret | The JWT Secret. | No. |
--gatewaySecret | The Gateway Secret. | No. |
--apiUrl | The API URL. | No. |
--xIosSecret | The X-IOS Secret. | No. |
--bearerToken | The Bearer Token. | No. |
# To generate the configuration file
cios init --mongoPassword mongo-password --buildableSecret buildable-secret --defaultLiveAccessKey default-live-access-key --defaultTestAccessKey default-test-access-key --developerAccountAccessKey developer-account-access-key --developerAccountId developer-account-id --eventAccessPassword event-access-password --jwtSecret jwt-secret --gatewaySecret gateway-secret --apiUrl api-url --xIosSecret x-ios-secret --bearerToken bearer-token
| Entity | Operations | Extra Operations | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| List | Add | Push | Pull | Delete | ||||||
| All | Specific | All | Specific | All | Specific | |||||
| Common Enums | ✓ | X | ✓ | ✓ | ✓ | ✓ | X | X | X | |
| Common Models | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | X | ✓ | X | |
| Platforms | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | X | ✓ | Add Model | Add Oauth |
The following commands are available to work with Common Models, Common Enums or Platforms.
Perform operations on common enums.
List common enum(s) available in the database.
cios listCommonEnum
Add common enum(s) to the repository.
cios addCommonEnum
| Flag | Description | Required |
|---|---|---|
--enums | Names of the enum(s) to be added. | Yes. |
# To add specific enums
cios addCommonModel --enums UserType MessageStatus
Pull common enum(s) from the database to the repository.
cios pullCommonEnum
| Flag | Description | Required |
|---|---|---|
--all | To pull all common enums available. | Yes, if --enums is not provided. |
--enums | Names of the common enum(s) to be pulled. | Yes, if --all is not provided. |
# To pull all enums
cios pullCommonEnum --all
# To pull specific enums
cios pullCommonEnum --enums AddressType SocialProfileType
Push common enum(s) from the repository to the database.
cios pushCommonEnum
| Flag | Description | Required |
|---|---|---|
--all | To push all common enums available. | Yes, if --enums is not provided. |
--enums | Names of the enum(s) to be pushed. | Yes, if --all is not provided. |
# To push all enums
cios pushCommonEnum --all
# To push specific enums
cios pushCommonEnum --enums EventRuleType TimeCycle
Delete common enum(s) from the repository and the database.
cios deleteCommonEnum
| Flag | Description | Required |
|---|---|---|
--enums | Names of the enum(s) to be deleted. | Yes. |
# To delete specific enums
cios deleteCommonEnum --enums UserStatus TaxType
Perform operations on common models.
List common model(s) available in the database.
cios listCommonModel
Add common model(s) to the repository.
cios addCommonModel
| Flag | Description | Required |
|---|---|---|
--models | Names of the model(s) to be added. | Yes. |
# To add specific models
cios addCommonModel --models Contacts Deals
Pull common model(s) from the database to the repository.
cios pullCommonModel
| Flag | Description | Required |
|---|---|---|
--all | To pull all common models available. | Yes, if --models is not provided. |
--models | Names of the model(s) to be pulled. | Yes, if --all is not provided. |
# To pull all models
cios pullCommonModel --all
# To pull specific models
cios pullCommonModel --models Customers Webhooks
Push common model(s) from the repository to the database.
cios pushCommonModel
| Flag | Description | Required |
|---|---|---|
--all | To push all common models available. | Yes, if --models is not provided. |
--models | Names of the model(s) to be pushed. | Yes, if --all is not provided. |
# To push all models
cios pushCommonModel --all
# To push specific models
cios pushCommonModel --models Customers Webhooks
Delete common model(s) from the repository and the database.
cios deleteCommonModel
| Flag | Description | Required |
|---|---|---|
--models | Names of the model(s) to be deleted. | Yes. |
# To delete specific models
cios deleteCommonModel --models Leads Opportunities
Perform operations on platforms.
List platform(s) available in the database.
cios listPlatform
Add platform to the repository.
cios addPlatform
| Flag | Description | Required |
|---|---|---|
--platform | Name of the platform. | Yes. |
--auth | Authentication type, possible options are: oauth or bearer. | Yes. |
--models | Names of the model(s) to be added to the platform. | Yes. |
# To add a platform
cios addPlatform --platform zenMail --auth oauth --models Addresses Discounts
Pull platform(s) from the database to the repository.
cios pullPlatform
| Flag | Description | Required |
|---|---|---|
--all | To pull all platforms available. | Yes, if --platforms is not provided. |
--platforms | Names of the platform(s) to be pulled. | Yes, if --all is not provided. |
# To pull all platforms
cios pullPlatform --all
# To pull specific platform
cios pullPlatform --platforms faceGram instaBook
Push platform(s) from the repository to the database.
cios pushPlatform
| Flag | Description | Required |
|---|---|---|
--all | To push all platforms available. | Yes, if --platforms is not provided. |
--platforms | Names of the platform(s) to be pushed. | Yes, if --all is not provided. |
# To push all platforms
cios pushPlatform --all
# To push specific platforms
cios pushPlatform --platforms shopCommerce bigify
Add model(s) to the platform.
cios addPlatformModel
| Flag | Description | Required |
|---|---|---|
--platform | Name of the platform. | Yes. |
--models | Name of the models to be added. | Yes. |
# To add models to a platform
cios addPlatformModel --platform bananaShake --models Accounts Users
Add oauth configuration for a platform.
cios addPlatformOAuth
| Flag | Description | Required |
|---|---|---|
--platform | Name of the platform. | Yes. |
# To add oauth for a platform
cios addPlatformOAuth --platform boogle
Delete platform(s) from the repository and the database.
cios deletePlatform
| Flag | Description | Required |
|---|---|---|
--platforms | Names of the platform(s) to be deleted. | Yes. |
# To delete specific platforms
cios deletePlatforms --platforms bwitter orange
FAQs
Build and manage performant, high-converting native integrations with a few lines of code.
The npm package @integrationos/cli receives a total of 17 weekly downloads. As such, @integrationos/cli popularity was classified as not popular.
We found that @integrationos/cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.

Security News
Socket found a malicious postinstall hook across 700+ GitHub repos, including PHP packages on Packagist and Node.js project repositories.

Security News
Vibe coding at scale is reshaping how packages are created, contributed, and selected across the software supply chain