Step-by-step guides to get the most out of tool2's powerful development stack and integrations.
Beginner guides to create, connect, and configure your first workflow in Tool2
Start Learning →Optimize, extend, and customize your Tool2 instance for enterprise workflows
View Advanced Tutorials →Connect Tool2 with GitHub, Jira, Slack, and other development platforms
Integration Tutorials →Follow this 5-minute quick start to run your first automated workflow
const workflow = tool2.createWorkflow({
triggers: {
github: {
repository: "your-org/your-project",
events: ["push", "pull_request"]
}
},
actions: {
lint: {
image: "tool2/linter:latest"
},
analyze: {
dependencies: ["lint"],
image: "tool2/analyzer:latest"
},
report: {
dependencies: ["analyze"],
webhooks: {
slack: {
channel: "#ci-reports",
template: "tool2-slack-template"
}
}
}
}
});
workflow.deploy();
Define your automation rules using YAML or JSON format in the web editor
Set up GitHub, Jira, Slack, or custom webhooks to activate your workflows
Review your workflow and deploy it in minutes with instant feedback
Visual learners: Watch these quick guides to get hands-on with Tool2 features
22-minute walkthrough of core concepts and your first workflow
Watch TutorialAnswers to common questions about our tutorial format and learning process
All tutorials are available in written format with code samples and step-by-step instructions, plus embedded videos for visual learners.
We offer professional training programs through our partner network for enterprise customers. Contact sales for details.
Our documentation stays current with API changes. New tutorials are added monthly based on user feedback and feature updates.
Start creating and testing workflows today. Your first project is just minutes away.