Produkt API Preise Docs Anmelden Agent erstellen

Deck macht jedes Unternehmen
zum KI-Unternehmen.

Computer-Use-Agenten, die jede Software wie ein Mensch bedienen — klicken, tippen und echte Oberflächen navigieren. Keine APIs, keine Integrationen, keine Grenzen.

Activities
Google ×
Prospect Links - Google She... ×
+
google.com/search?q=best+SaaS+competitor+analysis+tools
U
Google
All Images News Videos
www.g2.com › categories › competitive-intelligence
Best Competitive Intelligence Software in 2026 | G2
Compare the best competitive intelligence tools. See real user reviews, pricing, features & more...
www.crayon.co › competitive-intelligence
Crayon | AI-Powered Competitive Intelligence Platform
Track competitors automatically. Get real-time alerts on pricing changes, product launches...
www.semrush.com › competitive-research
Semrush Competitive Research Toolkit - Analyze Any Domain
Uncover your competitors' strategies in display advertising, organic & paid search...
www.similarweb.com › corp › research
SimilarWeb - Digital Market Intelligence & Website Traffic
Understand any website's reach, ranking, and engagement. Benchmark against industry leaders...
Deck Agent
Chrome
Slack

VERTRAUT VON WELTKLASSE-TEAMS

Funktioniert mit jeder Software. Keine APIs nötig.

Deck-Agenten melden sich an, navigieren und bedienen Software genau wie ein Mensch. Keine Datenmigration, keine benutzerdefinierten Konnektoren, keine 6-monatige Integration. Wenn Ihr Team es nutzen kann, kann Deck es automatisieren — ab dem ersten Tag.

Agent erstellen
Shopify Shopify Admin
Zendesk Zendesk Support
Stripe Stripe Dashboard
Salesforce Salesforce CRM
HubSpot HubSpot
NetSuite ERP
Workday
ServiceNeinw
SAP SAP S/4HANA
Jira Jira
LinkedIn LinkedIn
admin.shopify.com/store/acme-labs/orders
Shopify Acme Store
Orders
Products
Customers
Analytics
Settings
Orders 2,847
OrderCustomerTotalStatus
#4021Sarah M.$129.00Fulfilled
#4020James L.$84.50Pending
#4019Amy K.$210.00Fulfilled
#4018David R.$55.00Fulfilled
Zendesk Zendesk
Tickets
Views
Customers
Reports
Open Tickets 38
IDSubjectPriorityAssignee
#8842Login issue on mobileUrgentMike R.
#8841Billing discrepancyHighSarah K.
#8839Feature request: exportNeinrmalUnassigned
#8838API rate limit errorsHighJordan T.
Stripe Stripe
Payments
Customers
Subscriptions
Invoices
Recent Payments $48,230
AmountCustomerDateStatus
$2,400.00Acme CorpFeb 12Succeeded
$890.00TechStart IncFeb 12Succeeded
$150.00Jane D.Feb 11Pending
$3,200.00MegaCorpFeb 11Succeeded
Salesforce Salesforce
Opportunities
Contacts
Leads
Reports
Pipeline $1.2M
OpportunityAccountValueStage
Enterprise DealBigCo$450KClosed Won
Platform LicenseMidCorp$120KNegotiation
Pilot ProgramStartupXYZ$35KProposal
Renewal Q2RetailMax$200KClosed Won
HubSpot HubSpot
Contacts
Deals
Campaigns
Reports
Contacts 12,430
NameEmailCompanyStatus
Lisa Wang[email protected]TechCoCustomer
Tom Baker[email protected]StartupHQLead
Nina Patel[email protected]CorpCoCustomer
Ryan Chen[email protected]BigIOSubscriber
◆ NetSuite
Transactions
Inventory
Financials
Procurement
Recent Transactions 1,204
Doc #Vendor / CustomerAmountType
INV-9031GlobalParts LLC$18,400Paid
PO-4520SteelWorks Inc$42,100Pending
INV-9030Acme Retail$7,650Paid
JE-1182Q4 Accrual$93,000Posted
◉ Workday
Workers
Payroll
Benefits
Time Off
Active Workers 847
EmployeeDepartmentLocationStatus
Maria GarciaEngineeringSan FranciscoActive
John SmithFinanceNew YorkActive
Aisha PatelOperationsLondonOn Leave
Wei ZhangProductSingaporeActive
▶ ServiceNeinw
Incidents
Changes
Assets
CMDB
Open Incidents 156
INC #Short DescriptionPriorityAssigned
INC0041VPN connectivity failureP1 CriticalNOC Team
INC0040SSO login timeoutP2 HighIAM Team
INC0039Printer queue stuckP3 MediumIT Support
INC0038New laptop requestP4 LowProvisioning
SAP SAP S/4HANA
Material Mgmt
Sales Orders
Production
Controlling
Purchase Orders 3,891
PO NumberSupplierValueStatus
4500018821Bosch GmbH€284,000GR Done
4500018820Siemens AG€1.2MAwaiting GR
4500018819BASF SE€56,300GR Done
4500018818ThyssenKrupp€390,000In Transit
Jira Jira
Board
Backlog
Roadmap
Reports
Sprint 24 — In Progress 18 issues
KeySummaryAssigneeStatus
DECK-412VM snapshot restore APIAlex M.In Progress
DECK-411Add credential rotationSarah K.Done
DECK-410Audit log export endpointMike R.In Review
DECK-409Fix agent timeout on large pagesJordan T.To Do
LinkedIn LinkedIn
Feed
My Network
Sales Nav
Messaging
Lead List — ICP Matches 214
NameTitleCompanyStatus
Claire DuboisVP EngineeringDataFlow IncConnected
Marcus LeeCTOScaleAIPending
Priya SharmaHead of OpsNeinvaTechConnected
Erik JohanssonDir. of ProductCloudWorksSaved

Ein Agent oder Tausende. Gleiches Deployment.

Deck stellt isolierte VMs auf Abruf bereit. Skalieren Sie von einem Agenten, der einen Workflow ausführt, zu Tausenden, die parallel arbeiten — keine Konfigurationsänderungen, keine Neuarchitektur.

1 Agent
Bereitstellung isolierter VMs...

Integrieren Sie Computer Use in Ihr Produkt.

Die Deck API ermöglicht es Ihnen, Computer-Use-Agenten programmgesteuert zu starten, Workflows auszuführen und strukturierte Ergebnisse zurückzugeben — alles aus Ihrer eigenen App. Geben Sie Ihren Nutzern oder Agenten die Möglichkeit, jede Software im großen Maßstab zu bedienen.

Dokumentation lesen
run-job.ts TypeScript
import Deck from "deck";

const deck = new Deck({ apiKey: process.env.DECK_API_KEY });

// Create a source and open a connection
const source = await deck.sources.create({
  name: "Hilton",
  type: "website",
  website: { url: "https://hilton.com" }
});

const conn = await deck.connections.create({
  source_id: source.id,
  auth_method: "username_password",
  auth_credentials: { username: email, password: pass }
});

// Run a task and get structured output
const run = await deck.tasks.run(taskId, {
  connection_id: conn.id,
  input: { check_in: "2025-02-01" }
});
console.log(run.output);
// → [{ url: "...", title: "...", timestamp: "..." }, ...]

Vollständiger Audit-Trail. Totale Kontrolle.

Jeder Klick, jede Entscheidung, jede Wiederherstellung — protokolliert und wiederholbar. Credential-Tresor mit Rotation, menschliche Genehmigungen und ein Kill-Switch für jeden Agenten, sofort. Computer Use, das Sie tatsächlich in Produktion einsetzen können.

Agenten-Aktivitätsprotokoll deck-agent-014 Live
12:31:01 Navigated to google.com
12:31:03 Typed "SaaS competitor analysis tools"
12:31:04 Clicked Search button
12:31:06 Extracted 4 URLs from results
12:31:08 Navigated to docs.google.com/spreadsheets
12:31:12 Pasted 4 rows into Sheet "Prospects"
12:31:15 Opened slack.com #sales-ops
12:31:18 Send message to #sales-ops awaiting approval
Richtlinien
Menschliche Genehmigung für Nachrichten
Menschliche Genehmigung für Zahlungen
Datei-Downloads erlauben
Credential-Tresor
Google OAuth Vor 2 Std. rotiert
Slack Bot Token Vor 14 Min. rotiert