instantly-cli
CLI and MCP server for the Instantly.ai cold email platform
파일 탐색기
- get.ts
- index.ts
- create.ts
- ctd-status.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- mark-fixed.ts
- pause.ts
- resume.ts
- test-vitals.ts
- update.ts
- warmup-disable.ts
- warmup-enable.ts
- campaign-overview.ts
- campaign-steps.ts
- campaign.ts
- daily-account.ts
- daily-campaign.ts
- index.ts
- warmup.ts
- create.ts
- delete.ts
- index.ts
- list.ts
- index.ts
- list.ts
- login.ts
- logout.ts
- oauth.ts
- status.ts
- get.ts
- index.ts
- list.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- update.ts
- activate.ts
- bulk-activate.ts
- bulk-pause.ts
- count-launched.ts
- create.ts
- delete.ts
- duplicate.ts
- get.ts
- index.ts
- list.ts
- pause.ts
- search-by-contact.ts
- sending-status.ts
- update.ts
- delete-phone-number.ts
- list-phone-numbers.ts
- create.ts
- delete.ts
- get.ts
- list.ts
- update.ts
- list.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- toggle.ts
- update.ts
- cancel.ts
- check-domains.ts
- create.ts
- list-accounts.ts
- list.ts
- pre-warmed.ts
- similar-domains.ts
- delete.ts
- forward.ts
- get.ts
- index.ts
- list.ts
- mark-read.ts
- reply.ts
- unread-count.ts
- update.ts
- create.ts
- delete.ts
- get.ts
- list.ts
- update.ts
- index.ts
- status.ts
- verify.ts
- ai-progress.ts
- ai.ts
- count.ts
- create.ts
- enrich.ts
- enrichment-types.ts
- get.ts
- history.ts
- index.ts
- preview.ts
- run.ts
- search-filters.ts
- update-settings.ts
- index.ts
- create.ts
- delete.ts
- esp-options.ts
- get.ts
- index.ts
- list.ts
- update.ts
- get.ts
- insights.ts
- list.ts
- stats-by-date.ts
- stats-by-test.ts
- get.ts
- list.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- test-ai.ts
- update.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- update.ts
- verification-stats.ts
- bulk-add.ts
- bulk-assign.ts
- bulk-delete.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- merge.ts
- move.ts
- remove-from-subsequence.ts
- subsequence-move.ts
- update-interest-status.ts
- update.ts
- index.ts
- index.ts
- create.ts
- delete.ts
- get.ts
- list.ts
- update.ts
- create.ts
- delete.ts
- duplicate.ts
- index.ts
- list.ts
- pause.ts
- resume.ts
- sending-status.ts
- update.ts
- get.ts
- list.ts
- summary-by-date.ts
- summary.ts
- create.ts
- delete.ts
- event-types.ts
- get.ts
- index.ts
- list.ts
- resume.ts
- test.ts
- update.ts
- change-owner.ts
- credits.ts
- get.ts
- index.ts
- update.ts
- whitelabel-create.ts
- whitelabel-delete.ts
- whitelabel-get.ts
- plan-details.ts
- subscription-details.ts
- create.ts
- delete.ts
- get-admin.ts
- get.ts
- list.ts
- create.ts
- delete.ts
- get.ts
- index.ts
- list.ts
- update.ts
- index.ts
- auth.ts
- client.ts
- command-context.ts
- config.ts
- errors.ts
- format.ts
- handler.ts
- login-store.ts
- mutating.ts
- output.ts
- profiles.ts
- sequences.ts
- types.ts
- workspace.ts
- server.ts
- index.ts
- mcp.ts
- program.ts
- agency-mode.test.ts
- login-profile.test.ts
- account-mappings.test.ts
- accounts.test.ts
- analytics.test.ts
- api-keys.test.ts
- audit-logs.test.ts
- background-jobs.test.ts
- blocklist.test.ts
- campaigns.test.ts
- custom-tags.test.ts
- email-verification.test.ts
- email.test.ts
- enrichment.test.ts
- health.test.ts
- inbox-placement.test.ts
- lead-labels.test.ts
- lead-lists.test.ts
- leads.test.ts
- registry.test.ts
- subsequences.test.ts
- webhooks.test.ts
- workspace-members.test.ts
- workspace.test.ts
- agency-groups.test.ts
- auth.test.ts
- client.test.ts
- command-context.test.ts
- errors.test.ts
- format.test.ts
- handler.test.ts
- mutating.test.ts
- output.test.ts
- profiles.test.ts
- sequences.test.ts
- .gitignore
- AGENTS.md
- CLAUDE.md
- gemini-extension.json
- install.sh
- INSTANTLY.md
- package-lock.json
- package.json
- README.md
- SKILL.md
- tsconfig.json
- tsup.config.ts
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm link
설명 보기 ▼
npm link
Symlink a local package into the global `node_modules` or another project for development.
npm {{[ln|link]}}
Symlink the current package globally:
npm {{[ln|link]}} {{package_name}}
Link a globally linked package into another project's `node_modules`:
npm {{[r|unlink]}} {{package_name}}
Unlink a package from the current project:
npm run
설명 보기 ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npx
설명 보기 ▼
npx
이 명령은 `npm exec`의 별칭입니다.
tldr npm exec
자세한 내용은 원본 명령을 참고하세요:
