What GTMship covers
GTMship is designed to take you from “I need a workflow that talks to these systems” to “that workflow is validated, connected, deployed, and observable in my own cloud account.” The platform combines a workflow SDK, a dashboard, a CLI, an auth service, a deployment engine, and memory so the product can keep state across sessions.
Quickstart
Open the workspace
Launch GTMship locally and bring up the dashboard plus auth service so you can connect tools and iterate in Workflow Studio.
Connect your systems
Connect a built-in provider or give the Custom Connections Agent API docs for a custom service so it can configure auth and bindings.
Describe the workflow
Use the Workflow Builder Agent to explain the outcome you want. GTMship grounds API details before it generates or revises code.
Validate and preview
Run validation for runtime safety, then preview against sample input. Writes pause behind checkpoints when approval is needed.
Keep it local or deploy
Stay in a local-only loop for authoring, connection setup, validation, and preview. When the workflow is ready for always-on traffic, choose AWS Lambda or GCP Cloud Run and deploy it into your cloud account.
Monitor and iterate
Use logs, saved workflow state, and memory to keep improving the same automation instead of starting over each session.
gtmship dev
gtmship connections connect hubspot
gtmship validate
# deploy later when ready
gtmship deploy --provider aws
Local-only run
GTMship does not force cloud deployment on day one. A local-only run is enough for workflow authoring, connection setup, validation, and preview while you are still shaping the automation.
Use local-only while the workflow is still taking shape
This is the fastest path when you are experimenting, testing credentials, previewing sample inputs, or proving the workflow with one operator at a time.
Deploy when the workflow needs to stay on
Move to cloud deployment once you need stable webhook URLs, scheduled execution, shared production access, or a runtime that stays available beyond your local session.
What you bring and what GTMship manages
Outcome, systems, and operating rules
GTMship still needs the real business goal: what event should start the workflow, which systems it should talk to, what fields matter, and where human approval or business constraints should apply.
Grounding, auth, safety, and deploy state
The product handles provider grounding, connection storage, validation rules, write checkpoints, artifact packaging, cloud deploy orchestration, and the status records needed to keep work visible after launch.
How GTMship works
Ground first, then generate
The workflow agent is not treated like a one-shot code generator. It checks connected systems, pulls relevant docs or OpenAPI details, and only then drafts TypeScript plus a live flow representation.
Central auth service
Provider configs, encrypted credentials, OAuth callbacks, and connection bindings live behind the auth service so the dashboard and CLI can work from the same source of truth.
Validation and preview are separate
Validation checks workflow module shape and runtime rules. Preview simulates a run with sample input and pauses at write checkpoints when real-world mutations need approval.
Deploy to your cloud
GTMship reads project config, resolves provider bindings, builds an artifact, deploys to AWS or GCP, and syncs deployment metadata back into its control plane.
- SDK: defines workflow shape and runtime helpers.
- Dashboard: interactive surface for connections, Workflow Studio, validation, preview, build, deploy, and logs.
- CLI: project init, local runtime, provider management, connections, and deployment operations.
- Deploy engine: packages and provisions cloud resources for supported targets.
Feature guides
Workflow Builder Agent
How Workflow Studio turns a prompt into grounded code, flow diagrams, validation, and next actions.
Custom Connections Agent
How built-in connectors and custom APIs are configured, authenticated, and bound into workflows.
Write Checkpoints
How preview mode pauses risky operations so you can inspect intended writes before live systems change.
Deployment
How GTMship plans bindings, packages artifacts, deploys to AWS or GCP, and syncs status back.
AI Memory
How saved context helps the agents reuse verified knowledge about your stack across sessions.
Dashboard + CLI
How the visual interface and terminal commands work against the same project, connections, and deployments.