Introduction
Poyesis Developers is the unified workspace for projects, CI/CD, and the integrations your team runs on.
Poyesis Developers brings project management, CI/CD, and the integrations you already rely on into a single workspace — so your team can plan, build, and ship without switching tabs.
New here? The fastest way to learn Poyesis is to run your first pipeline — it takes under five minutes and no credit card.
What you can build#
Describe build, test, and deploy as config-as-code and run it on every push.
Two-way sync with GitHub, Slack, AWS, and 80+ other tools.
Ship to any environment with gated approvals and automatic rollback.
Automate everything from your terminal or our REST API.
How it works#
Connect your stack once and let Poyesis orchestrate the rest. A typical workflow looks like this:
Link GitHub or GitLab in two clicks. Poyesis maps your repos and environments automatically.
Add a poyesis.yaml to your repo, or start from a template and tune it in the
visual editor.
Tie issues and sprints directly to commits, PRs, and deploys.
Notify Slack, archive artifacts, and trigger downstream tools the moment a deploy lands.
A first pipeline#
Here is a minimal pipeline that builds and deploys a Node.js service:
version: 1
pipeline:
- stage: build
run: npm ci && npm run build
- stage: test
run: npm test
- stage: deploy
needs: [build, test]
run: poyesis deploy --env productionStages with no needs run in parallel. Add needs: to fan results back in before a
deploy — exactly like the build → test → deploy graph on your dashboard.
Design language#
These docs follow the Atlassian Design System — its color tokens, typography scale, and spacing — so the documentation feels native to the rest of the Poyesis product.
You're ready to go. Continue to the Quickstart to run your first pipeline.